forked from 00-Evan/shattered-pixel-dungeon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
39 lines (31 loc) · 907 Bytes
/
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
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
//the R8 version bundled with AGP 8.1.0+ causes crashes on very old Android versions
classpath 'com.android.tools.build:gradle:8.0.2'
}
}
allprojects {
ext {
appName = 'Shattered Pixel Dungeon'
appPackageName = 'com.shatteredpixel.shatteredpixeldungeon'
appVersionCode = 754
appVersionName = '2.2.1'
appJavaCompatibility = JavaVersion.VERSION_1_8
appAndroidCompileSDK = 33
appAndroidMinSDK = 14
appAndroidTargetSDK = 33
gdxVersion = '1.11.0'
gdxControllersVersion = '2.2.4-SNAPSHOT'
robovmVersion = '2.3.19'
}
version = appVersionName
repositories {
google()
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}
}