Skip to content

Commit

Permalink
Update Android target API to 25
Browse files Browse the repository at this point in the history
  • Loading branch information
matteblair committed Dec 19, 2016
1 parent ddc8f11 commit 4534136
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions android/demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ buildscript {
apply plugin: 'com.android.application'

android {
compileSdkVersion 24
buildToolsVersion '24.0.2'
compileSdkVersion 25
buildToolsVersion '25.0.0'

defaultConfig {
minSdkVersion 15
targetSdkVersion 24
targetSdkVersion 25
}

sourceSets.main {
Expand Down
8 changes: 4 additions & 4 deletions android/tangram/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,19 @@ version = VERSION_NAME
apply from: 'versioning.gradle'

android {
compileSdkVersion 24
compileSdkVersion 25

/*
* Ubuntu can't run the aapt on 64 bit before installing this packages
* sudo apt-get install lib32stdc++6
* sudo apt-get install lib32z1
*/

buildToolsVersion '24.0.2'
buildToolsVersion '25.0.0'

defaultConfig {
minSdkVersion 15
targetSdkVersion 24
targetSdkVersion 25
versionCode buildVersionCode()
versionName VERSION_NAME
externalNativeBuild {
Expand Down Expand Up @@ -70,7 +70,7 @@ afterEvaluate {
dependencies {
compile 'com.squareup.okhttp:okhttp:2.5.0'
compile 'xmlpull:xmlpull:1.1.3.1'
compile 'com.android.support:support-annotations:24.1.1'
compile 'com.android.support:support-annotations:25.0.0'
}

apply from: file('gradle-mvn-push.gradle')

0 comments on commit 4534136

Please sign in to comment.