Skip to content

Commit

Permalink
Update build config.
Browse files Browse the repository at this point in the history
For new version of Gradle and Android O.
  • Loading branch information
AndrewScull committed Jun 2, 2017
1 parent 6396db3 commit ec115a3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ android {
}

dependencies {
compile 'com.android.support:preference-v14:26.+'
compile 'com.android.support:recyclerview-v7:26.+'
compile 'com.android.support:support-v13:26.+'
compile 'com.google.android.gms:play-services-safetynet:+'
compile(name:'setup-wizard-lib-platform-release', ext:'aar')
api 'com.android.support:preference-v14:26.+'
api 'com.android.support:recyclerview-v7:26.+'
api 'com.android.support:support-v13:26.+'
api 'com.google.android.gms:play-services-safetynet:+'
api(name:'setup-wizard-lib-platform-release', ext:'aar')
}
8 changes: 7 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@
buildscript {
repositories {
jcenter()
maven {
url 'https://maven.google.com'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0-alpha1'
classpath 'com.android.tools.build:gradle:3.0.0-alpha2'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand All @@ -15,5 +18,8 @@ buildscript {
allprojects {
repositories {
jcenter()
maven {
url 'https://maven.google.com'
}
}
}

0 comments on commit ec115a3

Please sign in to comment.