summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2022-12-24 18:17:04 +0600
committerilotterytea <iltsu@alright.party>2022-12-24 18:17:04 +0600
commitc6d944bc8d3c86695a25b0a19cb4ab9baf0ec694 (patch)
tree43ecf7d5c589c99bff6560a04bf74c2413e776d9 /build.gradle
parentdd82481dd42f71ef4886f1a63eacf9456883c5d2 (diff)
Removed 'android' module because it was moved to maxoning/pocket repository.
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle27
1 files changed, 0 insertions, 27 deletions
diff --git a/build.gradle b/build.gradle
index fec8450..9be4df5 100644
--- a/build.gradle
+++ b/build.gradle
@@ -58,33 +58,6 @@ project(":desktop") {
}
}
-project(":android") {
- apply plugin: "com.android.application"
- apply plugin: "kotlin-android"
-
- configurations { natives }
-
- dependencies {
- implementation project(":core")
- 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"
- api "com.badlogicgames.gdx-controllers:gdx-controllers-android:$gdxControllersVersion"
- api "com.badlogicgames.gdx:gdx-box2d:$gdxVersion"
- natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-armeabi-v7a"
- natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-arm64-v8a"
- natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-x86"
- natives "com.badlogicgames.gdx:gdx-box2d-platform:$gdxVersion:natives-x86_64"
- api "com.badlogicgames.box2dlights:box2dlights:$box2DLightsVersion"
- api "com.badlogicgames.gdx:gdx-ai:$aiVersion"
- api "com.badlogicgames.ashley:ashley:$ashleyVersion"
- api "de.golfgl.gdxgamesvcs:gdx-gamesvcs-android-gpgs:1.1.0"
- api "de.tomgrill.gdxdialogs:gdx-dialogs-android:1.3.0"
- }
-}
-
project(":core") {
apply plugin: "kotlin"