diff --git a/android/app/build.gradle b/android/app/build.gradle index a5af874..ba1e4ca 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -1,6 +1,6 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 30 + compileSdkVersion 31 buildToolsVersion '30.0.3' ndkVersion "$ndk_version" defaultConfig { diff --git a/android/app/src/main/res/values/strings.xml b/android/app/src/main/res/values/strings.xml index cc42110..362173f 100644 --- a/android/app/src/main/res/values/strings.xml +++ b/android/app/src/main/res/values/strings.xml @@ -4,10 +4,10 @@ SussyCraft Loading… Migrating save data from old install… (this may take a while) - Required permission wasn\'t granted, Minetest can\'t run without it - Loading Minetest + Required permission wasn\'t granted, SussyCraft can\'t run without it + Loading SussyCraft Less than 1 minute… Done - External storage isn\'t available. If you use an SDCard, please reinsert it. Otherwise, try restarting your phone or contacting the Minetest developers + External storage isn\'t available. If you use an SD Card, please reinsert it. Otherwise, try restarting your phone or contacting the SussyCraft developers diff --git a/android/build.gradle b/android/build.gradle index 8e7a8a9..911036f 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,7 +1,7 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. -project.ext.set("versionMajor", 5) // Version Major -project.ext.set("versionMinor", 6) // Version Minor +project.ext.set("versionMajor", 1) // Version Major +project.ext.set("versionMinor", 1) // Version Minor project.ext.set("versionPatch", 0) // Version Patch project.ext.set("versionExtra", "") // Version Extra project.ext.set("versionCode", 42) // Android Version Code @@ -11,13 +11,13 @@ project.ext.set("developmentBuild", 0) // Whether it is a development build, or // each APK must have a larger `versionCode` than the previous buildscript { - ext.ndk_version = '23.2.8568313' + ext.ndk_version = '25.1.8937393' repositories { google() - jcenter() + mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:7.0.3' + classpath 'com.android.tools.build:gradle:7.2.2' classpath 'de.undercouch:gradle-download-task:4.1.1' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files @@ -27,7 +27,7 @@ buildscript { allprojects { repositories { google() - jcenter() + mavenCentral() } } diff --git a/android/native/build.gradle b/android/native/build.gradle index 90e4fe2..19940c4 100644 --- a/android/native/build.gradle +++ b/android/native/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'com.android.library' apply plugin: 'de.undercouch.download' android { - compileSdkVersion 30 + compileSdkVersion 31 buildToolsVersion '30.0.3' ndkVersion "$ndk_version" defaultConfig { diff --git a/android/settings.gradle b/android/settings.gradle index b048fca..11e6f51 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -1,2 +1,2 @@ -rootProject.name = "Minetest" +rootProject.name = "SussyCraft" include ':app', ':native'