Should now be recognized as Game in Android

This commit is contained in:
Yair Morgenstern 2019-11-27 20:44:15 +02:00
parent 127bafdbc6
commit 4270142421
3 changed files with 4 additions and 1 deletions

View File

@ -10,6 +10,7 @@
android:allowBackup="true"
android:icon="@drawable/uncivicon2"
android:label="@string/app_name"
android:isGame="true"
android:theme="@style/GdxTheme" >
<activity
android:name="com.unciv.app.AndroidLauncher"

View File

@ -21,7 +21,7 @@ android {
applicationId "com.unciv.app"
minSdkVersion 14
targetSdkVersion 29
versionCode 331
versionCode 332
versionName "3.3.2"
}

View File

@ -6,6 +6,8 @@ import com.badlogic.gdx.backends.android.AndroidApplication;
import com.badlogic.gdx.backends.android.AndroidApplicationConfiguration;
import com.unciv.UncivGame;
// If we convert this to Kotlin, the the Gradle build won't work. =(
// Stuck with Java for now
public class AndroidLauncher extends AndroidApplication {
@Override
protected void onCreate (Bundle savedInstanceState) {