Skip to content

Commit 998e13f

Browse files
Update build scripts
1 parent df73f29 commit 998e13f

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed

.travis.yml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,15 @@
11
sudo: false
22
language: android
3+
jdk:
4+
- oraclejdk8
35

46
android:
57
components:
68
- tools
79
- platform-tools
8-
- build-tools-22.0.1
9-
- android-22
10+
- build-tools-25.0.2
11+
- android-25
1012
- extra-google-m2repository
1113
- extra-android-m2repository
12-
addons:
13-
apt_packages:
14-
- pandoc
1514

1615
script: ./gradlew build
17-
18-
after_script:
19-
- for f in "websockets-example/build/outputs/lint-results*.html"; do pandoc $f -t plain; done
20-
- for f in "websockets-rxjava-example/build/outputs/lint-results*.html"; do pandoc $f -t plain; done

websockets-rxjava-example/build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ dependencies {
3333
}
3434

3535
android {
36-
compileSdkVersion 22
36+
compileSdkVersion 25
3737
buildToolsVersion '25.0.2'
3838

3939
defaultConfig {
4040
minSdkVersion 9
41-
targetSdkVersion 22
41+
targetSdkVersion 25
4242
}
4343
buildTypes {
4444
release {
@@ -47,6 +47,8 @@ android {
4747
}
4848
lintOptions {
4949
disable 'InvalidPackage'
50+
textOutput "stdout"
51+
textReport true
5052
}
5153

5254
compileOptions {

0 commit comments

Comments
 (0)