diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2022-05-20 11:35:49 +0200 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2022-05-21 09:18:38 +0200 |
commit | 6e24713c8cb4d2c1aec8ee647c07c6b03de0063a (patch) | |
tree | 242fbd89d6becc60ec4697e343fed0cbffe5747b /android | |
parent | b62509e43c355d98b3ef26b1f55045cffcb1f486 (diff) |
android: Drop 'android.enableJetifier=true'
From the Android Gradle Plugin 7.2.0 release notes [1]:
> Jetifier warning and check in Build Analyzer Build Analyzer now displays
> a warning if your project's gradle.properties file includes
> android.enableJetifier=true. This flag was introduced in a previous
> version of Android Studio to enable AndroidX for libraries that don't
> support AndroidX natively. However, the library ecosystem has mostly
> moved to support AndroidX natively and the Jetifier flag is probably no
> longer needed by your project. Additionally, the flag can lead to slower
> build performance. If you see this warning, you can run a check within
> Build Analyzer to confirm if the flag can be removed.
Android Viewer has no dependencides requiring Android Support Libraries,
so drop the `android.enableJetifier=true` flag.
[1] https://developer.android.com/studio/releases/gradle-plugin?buildsystem=ndk-build#jetifier-build-analyzer
Change-Id: I6943b2e82e5b226286be288f9ed30944c541eb1c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134673
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'android')
-rw-r--r-- | android/source/gradle.properties | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/android/source/gradle.properties b/android/source/gradle.properties index 414d53485e7f..fe72551bf894 100644 --- a/android/source/gradle.properties +++ b/android/source/gradle.properties @@ -1,3 +1,2 @@ -android.enableJetifier=true android.useAndroidX=true org.gradle.jvmargs=-Xmx3072m |