FoldCraftLauncher/FCLCore/build.gradle

49 lines
1.6 KiB
Groovy
Raw Normal View History

2022-10-19 10:11:29 +00:00
plugins {
id 'com.android.library'
}
android {
namespace 'com.tungsten.fclcore'
2023-12-25 11:04:07 +00:00
compileSdk 34
2022-10-19 10:11:29 +00:00
defaultConfig {
2022-10-19 13:29:48 +00:00
minSdk 26
2023-12-25 11:04:07 +00:00
targetSdk 34
2022-10-19 10:11:29 +00:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
2024-02-03 03:18:48 +00:00
fordebug {
2024-01-14 01:22:55 +00:00
initWith debug
}
2022-10-19 10:11:29 +00:00
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}
dependencies {
2022-10-21 02:06:12 +00:00
implementation project(path: ':FCLauncher')
2022-10-20 11:07:27 +00:00
implementation 'com.github.marschall:zipfilesystem-standalone:1.0.1'
2022-10-19 13:29:48 +00:00
implementation 'org.nanohttpd:nanohttpd:2.3.1'
implementation 'com.github.steveice10:opennbt:1.5'
implementation 'org.tukaani:xz:1.9'
2024-02-01 13:50:12 +00:00
implementation 'commons-io:commons-io:2.13.0'
implementation 'org.apache.commons:commons-lang3:3.13.0'
implementation 'org.apache.commons:commons-compress:1.25.0'
2022-10-19 15:41:14 +00:00
implementation 'com.moandjiezana.toml:toml4j:0.7.2'
2022-10-19 10:11:29 +00:00
implementation 'org.jenkins-ci:constant-pool-scanner:1.2'
implementation 'com.google.code.gson:gson:2.10.1'
implementation 'androidx.appcompat:appcompat:1.6.1'
2023-12-24 14:25:06 +00:00
implementation 'com.google.android.material:material:1.11.0'
2022-10-19 10:11:29 +00:00
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
}