diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2022-12-23 18:29:44 +0100 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2022-12-28 08:27:04 +0000 |
commit | 3826a7df9aa447bec08a3b056180778ad8c953af (patch) | |
tree | b41fda7d2fcc8a5a6d79d6d8e98c06887ad7d73e /android | |
parent | b9e3e20bfd102880d12384892eaeca094c38a519 (diff) |
android: Update Android Gradle Plugin to 7.3.1
... and gradle to 7.4.
Relevant entry from the release notes [1] that will be
addressed in a follow-up commit:
> # Package attribute in manifest file is deprecated
>
> Starting with AGP 7.3.0-alpha04, if you use Gradle to build your
> project, AGP generates a warning if you use the package attribute in the
> manifest file. To set the namespace for your app, use the namespace
> property in the module-level build.gradle file. To learn more, see Set a
> namespace
> [https://developer.android.com/studio/build/configure-app-module#set-namespace].
>
> To get help moving to the new namespace DSL, use the AGP Upgrade
> Assistant (Tools > AGP Upgrade Assistant).
[1] https://developer.android.com/studio/releases/gradle-plugin#7-3-0
Change-Id: I8b196e53fb9b3fb7e9314719fdb7e0f2254abd10
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/144834
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'android')
-rw-r--r-- | android/source/build.gradle | 2 | ||||
-rw-r--r-- | android/source/gradle/wrapper/gradle-wrapper.properties | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/android/source/build.gradle b/android/source/build.gradle index 68e68f8d57ae..a407c2f81cf2 100644 --- a/android/source/build.gradle +++ b/android/source/build.gradle @@ -15,7 +15,7 @@ buildscript { google() } dependencies { - classpath 'com.android.tools.build:gradle:7.2.2' + classpath 'com.android.tools.build:gradle:7.3.1' } } diff --git a/android/source/gradle/wrapper/gradle-wrapper.properties b/android/source/gradle/wrapper/gradle-wrapper.properties index e97856541453..e4ca53e04840 100644 --- a/android/source/gradle/wrapper/gradle-wrapper.properties +++ b/android/source/gradle/wrapper/gradle-wrapper.properties @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-all.zip |