Skip to content

Commit 35c71dd

Browse files
committed
travis update
1 parent 086dd7e commit 35c71dd

File tree

3 files changed

+12
-20
lines changed

3 files changed

+12
-20
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
language: android
2-
2+
jdk: oraclejdk8
33
android:
44
components:
55
- tools
66
- platform-tools
7-
- build-tools-23.0.3
8-
- android-23
7+
- build-tools-24.0.3
8+
- android-24
99
- extra-android-support
1010
- extra-android-m2repository
1111
- extra-google-m2repository

library/build.gradle

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ apply plugin: 'com.github.dcendents.android-maven'
44
group = 'com.github.douglasjunior'
55

66
android {
7-
compileSdkVersion 23
8-
buildToolsVersion "23.0.3"
7+
compileSdkVersion 24
8+
buildToolsVersion "24.0.3"
99

1010
defaultConfig {
1111
minSdkVersion 7
12-
targetSdkVersion 23
12+
targetSdkVersion 24
1313
versionCode 5
1414
versionName "0.1.3"
1515
}
@@ -19,10 +19,6 @@ android {
1919
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2020
}
2121
}
22-
compileOptions {
23-
sourceCompatibility JavaVersion.VERSION_1_7
24-
targetCompatibility JavaVersion.VERSION_1_7
25-
}
2622
}
2723

2824
buildscript {
@@ -37,7 +33,7 @@ buildscript {
3733

3834
dependencies {
3935
compile fileTree(dir: 'libs', include: ['*.jar'])
40-
compile 'com.android.support:support-annotations:23.2.1'
36+
compile 'com.android.support:support-annotations:24.0.0'
4137
}
4238

4339
// build a jar with source files

sample/build.gradle

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

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

77
defaultConfig {
88
applicationId "io.github.douglasjunior.androidSimpleTooltip.sample"
99
minSdkVersion 7
10-
targetSdkVersion 23
10+
targetSdkVersion 24
1111
versionCode 1
1212
versionName "0.0.1"
1313
}
@@ -17,15 +17,11 @@ android {
1717
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
1818
}
1919
}
20-
compileOptions {
21-
sourceCompatibility JavaVersion.VERSION_1_7
22-
targetCompatibility JavaVersion.VERSION_1_7
23-
}
2420
}
2521

2622
dependencies {
2723
compile fileTree(dir: 'libs', include: ['*.jar'])
28-
compile 'com.android.support:appcompat-v7:23.4.0'
29-
compile 'com.android.support:design:23.4.0'
24+
compile 'com.android.support:appcompat-v7:24.0.0'
25+
compile 'com.android.support:design:24.0.0'
3026
compile project(':library')
3127
}

0 commit comments

Comments
 (0)