You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
Add default minSdkVersion and targetSdkVersion in the AndroidManifest.xml file
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
ext.versions = [
|
ext.versions = [
|
||||||
androidGradlePlugin: '7.0.3',
|
androidGradlePlugin: '7.0.3',
|
||||||
compileSdk : 30,
|
compileSdk : 30,
|
||||||
minSdk : 19,
|
minSdk : 19, // Also update 'platform/android/java/lib/AndroidManifest.xml#minSdkVersion' value
|
||||||
targetSdk : 30,
|
targetSdk : 30, // Also update 'platform/android/java/lib/AndroidManifest.xml#targetSdkVersion' value
|
||||||
buildTools : '30.0.3',
|
buildTools : '30.0.3',
|
||||||
kotlinVersion : '1.5.10',
|
kotlinVersion : '1.5.10',
|
||||||
fragmentVersion : '1.3.6',
|
fragmentVersion : '1.3.6',
|
||||||
|
|||||||
@@ -4,6 +4,9 @@
|
|||||||
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="30" />
|
||||||
|
|
||||||
<application>
|
<application>
|
||||||
|
|
||||||
<!-- Records the version of the Godot library -->
|
<!-- Records the version of the Godot library -->
|
||||||
|
|||||||
Reference in New Issue
Block a user