Fixed build

This commit is contained in:
M66B 2018-04-27 08:56:36 +02:00
parent ea47f8909d
commit 6609031b77
2 changed files with 4 additions and 3 deletions

View File

@ -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'

View File

@ -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"
}
}
}