Optimizes the build and prepares for a new version.

This commit is contained in:
Markil3
2021-02-26 16:45:35 -07:00
parent 5e32ac16bb
commit c9e0fce4d2
8 changed files with 332 additions and 19 deletions

View File

@@ -5,7 +5,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.1'
classpath 'com.android.tools.build:gradle:4.1.2'
}
}
@@ -17,13 +17,13 @@ repositories {
}
android {
compileSdkVersion 29
buildToolsVersion "30.0.2"
compileSdkVersion 30
buildToolsVersion "30.0.3"
defaultConfig {
applicationId "markil3.controller"
minSdkVersion 19
targetSdkVersion 29
targetSdkVersion 30
versionCode 1
versionName "1.0"
@@ -43,15 +43,17 @@ android {
}
dependencies {
api(project(":desktop")) {
exclude module: "jme3-lwjgl3"
exclude module: "jme3-desktop"
api(project(":library")) {
exclude module: "slf4j-simple"
}
implementation "uk.uuid.slf4j:slf4j-android:1.7.30-0"
implementation "${jme3.g}:jme3-android:${jme3.version}"
implementation "${jme3.g}:jme3-android-native:${jme3.version}"
implementation "androidx.appcompat:appcompat:1.1.0"
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:1.0.9"
// implementation rootProject.files('libs/jme3-android.jar')
// implementation rootProject.files('libs/jme3-core.jar')
// implementation rootProject.files('libs/jme3-plugins.jar')
// implementation rootProject.files('libs/jme3-android-native.jar')
implementation "androidx.appcompat:appcompat:1.2.0"
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:1.1.5"
}