chore(build): 빌드 설정 업데이트
- Android: proguard 규칙 추가, build.gradle 업데이트 - iOS: 권한 설정 및 프로젝트 구성 업데이트 - macOS: 앱 정보 및 entitlements 업데이트
This commit is contained in:
21
android/app/proguard-rules.pro
vendored
Normal file
21
android/app/proguard-rules.pro
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
# Flutter 기본 규칙
|
||||
-keep class io.flutter.app.** { *; }
|
||||
-keep class io.flutter.plugin.** { *; }
|
||||
-keep class io.flutter.util.** { *; }
|
||||
-keep class io.flutter.view.** { *; }
|
||||
-keep class io.flutter.** { *; }
|
||||
-keep class io.flutter.plugins.** { *; }
|
||||
|
||||
# Google Mobile Ads (AdMob)
|
||||
-keep class com.google.android.gms.ads.** { *; }
|
||||
-keep class com.google.ads.** { *; }
|
||||
|
||||
# In-App Purchase (Google Play Billing)
|
||||
-keep class com.android.vending.billing.** { *; }
|
||||
|
||||
# Kotlin 직렬화(serialization) 관련
|
||||
-keepattributes *Annotation*
|
||||
-keepattributes InnerClasses
|
||||
|
||||
# 제네릭(generics) 시그니처 유지
|
||||
-keepattributes Signature
|
||||
Reference in New Issue
Block a user