mirror of https://github.com/M66B/NetGuard.git
64 lines
1.7 KiB
Groovy
64 lines
1.7 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion = 28
|
|
|
|
defaultConfig {
|
|
applicationId = "eu.faircode.netguard"
|
|
versionName = "2.217"
|
|
minSdkVersion 22
|
|
targetSdkVersion 28
|
|
versionCode = 2018111701
|
|
archivesBaseName = "NetGuard-v$versionName"
|
|
|
|
externalNativeBuild {
|
|
cmake {
|
|
cppFlags ""
|
|
arguments "-DANDROID_PLATFORM=android-22"
|
|
// https://developer.android.com/ndk/guides/cmake.html
|
|
}
|
|
}
|
|
|
|
ndk {
|
|
// https://developer.android.com/ndk/guides/abis.html#sa
|
|
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
|
|
}
|
|
}
|
|
|
|
lintOptions {
|
|
disable 'MissingTranslation'
|
|
}
|
|
|
|
externalNativeBuild {
|
|
cmake {
|
|
path "CMakeLists.txt"
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled = true
|
|
useProguard = true
|
|
proguardFiles.add(file('proguard-rules.pro'))
|
|
}
|
|
debug {
|
|
minifyEnabled = true
|
|
useProguard = true
|
|
proguardFiles.add(file('proguard-rules.pro'))
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
// https://developer.android.com/topic/libraries/support-library/revisions.html
|
|
implementation 'androidx.appcompat:appcompat:1.0.2'
|
|
implementation 'androidx.recyclerview:recyclerview:1.0.0'
|
|
|
|
// https://bumptech.github.io/glide/
|
|
implementation 'com.github.bumptech.glide:glide:4.8.0'
|
|
annotationProcessor 'androidx.annotation:annotation:1.0.0'
|
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
|
|
}
|