X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=android%2Fbuild.gradle;h=bf1af009dae215b66422a87bff325fc37e8d50f4;hb=d9211ab755d82ecf9553527a734ab5db38f8fe74;hp=b8cfebe5ba54a0ea8532283c7840a3909f91543c;hpb=3f01302aa24daa8b7af3c3a8e5fc127b78530a4f;p=cavedroid.git diff --git a/android/build.gradle b/android/build.gradle index b8cfebe..bf1af00 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,6 +1,19 @@ +buildscript { + configurations { natives } +} + +plugins { + id "com.android.application" + id "kotlin-android" +} + +def keystorePropertiesFile = rootProject.file("keystore.properties") +def keystoreProperties = new Properties() +keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) + android { - buildToolsVersion "28.0.3" - compileSdkVersion 29 + namespace "ru.deadsoftware.cavedroid" + compileSdkVersion 34 sourceSets { main { manifest.srcFile 'AndroidManifest.xml' @@ -16,32 +29,46 @@ android { } } compileOptions { - sourceCompatibility 1.8 - targetCompatibility 1.8 + sourceCompatibility 17 + targetCompatibility 17 } packagingOptions { exclude 'META-INF/robovm/ios/robovm.xml' } defaultConfig { applicationId "ru.deadsoftware.cavedroid" - minSdkVersion 14 - targetSdkVersion 29 - versionCode 10 - versionName "alpha0.4" + minSdkVersion 24 + targetSdkVersion 34 + versionCode 25 + versionName "alpha0.9.2" } applicationVariants.all { variant -> variant.outputs.all { outputFileName = "android-${versionName}.apk" } } + + signingConfigs { + release_config { + storeFile file(keystoreProperties['releaseKeystorePath']) + storePassword keystoreProperties['releaseKeystorePassword'] + keyAlias keystoreProperties['releaseKeyAlias'] + keyPassword keystoreProperties['releaseKeyPassword'] + } + } + buildTypes { release { minifyEnabled false + signingConfig signingConfigs.release_config } debug { applicationIdSuffix ".debug" } } + buildFeatures { + buildConfig true + } } @@ -101,4 +128,18 @@ task run(type: Exec) { def adb = path + "/platform-tools/adb" commandLine "$adb", 'shell', 'am', 'start', '-n', 'ru.deadsoftware.cavedroid/ru.deadsoftware.cavedroid.AndroidLauncher' +} + +dependencies { + implementation project(":core") + implementation platform("org.jetbrains.kotlin:kotlin-bom:$kotlinVersion") + api "com.badlogicgames.gdx:gdx-backend-android:$gdxVersion" + natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-armeabi-v7a" + natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-arm64-v8a" + natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86" + natives "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-x86_64" + + configurations.implementation { + exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib-jdk8' + } } \ No newline at end of file