2.213 release

This commit is contained in:
M66B 2018-10-12 13:32:16 +00:00
parent 0432b9a864
commit ba60a68f25
1 changed files with 8 additions and 9 deletions

View File

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