mirror of
https://github.com/brunodev85/winlator.git
synced 2024-11-23 13:19:39 +00:00
47 lines
1.1 KiB
Groovy
47 lines
1.1 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdk 30
|
|
|
|
defaultConfig {
|
|
applicationId 'com.winlator'
|
|
minSdkVersion 26
|
|
targetSdkVersion 28
|
|
versionCode 16
|
|
versionName "7.1"
|
|
}
|
|
|
|
buildTypes {
|
|
debug {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
ndk {
|
|
abiFilters 'arm64-v8a', 'armeabi-v7a'
|
|
}
|
|
}
|
|
}
|
|
|
|
lintOptions {
|
|
checkReleaseBuilds false
|
|
}
|
|
|
|
ndkVersion '22.1.7171670'
|
|
|
|
externalNativeBuild {
|
|
cmake {
|
|
version '3.22.1'
|
|
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'
|
|
}
|