NetGuard/app/build.gradle

98 lines
3.4 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 {
2020-06-14 11:34:06 +00:00
compileSdkVersion = 30
2015-10-24 18:01:55 +00:00
defaultConfig {
applicationId = "eu.faircode.netguard"
2020-08-26 10:27:43 +00:00
versionName = "2.288"
2018-10-17 13:57:38 +00:00
minSdkVersion 22
2020-06-14 11:34:06 +00:00
targetSdkVersion 30
2020-08-26 10:27:43 +00:00
versionCode = 2020082601
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
}
2020-06-07 10:27:42 +00:00
//ndkVersion "21.0.6113669"
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"
2020-04-26 05:32:20 +00:00
buildConfigField "String", "HOSTS_FILE_URI", "\"https://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"
2020-04-26 05:32:20 +00:00
buildConfigField "String", "HOSTS_FILE_URI", "\"https://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/
2020-01-09 18:24:55 +00:00
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'androidx.preference:preference:1.1.0'
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0'
annotationProcessor 'androidx.annotation:annotation:1.1.0'
2017-09-20 07:54:28 +00:00
2018-01-10 05:45:15 +00:00
// https://bumptech.github.io/glide/
2020-01-09 18:24:55 +00:00
implementation('com.github.bumptech.glide:glide:4.10.0') {
exclude group: "com.android.support"
}
annotationProcessor 'com.github.bumptech.glide:compiler:4.10.0'
2015-10-24 18:01:55 +00:00
}