X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=android%2Fbuild.gradle;h=bf1af009dae215b66422a87bff325fc37e8d50f4;hb=f50a0d30230d2e6dbb8dbc0587a2dd8950761ae5;hp=d64557af4eb2ecfae920cabe31b77c3ad2b861a6;hpb=969518fd0bbde98b81c885c62f973d74ff5f61bb;p=cavedroid.git diff --git a/android/build.gradle b/android/build.gradle index d64557a..bf1af00 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -1,4 +1,9 @@ +buildscript { + configurations { natives } +} + plugins { + id "com.android.application" id "kotlin-android" } @@ -34,8 +39,8 @@ android { applicationId "ru.deadsoftware.cavedroid" minSdkVersion 24 targetSdkVersion 34 - versionCode 19 - versionName "alpha0.6.2" + versionCode 25 + versionName "alpha0.9.2" } applicationVariants.all { variant -> variant.outputs.all { @@ -123,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