forked from GodotVR/godot_openxr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.gradle
18 lines (17 loc) · 890 Bytes
/
config.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
ext {
versions = [
gradlePluginVersion: '7.0.3',
compileSdk : 30,
minSdk : 19, // Also update 'android/src/main/AndroidManifest.xml#minSdkVersion' value
targetSdk : 30, // Also update 'android/src/main/AndroidManifest.xml#targetSdkVersion' value
buildTools : '30.0.3',
kotlinVersion : '1.6.10',
ndkVersion : "21.4.7075529",
javaVersion : JavaVersion.VERSION_1_8,
versionCode : 10300, // Also update 'src/main/AndroidManifest.xml#versionCode' value
versionName : '1.3.0', // Also update 'src/main/AndroidManifest.xml#versionName' value
godotVersion : '3.4.4.stable',
]
PUBLISH_ARTIFACT_ID = 'godot-openxr'
STUB_PUBLISH_ARTIFACT_ID = PUBLISH_ARTIFACT_ID + "-stub"
}