v0.9.4: updated various dependencies and Android target SDK.

This commit is contained in:
Evan Debenham
2021-07-22 15:45:58 -04:00
parent 0e8eb3af64
commit 1ee6a0f993
3 changed files with 7 additions and 6 deletions

View File

@@ -30,8 +30,9 @@
android:backupAgent=".AndroidBackupHandler"> android:backupAgent=".AndroidBackupHandler">
<activity <activity
android:label="${appName}" android:label="${appName}"
android:name=".AndroidLauncher"> android:name=".AndroidLauncher"
<intent-filter > android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" /> <category android:name="android.intent.category.LAUNCHER" />
</intent-filter> </intent-filter>

View File

@@ -15,14 +15,14 @@ allprojects {
appName = 'Shattered Pixel Dungeon' appName = 'Shattered Pixel Dungeon'
appPackageName = 'com.shatteredpixel.shatteredpixeldungeon' appPackageName = 'com.shatteredpixel.shatteredpixeldungeon'
appVersionCode = 554 appVersionCode = 555
appVersionName = '0.9.3c' appVersionName = '0.9.3c'
appJavaCompatibility = JavaVersion.VERSION_1_8 appJavaCompatibility = JavaVersion.VERSION_1_8
appAndroidCompileSDK = 30 appAndroidCompileSDK = 30 //TODO update to 31 once it is out of preview
appAndroidMinSDK = 14 appAndroidMinSDK = 14
appAndroidTargetSDK = 30 appAndroidTargetSDK = 31
gdxVersion = '1.10.0' gdxVersion = '1.10.0'
robovmVersion = '2.3.13' robovmVersion = '2.3.13'

View File

@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-7.1.1-all.zip
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists