NetGuard/app/build.gradle

101 lines
3.5 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 {
2022-01-19 08:03:46 +00:00
compileSdkVersion = 31
2015-10-24 18:01:55 +00:00
defaultConfig {
applicationId = "eu.faircode.netguard"
2022-06-14 12:35:55 +00:00
versionName = "2.302"
2018-10-17 13:57:38 +00:00
minSdkVersion 22
2022-01-19 08:03:46 +00:00
targetSdkVersion 31
2022-06-14 12:35:55 +00:00
versionCode = 2022061401
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
}
2021-09-10 10:44:22 +00:00
//ndkVersion "21.4.7075529"
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
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
proguardFiles.add(file('proguard-rules.pro'))
2019-01-19 19:28:49 +00:00
signingConfig signingConfigs.release
buildConfigField "boolean", "PLAY_STORE_RELEASE", "false"
2020-09-09 20:58:33 +00:00
buildConfigField "String", "HOSTS_FILE_URI", "\"https://raw.githubusercontent.com/StevenBlack/hosts/master/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
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
proguardFiles.add(file('proguard-rules.pro'))
buildConfigField "boolean", "PLAY_STORE_RELEASE", "false"
2020-09-09 20:58:33 +00:00
buildConfigField "String", "HOSTS_FILE_URI", "\"https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts\""
buildConfigField "String", "GITHUB_LATEST_API", "\"https://api.github.com/repos/M66B/NetGuard/releases/latest\""
2016-01-09 11:10:11 +00:00
}
}
2021-06-14 10:14:25 +00:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
2022-01-19 07:40:23 +00:00
lint {
disable 'MissingTranslation'
}
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/
implementation 'androidx.appcompat:appcompat:1.3.1'
2020-10-08 17:22:07 +00:00
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
2021-06-14 11:58:44 +00:00
implementation 'androidx.recyclerview:recyclerview:1.2.1'
2020-10-08 17:22:07 +00:00
implementation 'androidx.preference:preference:1.1.1'
implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0'
annotationProcessor 'androidx.annotation:annotation:1.2.0'
2017-09-20 07:54:28 +00:00
2018-01-10 05:45:15 +00:00
// https://bumptech.github.io/glide/
2020-10-08 17:22:07 +00:00
implementation('com.github.bumptech.glide:glide:4.11.0') {
2020-01-09 18:24:55 +00:00
exclude group: "com.android.support"
}
2020-10-08 17:22:07 +00:00
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
2015-10-24 18:01:55 +00:00
}