Skip to content

Commit

Permalink
Updating build dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
audaciouscode committed Oct 25, 2016
1 parent d5c803a commit 2c88b1c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Expand Up @@ -7,7 +7,7 @@ before_install:
- unzip gradle-2.14.1-bin.zip
- export GRADLE_HOME=$PWD/gradle-2.14.1
- export PATH=$GRADLE_HOME/bin:$PATH
- ( sleep 5 && while [ 1 ]; do sleep 1; echo y; done ) | android update sdk -a --no-ui --filter tool,platform-tool,build-tools-24.0.3
- ( sleep 5 && while [ 1 ]; do sleep 1; echo y; done ) | android update sdk -a --no-ui --filter tool,platform-tool,build-tools-25.0.0


android:
Expand All @@ -16,16 +16,16 @@ android:
- tools

# The BuildTools version used by your project
- build-tools-24
- build-tools-25

# The SDK version used to compile your project
- android-24
- android-25

# Additional components
- extra-google-google_play_services
- extra-google-m2repository
- extra-android-m2repository
- addon-google_apis-google-24
- addon-google_apis-google-25

# Specify at least one system image,
# if you need to run emulator(s) during your tests
Expand Down
12 changes: 6 additions & 6 deletions build.gradle
Expand Up @@ -4,7 +4,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:2.2.1'
classpath 'com.android.tools.build:gradle:2.2.2'
}
}
apply plugin: 'com.android.library'
Expand All @@ -22,11 +22,11 @@ android {
androidTest.setRoot('tests')
}

compileSdkVersion 24
buildToolsVersion '24.0.3'
compileSdkVersion 25
buildToolsVersion '25.0.0'

dependencies {
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support:appcompat-v7:25.0.0'
}

useLibrary 'org.apache.http.legacy'
Expand All @@ -35,8 +35,8 @@ android {
versionCode 10006
versionName "1.0.6"
minSdkVersion 9
targetSdkVersion 24
compileSdkVersion 24
targetSdkVersion 25
compileSdkVersion 25
}

productFlavors {}
Expand Down

0 comments on commit 2c88b1c

Please sign in to comment.