Skip to content

Commit

Permalink
Lowered API and up'd the gradle plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
turing-tech committed Feb 1, 2016
1 parent 88cb952 commit 946068b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -8,7 +8,7 @@ buildscript {
}
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
classpath 'com.android.tools.build:gradle:1.5.0'
// This does not break the build when Android Studio is missing the JRebel for Android plugin.
classpath 'com.zeroturnaround.jrebel.android:jr-android-gradle:0.8.+'

Expand Down
4 changes: 2 additions & 2 deletions library/build.gradle
Expand Up @@ -2,10 +2,10 @@ apply plugin: 'com.android.library'

android {
compileSdkVersion 23
buildToolsVersion "23"
buildToolsVersion "23.0.2"

defaultConfig {
minSdkVersion 14
minSdkVersion 11
targetSdkVersion 23
versionCode 1
versionName "1.0"
Expand Down
6 changes: 3 additions & 3 deletions sample/build.gradle
Expand Up @@ -4,11 +4,11 @@ apply plugin: 'com.zeroturnaround.jrebel.android'

android {
compileSdkVersion 23
buildToolsVersion "23"
buildToolsVersion "23.0.2"

defaultConfig {
applicationId "uk.co.deanwild.materialshowcaseviewsample"
minSdkVersion 14
minSdkVersion 11
targetSdkVersion 23
versionCode 1
versionName "1.0"
Expand All @@ -23,6 +23,6 @@ android {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.0.0'
compile 'com.android.support:appcompat-v7:23.1.1'
compile project(':library')
}

0 comments on commit 946068b

Please sign in to comment.