Skip to content

Commit 603b9d6

Browse files
committed
fix(android): use proguard-android-optimize for AGP 9 compatibility
1 parent 2547e64 commit 603b9d6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ android {
3030
buildTypes {
3131
release {
3232
minifyEnabled false
33-
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
33+
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
3434
}
3535
}
3636
lintOptions {

example-app/android/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ android {
1919
buildTypes {
2020
release {
2121
minifyEnabled = false
22-
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
22+
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2323
}
2424
}
2525
}

0 commit comments

Comments
 (0)