-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
build.gradle
44 lines (36 loc) · 1.17 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
buildscript {
repositories {
google()
mavenCentral()
maven {
url = uri("https://storage.googleapis.com/r8-releases/raw")
}
}
dependencies {
//gradle version packaged with AGP 8.5 causes crashes on Android 4.4-
//this won't be needed once the bundled R8 version is 8.7.11+ (should happen with AGP 8.6)
classpath 'com.android.tools:r8:8.7.11'
classpath 'com.android.tools.build:gradle:8.5.2'
}
}
allprojects {
ext {
appName = 'Shattered Pixel Dungeon'
appPackageName = 'com.shatteredpixel.shatteredpixeldungeon'
appVersionCode = 802
appVersionName = '2.5.4'
appJavaCompatibility = JavaVersion.VERSION_1_8
appAndroidCompileSDK = 33 //compile SDK is still 33 atm as we're sticking with AGP 8.0.2
appAndroidMinSDK = 14
appAndroidTargetSDK = 34
gdxVersion = '1.12.1'
gdxControllersVersion = '2.2.4-SNAPSHOT'
robovmVersion = '2.3.21'
}
version = appVersionName
repositories {
google()
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}
}