Skip to content

Commit

Permalink
upgrade gradle and AGP
Browse files Browse the repository at this point in the history
Signed-off-by: Syrone Wong <[email protected]>
  • Loading branch information
wongsyrone committed Feb 4, 2022
1 parent 8b2807c commit 2f6b721
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -71,16 +71,13 @@ android {
coreLibraryDesugaringEnabled true
}
packagingOptions {
doNotStrip "*/armeabi-v7a/libgojni.so"
doNotStrip "*/arm64-v8a/libgojni.so"
doNotStrip "*/x86/libgojni.so"
doNotStrip "*/x86_64/libgojni.so"
jniLibs {
// During installation, the installer decompresses the libraries, and the linker loads
// the decompressed libraries at runtime; in this case, the APK would be smaller, but
// installation time might be slightly longer.
// We optimize for size to make users happy
useLegacyPackaging = true
keepDebugSymbols += ['*/armeabi-v7a/libgojni.so', '*/arm64-v8a/libgojni.so', '*/x86/libgojni.so', '*/x86_64/libgojni.so']
}
}
splits {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
}
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.4'
classpath 'com.android.tools.build:gradle:7.1.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 2f6b721

Please sign in to comment.