Skip to content

Commit

Permalink
Add support for sdk 26.
Browse files Browse the repository at this point in the history
  • Loading branch information
ittianyu committed Aug 24, 2017
1 parent 4dec328 commit 9216609
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
12 changes: 7 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
buildscript {
repositories {
jcenter()
// maven { url 'https://dl.google.com/dl/android/maven2/' }
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
Expand All @@ -17,6 +16,9 @@ buildscript {
allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}

Expand All @@ -25,10 +27,10 @@ task clean(type: Delete) {
}

ext {
targetSdkVersion = 25
buildToolsVersion = '25.0.3'
compileSdkVersion = 25
targetSdkVersion = 26
buildToolsVersion = '26.0.0'
compileSdkVersion = 26

// Libraries
supportLibraryVersion = '25.3.1'
supportLibraryVersion = '26.0.0'
}
2 changes: 1 addition & 1 deletion widget/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {
buildToolsVersion rootProject.ext.buildToolsVersion

defaultConfig {
minSdkVersion 9
minSdkVersion 14
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 17
versionName "1.2.3"
Expand Down

0 comments on commit 9216609

Please sign in to comment.