android: add Firebase App Distribution Makefile + tester list
make distribute = release APK 빌드 후 testers.csv 전원에게 App Distribution 배포. 앱 ID 1:332409988740:android:...4ac4d1, 내부 테스터 6명. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
9e8d599dc2
commit
e14eafd6b2
15
Makefile
Normal file
15
Makefile
Normal file
@ -0,0 +1,15 @@
|
||||
.PHONY: build distribute
|
||||
|
||||
# Firebase App Distribution 배포 설정
|
||||
APP_ID := 1:332409988740:android:33ded5b63cb6c1644ac4d1
|
||||
APK := build/app/outputs/flutter-apk/app-release.apk
|
||||
NOTES ?= 내부 테스트 빌드
|
||||
|
||||
build: ## release APK 빌드 (android/key.properties 의 release 키로 서명)
|
||||
flutter build apk --release
|
||||
|
||||
distribute: build ## 빌드 후 Firebase App Distribution 으로 testers.csv 전원에게 배포
|
||||
firebase appdistribution:distribute $(APK) \
|
||||
--app $(APP_ID) \
|
||||
--testers-file testers.csv \
|
||||
--release-notes "$(NOTES)"
|
||||
6
testers.csv
Normal file
6
testers.csv
Normal file
@ -0,0 +1,6 @@
|
||||
admin@special-partners.com
|
||||
keyryg.nam@special-partners.com
|
||||
dayeong.lee@special-partners.com
|
||||
muyeol.lee@special-partners.com
|
||||
sean.park@special-partners.com
|
||||
jaeho.choi@special-partners.com
|
||||
|
Loading…
x
Reference in New Issue
Block a user