Skip to content

Commit 6609031

Browse files
committed
Fixed build
1 parent ea47f89 commit 6609031

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ dependencies {
5050
implementation fileTree(dir: 'libs', include: ['*.jar'])
5151

5252
// https://developer.android.com/topic/libraries/support-library/revisions.html
53-
implementation 'com.android.support:appcompat-v7:27.+'
54-
implementation 'com.android.support:recyclerview-v7:27.+'
53+
implementation 'com.android.support:appcompat-v7:27.1.1'
54+
implementation 'com.android.support:recyclerview-v7:27.1.1'
5555

5656
// https://developers.google.com/android/guides/setup
5757
implementation 'com.google.android.gms:play-services-base:12.0.1'

build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ buildscript {
1919

2020
allprojects {
2121
repositories {
22+
jcenter()
2223
mavenCentral()
2324
maven {
2425
url 'https://maven.google.com'
@@ -31,7 +32,7 @@ subprojects {
3132
resolutionStrategy.eachDependency { details ->
3233
if (details.requested.group == 'com.android.support'
3334
&& !details.requested.name.contains('multidex')) {
34-
details.useVersion "27.1.0"
35+
details.useVersion "27.1.1"
3536
}
3637
}
3738
}

0 commit comments

Comments
 (0)