Skip to content

Commit

Permalink
update SDK target to 25
Browse files Browse the repository at this point in the history
  • Loading branch information
n8fr8 committed Mar 2, 2017
1 parent 673e6c8 commit e801eaa
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 17 deletions.
6 changes: 3 additions & 3 deletions RootCommands/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
compileSdkVersion 25
buildToolsVersion "25"

sourceSets {
main {
Expand All @@ -12,7 +12,7 @@ android {

defaultConfig {
minSdkVersion 9
targetSdkVersion 23
targetSdkVersion 25
versionCode 1
versionName "1.0"

Expand Down
13 changes: 6 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
apply plugin: 'com.android.application'

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

defaultConfig {
applicationId "org.torproject.android"
minSdkVersion 16
targetSdkVersion 23

targetSdkVersion 25
}

lintOptions {
Expand All @@ -28,7 +27,7 @@ android {

dependencies {
compile project(':orbotservice')
compile 'com.android.support:support-v4:23.4.0'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.android.support:support-v4:25.0.0'
compile 'com.android.support:appcompat-v7:25.0.0'
compile 'com.android.support:design:25.0.0'
}
4 changes: 2 additions & 2 deletions jsocksAndroid/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apply plugin: 'com.android.library'

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

defaultConfig {
minSdkVersion 8
Expand Down
10 changes: 5 additions & 5 deletions orbotservice/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
compileSdkVersion 25
buildToolsVersion "25"

sourceSets {
main {
Expand All @@ -11,8 +11,8 @@ android {
}

defaultConfig {
minSdkVersion 9
targetSdkVersion 23
minSdkVersion 16
targetSdkVersion 25
versionCode 1
versionName "1.0"

Expand All @@ -28,7 +28,7 @@ android {
dependencies {
compile project(':jsocksAndroid')
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'])
testCompile 'junit:junit:4.12'
}

0 comments on commit e801eaa

Please sign in to comment.