Skip to content

Commit abda464

Browse files
author
Ingo Schwarz
committed
Update to latest android version
1 parent fafe0bb commit abda464

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ android:
88
- platform-tools
99
- tools
1010
# The BuildTools version used by this project
11-
- build-tools-24.0.3
11+
- build-tools-25
1212
# The SDK version used to compile this project
13-
- android-24
13+
- android-25
1414
# Additional components
1515
- extra-android-support
1616
- extra-android-m2repository

app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 24
5-
buildToolsVersion "24.0.3"
4+
compileSdkVersion 25
5+
buildToolsVersion "25"
66

77
defaultConfig {
88
applicationId "de.codecrafters.tableviewexample"
99
minSdkVersion 11
10-
targetSdkVersion 24
10+
targetSdkVersion 25
1111
versionCode 7
1212
versionName "2.3.0"
1313
}
@@ -23,8 +23,8 @@ android {
2323
}
2424

2525
dependencies {
26-
compile 'com.android.support:appcompat-v7:24.2.1'
27-
compile 'com.android.support:support-compat:24.2.1'
26+
compile 'com.android.support:appcompat-v7:25.0.1'
27+
compile 'com.android.support:support-compat:25.0.1'
2828

2929
compile project(':tableview')
3030
}

tableview/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ ext {
2828
}
2929

3030
android {
31-
compileSdkVersion 24
32-
buildToolsVersion "24.0.3"
31+
compileSdkVersion 25
32+
buildToolsVersion "25"
3333

3434
defaultConfig {
3535
minSdkVersion 11
36-
targetSdkVersion 24
36+
targetSdkVersion 25
3737
versionCode 11
3838
versionName tableViewLibraryVersion
3939
}
@@ -49,8 +49,8 @@ android {
4949
}
5050

5151
dependencies {
52-
compile 'com.android.support:appcompat-v7:24.2.1'
53-
compile 'com.android.support:support-compat:24.2.1'
52+
compile 'com.android.support:appcompat-v7:25.0.1'
53+
compile 'com.android.support:support-compat:25.0.1'
5454

5555
testCompile 'junit:junit:4.12'
5656
testCompile 'org.mockito:mockito-core:1.9.5'

0 commit comments

Comments
 (0)