Skip to content

Commit ec115a3

Browse files
committed
Update build config.
For new version of Gradle and Android O.
1 parent 6396db3 commit ec115a3

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ android {
6464
}
6565

6666
dependencies {
67-
compile 'com.android.support:preference-v14:26.+'
68-
compile 'com.android.support:recyclerview-v7:26.+'
69-
compile 'com.android.support:support-v13:26.+'
70-
compile 'com.google.android.gms:play-services-safetynet:+'
71-
compile(name:'setup-wizard-lib-platform-release', ext:'aar')
67+
api 'com.android.support:preference-v14:26.+'
68+
api 'com.android.support:recyclerview-v7:26.+'
69+
api 'com.android.support:support-v13:26.+'
70+
api 'com.google.android.gms:play-services-safetynet:+'
71+
api(name:'setup-wizard-lib-platform-release', ext:'aar')
7272
}

build.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@
33
buildscript {
44
repositories {
55
jcenter()
6+
maven {
7+
url 'https://maven.google.com'
8+
}
69
}
710
dependencies {
8-
classpath 'com.android.tools.build:gradle:3.0.0-alpha1'
11+
classpath 'com.android.tools.build:gradle:3.0.0-alpha2'
912

1013
// NOTE: Do not place your application dependencies here; they belong
1114
// in the individual module build.gradle files
@@ -15,5 +18,8 @@ buildscript {
1518
allprojects {
1619
repositories {
1720
jcenter()
21+
maven {
22+
url 'https://maven.google.com'
23+
}
1824
}
1925
}

0 commit comments

Comments
 (0)