File tree 6 files changed +24
-24
lines changed
6 files changed +24
-24
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ jobs:
17
17
steps :
18
18
- uses : actions/checkout@v2
19
19
20
- - name : Set up JDK 8
20
+ - name : Set up JDK 11
21
21
uses : actions/setup-java@v2
22
22
with :
23
- java-version : ' 8 '
23
+ java-version : ' 11 '
24
24
distribution : ' adopt'
25
25
26
26
- name : Grant execute permission for gradlew
@@ -33,13 +33,13 @@ jobs:
33
33
run : ./gradlew DungeoneerAndroid:assembleRelease
34
34
35
35
- name : Bundle Debug Apk
36
- uses : actions/upload-artifact@v2
36
+ uses : actions/upload-artifact@v4
37
37
with :
38
- name : apks
38
+ name : debug-apk
39
39
path : DungeoneerAndroid/build/outputs/apk/debug/DungeoneerAndroid-debug.apk
40
40
41
41
- name : Bundle Release Apk
42
- uses : actions/upload-artifact@v2
42
+ uses : actions/upload-artifact@v4
43
43
with :
44
- name : apks
44
+ name : release-apk
45
45
path : DungeoneerAndroid/build/outputs/apk/release/DungeoneerAndroid-release-unsigned.apk
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ name: Build Delver Engine
6
6
on :
7
7
push :
8
8
branches : [ master ]
9
-
9
+
10
10
pull_request :
11
11
branches : [ master ]
12
12
@@ -16,30 +16,30 @@ jobs:
16
16
17
17
steps :
18
18
- uses : actions/checkout@v2
19
-
20
- - name : Set up JDK 8
19
+
20
+ - name : Set up JDK 11
21
21
uses : actions/setup-java@v2
22
22
with :
23
- java-version : ' 8 '
23
+ java-version : ' 11 '
24
24
distribution : ' adopt'
25
-
25
+
26
26
- name : Grant execute permission for gradlew
27
27
run : chmod +x gradlew
28
-
28
+
29
29
- name : Build DungeoneerDesktop
30
30
run : ./gradlew DungeoneerDesktop:dist
31
-
31
+
32
32
- name : Build DelvEdit
33
33
run : ./gradlew DelvEdit:dist
34
34
35
35
- name : Bundle Game Jar
36
- uses : actions/upload-artifact@v2
36
+ uses : actions/upload-artifact@v4
37
37
with :
38
- name : jars
38
+ name : game-jar
39
39
path : DungeoneerDesktop/build/libs/game.jar
40
40
41
41
- name : Bundle Editor Jar
42
- uses : actions/upload-artifact@v2
42
+ uses : actions/upload-artifact@v4
43
43
with :
44
- name : jars
44
+ name : editor-jar
45
45
path : DelvEdit/build/libs/editor.jar
Original file line number Diff line number Diff line change 13
13
android : name =" com.interrupt.dungeoneer.DungeoneerAndroidActivity"
14
14
android : label =" @string/app_name"
15
15
android : screenOrientation =" landscape"
16
+ android : exported =" true"
16
17
android : configChanges =" keyboard|keyboardHidden|navigation|orientation|screenSize|screenLayout" >
17
18
<intent-filter >
18
19
<action android : name =" android.intent.action.MAIN" />
Original file line number Diff line number Diff line change 1
1
android {
2
- buildToolsVersion " 31 .0.0"
3
- compileSdkVersion 31
2
+ buildToolsVersion " 33 .0.0"
3
+ compileSdkVersion 33
4
4
sourceSets {
5
5
main {
6
6
manifest. srcFile ' AndroidManifest.xml'
@@ -18,7 +18,7 @@ android {
18
18
defaultConfig {
19
19
applicationId " com.interrupt.dungeoneer"
20
20
minSdkVersion 16
21
- targetSdkVersion 31
21
+ targetSdkVersion 33
22
22
versionCode 40
23
23
versionName " 1.05"
24
24
}
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ buildscript {
4
4
mavenCentral()
5
5
maven { url " https://plugins.gradle.org/m2/" }
6
6
maven { url " https://oss.sonatype.org/content/repositories/snapshots/" }
7
- jcenter()
8
7
google()
9
8
}
10
9
dependencies {
@@ -19,7 +18,7 @@ allprojects {
19
18
version = ' 1.4.0'
20
19
ext {
21
20
appName = " delver"
22
- gdxVersion = ' 1.11.1-SNAPSHOT '
21
+ gdxVersion = ' 1.12.1 '
23
22
gdxControllersVersion = ' 2.2.2'
24
23
jamepadVersion = ' 2.0.14.2'
25
24
roboVMVersion = ' 2.3.9'
@@ -73,7 +72,7 @@ project(":DungeoneerAndroid") {
73
72
configurations { natives }
74
73
75
74
dependencies {
76
- implementation(" com.badlogicgames.gdx:gdx-backend-android:1.11.0!! " )
75
+ implementation(" com.badlogicgames.gdx:gdx-backend-android:$g dxVersion " )
77
76
78
77
implementation project(" :Dungeoneer" )
79
78
api " com.badlogicgames.gdx:gdx-backend-android:$gdxVersion "
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-5.1 .1-all.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.5 .1-all.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments