1
0
Fork 0
mirror of https://github.com/M66B/NetGuard.git synced 2024-12-23 16:27:55 +00:00

2.213 release

This commit is contained in:
M66B 2018-10-12 13:32:16 +00:00
parent 0432b9a864
commit ba60a68f25

View file

@ -1,15 +1,14 @@
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
android { android {
compileSdkVersion = 27 compileSdkVersion = 28
buildToolsVersion = "27.0.3"
defaultConfig { defaultConfig {
applicationId = "eu.faircode.netguard" applicationId = "eu.faircode.netguard"
versionName = "2.212" versionName = "2.213"
minSdkVersion 22 minSdkVersion 22
targetSdkVersion 27 targetSdkVersion 28
versionCode = 2018100703 versionCode = 2018101201
archivesBaseName = "NetGuard-v$versionName" archivesBaseName = "NetGuard-v$versionName"
externalNativeBuild { externalNativeBuild {
@ -54,10 +53,10 @@ dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar']) implementation fileTree(dir: 'libs', include: ['*.jar'])
// https://developer.android.com/topic/libraries/support-library/revisions.html // https://developer.android.com/topic/libraries/support-library/revisions.html
implementation 'com.android.support:appcompat-v7:27.1.1' implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:recyclerview-v7:27.1.1' implementation 'com.android.support:recyclerview-v7:28.0.0'
// https://bumptech.github.io/glide/ // https://bumptech.github.io/glide/
implementation 'com.github.bumptech.glide:glide:4.7.1' implementation 'com.github.bumptech.glide:glide:4.8.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.7.1' annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
} }