Skip to content
This repository has been archived by the owner on Jul 29, 2019. It is now read-only.

Commit

Permalink
update target,compile sdk along with build tools and gradle plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
brianPlummer committed Feb 11, 2017
1 parent e98317b commit c2debcf
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ android:
components:
- tools
- platform-tools
- build-tools-24.0.3
- android-24
- build-tools-25.0.1
- android-25
- extra-android-m2repository
script:
- "./gradlew clean assembleDebug testDebug --stacktrace"
Expand Down
14 changes: 7 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:2.2.2"
classpath "com.android.tools.build:gradle:2.2.3"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand All @@ -23,20 +23,20 @@ allprojects {
ext {
// SDK versions
minSdkVersion = 16
targetSdkVersion = 24
compileSdkVersion = 24
buildToolsVersion = "24.0.3"
targetSdkVersion = 25
compileSdkVersion = 25
buildToolsVersion = "25.0.1"
sourceCompatibilityVersion = JavaVersion.VERSION_1_7
targetCompatibilityVersion = JavaVersion.VERSION_1_7

// Common versions
supportLibraryVersion = "24.2.1"
supportLibraryVersion = "25.0.1"
butterKnifeVersion = "7.0.1"
daggerVersion = "2.0.2"
daggerVersion = "2.8"

// POM file
GROUP = "com.github.brianPlummer"
VERSION_NAME = "1.0.0-SNAPSHOT"
VERSION_NAME = "0.1.1-SNAPSHOT"
POM_PACKAGING = "pom"
POM_DESCRIPTION = "Tiny Dancer"

Expand Down

0 comments on commit c2debcf

Please sign in to comment.