mirror of
https://github.com/M66B/NetGuard.git
synced 2025-01-03 13:54:09 +00:00
Fixed build
This commit is contained in:
parent
ea47f8909d
commit
6609031b77
2 changed files with 4 additions and 3 deletions
|
@ -50,8 +50,8 @@ dependencies {
|
|||
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||||
|
||||
// https://developer.android.com/topic/libraries/support-library/revisions.html
|
||||
implementation 'com.android.support:appcompat-v7:27.+'
|
||||
implementation 'com.android.support:recyclerview-v7:27.+'
|
||||
implementation 'com.android.support:appcompat-v7:27.1.1'
|
||||
implementation 'com.android.support:recyclerview-v7:27.1.1'
|
||||
|
||||
// https://developers.google.com/android/guides/setup
|
||||
implementation 'com.google.android.gms:play-services-base:12.0.1'
|
||||
|
|
|
@ -19,6 +19,7 @@ buildscript {
|
|||
|
||||
allprojects {
|
||||
repositories {
|
||||
jcenter()
|
||||
mavenCentral()
|
||||
maven {
|
||||
url 'https://maven.google.com'
|
||||
|
@ -31,7 +32,7 @@ subprojects {
|
|||
resolutionStrategy.eachDependency { details ->
|
||||
if (details.requested.group == 'com.android.support'
|
||||
&& !details.requested.name.contains('multidex')) {
|
||||
details.useVersion "27.1.0"
|
||||
details.useVersion "27.1.1"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue