FoldCraftLauncher/FCL/build.gradle

60 lines
1.9 KiB
Groovy
Raw Normal View History

2022-10-19 10:11:29 +00:00
plugins {
id 'com.android.application'
}
android {
namespace 'com.tungsten.fcl'
compileSdk 33
2022-10-19 10:11:29 +00:00
defaultConfig {
applicationId "com.tungsten.fcl"
2022-10-19 13:29:48 +00:00
minSdk 26
targetSdk 33
2023-08-01 12:03:32 +00:00
versionCode 9
versionName "1.0.6"
2022-10-19 10:11:29 +00:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
configureEach {
resValue "string", "app_version", "${defaultConfig.versionName}"
}
2022-10-19 10:11:29 +00:00
}
2023-07-31 09:56:03 +00:00
applicationVariants.configureEach { variant ->
variant.outputs.configureEach { output ->
outputFileName = "FCL-${variant.buildType.name}-${defaultConfig.versionName}.apk"
}
}
2022-10-19 10:11:29 +00:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2023-07-31 10:12:38 +00:00
packagingOptions {
jniLibs {
useLegacyPackaging true
}
}
2022-10-19 10:11:29 +00:00
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(path: ':FCLCore')
implementation project(path: ':FCLLibrary')
2022-10-21 16:58:02 +00:00
implementation project(path: ':FCLauncher')
2022-11-03 08:09:42 +00:00
implementation 'org.nanohttpd:nanohttpd:2.3.1'
implementation 'org.apache.commons:commons-compress:1.23.0'
implementation 'org.tukaani:xz:1.9'
2023-07-11 17:59:14 +00:00
implementation 'com.github.steveice10:opennbt:1.5'
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.9.0'
2022-10-19 10:11:29 +00:00
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
2022-10-19 10:11:29 +00:00
}