NetGuard/app/build.gradle

92 lines
3.1 KiB
Groovy
Raw Normal View History

apply plugin: 'com.android.application'
2015-10-24 18:01:55 +00:00
2019-01-19 19:28:49 +00:00
def keystorePropertiesFile = rootProject.file("keystore.properties")
def keystoreProperties = new Properties()
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
android {
2019-06-06 09:58:22 +00:00
compileSdkVersion = 29
2015-10-24 18:01:55 +00:00
defaultConfig {
applicationId = "eu.faircode.netguard"
2020-01-09 15:31:04 +00:00
versionName = "2.271"
2018-10-17 13:57:38 +00:00
minSdkVersion 22
2019-06-06 09:58:22 +00:00
targetSdkVersion 29
2020-01-09 15:31:04 +00:00
versionCode = 2020010901
archivesBaseName = "NetGuard-v$versionName"
2016-02-09 11:00:14 +00:00
externalNativeBuild {
cmake {
cppFlags ""
arguments "-DANDROID_PLATFORM=android-22"
// https://developer.android.com/ndk/guides/cmake.html
}
2016-04-03 06:15:41 +00:00
}
2016-02-09 11:00:14 +00:00
ndk {
// https://developer.android.com/ndk/guides/abis.html#sa
abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
2016-02-09 11:00:14 +00:00
}
}
2019-01-19 19:28:49 +00:00
signingConfigs {
release {
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
}
}
2016-02-09 11:00:14 +00:00
2018-10-02 06:11:11 +00:00
lintOptions {
disable 'MissingTranslation'
}
externalNativeBuild {
cmake {
path "CMakeLists.txt"
2016-01-14 14:02:32 +00:00
}
}
2016-02-09 11:00:14 +00:00
buildTypes {
release {
minifyEnabled = true
useProguard = true
proguardFiles.add(file('proguard-rules.pro'))
2019-01-19 19:28:49 +00:00
signingConfig signingConfigs.release
buildConfigField "boolean", "PLAY_STORE_RELEASE", "false"
buildConfigField "String", "HOSTS_FILE_URI", "\"http://www.netguard.me/hosts\""
buildConfigField "String", "GITHUB_LATEST_API", "\"https://api.github.com/repos/M66B/NetGuard/releases/latest\""
2015-10-24 18:01:55 +00:00
}
2018-12-21 11:01:02 +00:00
play {
minifyEnabled = true
useProguard = true
2019-01-19 19:28:49 +00:00
signingConfig signingConfigs.release
2018-12-21 11:01:02 +00:00
proguardFiles.add(file('proguard-rules.pro'))
buildConfigField "boolean", "PLAY_STORE_RELEASE", "true"
buildConfigField "String", "HOSTS_FILE_URI", "\"\""
buildConfigField "String", "GITHUB_LATEST_API", "\"\""
}
debug {
minifyEnabled = true
useProguard = true
proguardFiles.add(file('proguard-rules.pro'))
buildConfigField "boolean", "PLAY_STORE_RELEASE", "false"
buildConfigField "String", "HOSTS_FILE_URI", "\"http://www.netguard.me/hosts\""
buildConfigField "String", "GITHUB_LATEST_API", "\"https://api.github.com/repos/M66B/NetGuard/releases/latest\""
2016-01-09 11:10:11 +00:00
}
}
2015-10-24 18:01:55 +00:00
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
2017-09-20 07:54:28 +00:00
2019-04-16 17:46:35 +00:00
// https://developer.android.com/jetpack/androidx/releases/
2018-11-17 16:32:36 +00:00
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'androidx.recyclerview:recyclerview:1.0.0'
2019-04-16 17:46:35 +00:00
annotationProcessor 'androidx.annotation:annotation:1.0.2'
2017-09-20 07:54:28 +00:00
2018-01-10 05:45:15 +00:00
// https://bumptech.github.io/glide/
2019-04-16 17:46:35 +00:00
implementation 'com.github.bumptech.glide:glide:4.9.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
2015-10-24 18:01:55 +00:00
}