0
0
Fork 0
mirror of https://github.com/YTVanced/VancedMicroG synced 2024-11-24 20:25:14 +00:00

Update support lib

This commit is contained in:
Marvin W 2018-01-01 17:05:10 +01:00
parent 1c1782ff6b
commit 0dedff9746
No known key found for this signature in database
GPG key ID: 072E9235DB996F2A
2 changed files with 5 additions and 3 deletions

View file

@ -28,6 +28,7 @@ buildscript {
allprojects {
apply plugin: 'idea'
ext.androidBuildVersionTools = "27.0.3"
ext.supportLibraryVersion = "27.0.2"
}
def androidCompileSdk() { return 27 }
@ -39,5 +40,6 @@ def androidMinSdk() { return 7 }
subprojects {
repositories {
jcenter()
maven { url "https://maven.google.com" }
}
}

View file

@ -47,8 +47,8 @@ android {
}
dependencies {
api 'com.android.support:support-v4:25.3.1'
api 'com.android.support:appcompat-v7:25.3.1'
api 'com.takisoft.fix:preference-v7:25.3.1.0'
implementation "com.android.support:support-v4:$supportLibraryVersion"
implementation "com.android.support:appcompat-v7:$supportLibraryVersion"
implementation "com.takisoft.fix:preference-v7:$supportLibraryVersion.0"
}