winlator/app/build.gradle

47 lines
1.1 KiB
Groovy
Raw Normal View History

2023-12-23 18:49:09 +00:00
apply plugin: 'com.android.application'
android {
2024-03-27 17:24:58 +00:00
compileSdk 30
2023-12-23 18:49:09 +00:00
defaultConfig {
applicationId 'com.winlator'
minSdkVersion 26
targetSdkVersion 28
2024-06-27 14:54:31 +00:00
versionCode 16
versionName "7.1"
2023-12-23 18:49:09 +00:00
}
buildTypes {
debug {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2024-03-27 17:24:58 +00:00
ndk {
abiFilters 'arm64-v8a', 'armeabi-v7a'
}
2023-12-23 18:49:09 +00:00
}
}
lintOptions {
checkReleaseBuilds false
}
2024-04-04 20:14:24 +00:00
ndkVersion '22.1.7171670'
2023-12-23 18:49:09 +00:00
externalNativeBuild {
cmake {
2024-03-27 17:24:58 +00:00
version '3.22.1'
2023-12-23 18:49:09 +00:00
path 'src/main/cpp/CMakeLists.txt'
}
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.preference:preference:1.1.1'
implementation 'com.google.android.material:material:1.4.0'
implementation 'com.github.luben:zstd-jni:1.5.2-3@aar'
implementation 'org.tukaani:xz:1.7'
implementation 'org.apache.commons:commons-compress:1.20'
}