update SDK target to 25

This commit is contained in:
Nathan Freitas 2017-03-01 23:08:48 -05:00
parent 673e6c8af7
commit e801eaa27a
4 changed files with 16 additions and 17 deletions

View File

@ -1,8 +1,8 @@
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
android { android {
compileSdkVersion 23 compileSdkVersion 25
buildToolsVersion "23.0.3" buildToolsVersion "25"
sourceSets { sourceSets {
main { main {
@ -12,7 +12,7 @@ android {
defaultConfig { defaultConfig {
minSdkVersion 9 minSdkVersion 9
targetSdkVersion 23 targetSdkVersion 25
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"

View File

@ -1,14 +1,13 @@
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
android { android {
compileSdkVersion 23 compileSdkVersion 25
buildToolsVersion "23.0.2" buildToolsVersion "25"
defaultConfig { defaultConfig {
applicationId "org.torproject.android" applicationId "org.torproject.android"
minSdkVersion 16 minSdkVersion 16
targetSdkVersion 23 targetSdkVersion 25
} }
lintOptions { lintOptions {
@ -28,7 +27,7 @@ android {
dependencies { dependencies {
compile project(':orbotservice') compile project(':orbotservice')
compile 'com.android.support:support-v4:23.4.0' compile 'com.android.support:support-v4:25.0.0'
compile 'com.android.support:appcompat-v7:23.4.0' compile 'com.android.support:appcompat-v7:25.0.0'
compile 'com.android.support:design:23.4.0' compile 'com.android.support:design:25.0.0'
} }

View File

@ -1,8 +1,8 @@
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
android { android {
compileSdkVersion 23 compileSdkVersion 25
buildToolsVersion "23.0.2" buildToolsVersion "25"
defaultConfig { defaultConfig {
minSdkVersion 8 minSdkVersion 8

View File

@ -1,8 +1,8 @@
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
android { android {
compileSdkVersion 23 compileSdkVersion 25
buildToolsVersion "23.0.3" buildToolsVersion "25"
sourceSets { sourceSets {
main { main {
@ -11,8 +11,8 @@ android {
} }
defaultConfig { defaultConfig {
minSdkVersion 9 minSdkVersion 16
targetSdkVersion 23 targetSdkVersion 25
versionCode 1 versionCode 1
versionName "1.0" versionName "1.0"
@ -28,7 +28,7 @@ android {
dependencies { dependencies {
compile project(':jsocksAndroid') compile project(':jsocksAndroid')
compile project(':RootCommands') compile project(':RootCommands')
compile 'com.android.support:appcompat-v7:23.4.0' compile 'com.android.support:appcompat-v7:25.0.0'
compile fileTree(dir: 'libs', include: ['*.jar','*.so']) compile fileTree(dir: 'libs', include: ['*.jar','*.so'])
testCompile 'junit:junit:4.12' testCompile 'junit:junit:4.12'
} }