Upgrade Android gradle plugin to version 7.2.1
This commit is contained in:
parent
d2bd8e5289
commit
151233b702
4 changed files with 11 additions and 15 deletions
|
@ -1,10 +1,10 @@
|
||||||
ext.versions = [
|
ext.versions = [
|
||||||
androidGradlePlugin: '7.0.3',
|
androidGradlePlugin: '7.2.1',
|
||||||
compileSdk : 32,
|
compileSdk : 32,
|
||||||
minSdk : 19, // Also update 'platform/android/java/lib/AndroidManifest.xml#minSdkVersion' & 'platform/android/export/export_plugin.cpp#DEFAULT_MIN_SDK_VERSION'
|
minSdk : 19, // Also update 'platform/android/export/export_plugin.cpp#DEFAULT_MIN_SDK_VERSION'
|
||||||
targetSdk : 32, // Also update 'platform/android/java/lib/AndroidManifest.xml#targetSdkVersion' & 'platform/android/export/export_plugin.cpp#DEFAULT_TARGET_SDK_VERSION'
|
targetSdk : 32, // Also update 'platform/android/export/export_plugin.cpp#DEFAULT_TARGET_SDK_VERSION'
|
||||||
buildTools : '32.0.0',
|
buildTools : '32.0.0',
|
||||||
kotlinVersion : '1.6.21',
|
kotlinVersion : '1.7.0',
|
||||||
fragmentVersion : '1.3.6',
|
fragmentVersion : '1.3.6',
|
||||||
nexusPublishVersion: '1.1.0',
|
nexusPublishVersion: '1.1.0',
|
||||||
javaVersion : 11,
|
javaVersion : 11,
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|
|
@ -4,9 +4,6 @@
|
||||||
android:versionCode="1"
|
android:versionCode="1"
|
||||||
android:versionName="1.0">
|
android:versionName="1.0">
|
||||||
|
|
||||||
<!-- Should match the mindSdk and targetSdk values in platform/android/java/app/config.gradle -->
|
|
||||||
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="32" />
|
|
||||||
|
|
||||||
<application>
|
<application>
|
||||||
|
|
||||||
<!-- Records the version of the Godot library -->
|
<!-- Records the version of the Godot library -->
|
||||||
|
|
|
@ -176,11 +176,10 @@ android {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: Enable when issues with AGP 7.1+ are resolved (https://github.com/GodotVR/godot_openxr/issues/187).
|
publishing {
|
||||||
// publishing {
|
singleVariant("templateRelease") {
|
||||||
// singleVariant("templateRelease") {
|
withSourcesJar()
|
||||||
// withSourcesJar()
|
withJavadocJar()
|
||||||
// withJavadocJar()
|
}
|
||||||
// }
|
}
|
||||||
// }
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue