Skip to content

Commit 097041e

Browse files
committedAug 24, 2019
added travis ci configurations
1 parent bd1d55c commit 097041e

File tree

2 files changed

+33
-2
lines changed

2 files changed

+33
-2
lines changed
 

‎.travis.yml

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
language: android
2+
3+
android:
4+
components:
5+
- tools
6+
- platform-tools
7+
- build-tools-29.0.0
8+
- android-29
9+
- extra-android-support
10+
- extra-android-m2repository
11+
- extra-google-m2repository
12+
13+
jdk:
14+
- openjdk8
15+
16+
branches:
17+
except:
18+
- gh-pages
19+
20+
licenses:
21+
- '.+'
22+
23+
notifications:
24+
email: false
25+
26+
cache:
27+
directories:
28+
- $HOME/.gradle
29+
30+
script:
31+
- chmod +x ./gradlew

‎dependencies.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
ext.versions = [
22
minSdk : 16,
33
compileSdk : 29,
4-
versionCode : 2,
5-
versionName : '1.0.1',
4+
versionCode : 1,
5+
versionName : '1.0.0',
66

77
gradleBuildTool : '3.4.2',
88
spotlessGradle : '3.23.1',

0 commit comments

Comments
 (0)
Please sign in to comment.