Skip to content
This repository was archived by the owner on Jun 18, 2020. It is now read-only.

Commit bf61909

Browse files
authored
Updates moshi minsdk targetsdk kotlin and supportLib version (#244)
* Updates moshi minsdk targetsdk kotlin and supportLib version * Updates version and changelog
1 parent 27582c1 commit bf61909

File tree

4 files changed

+23
-12
lines changed

4 files changed

+23
-12
lines changed

.travis.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ android:
44
components:
55
- tools
66
- platform-tools
7-
- build-tools-27.0.3
8-
- android-26
7+
- build-tools-28.0.3
8+
- android-28
99
- extra-android-m2repository
1010
- extra-android-support
1111

@@ -16,6 +16,8 @@ script:
1616
- ./gradlew clean check --stacktrace
1717

1818
before_install:
19+
- yes | sdkmanager "platforms;android-26"
20+
- yes | sdkmanager "platforms;android-28"
1921
- export TZ=Europe/Berlin
2022

2123
after_success:

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Change Log
22
==========
33

4+
Version 3.0.7 *2019-01-31*
5+
6+
* Update moshi to 1.8.0
7+
* Update minSdk to 21
8+
* Update targetSdk to 28
9+
* Update supportLib to 28.0.0
10+
* Update build tools to 28.0.3
11+
* Update kotlin version to 1.3.20
12+
413
Version 3.0.6 *2019-01-10*
514
----------------------------
615

build.gradle

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ buildscript {
2222
google()
2323
}
2424
dependencies {
25-
classpath 'com.android.tools.build:gradle:3.1.3'
25+
classpath 'com.android.tools.build:gradle:3.1.4'
2626
classpath 'net.ltgt.gradle:gradle-apt-plugin:0.9'
2727
}
2828
}
@@ -37,15 +37,15 @@ allprojects {
3737
project.ext {
3838
/** Contains global constants shared with all modules. */
3939
versions = [
40-
androidCompileSdk: 26,
41-
androidBuildTools: '27.0.3',
42-
androidMinSdk : 14,
43-
androidTargetSdk : 23,
40+
androidCompileSdk: 28,
41+
androidBuildTools: '28.0.3',
42+
androidMinSdk : 21,
43+
androidTargetSdk : 28,
4444

45-
androidSupportLib: '27.1.1',
45+
androidSupportLib: '28.0.0',
4646
okHttp : '3.10.0',
47-
kotlin_version : '1.2.10',
48-
moshiVersion : '1.6.0'
47+
kotlin_version : '1.3.20',
48+
moshiVersion : '1.8.0'
4949
]
5050

5151
/** Used dependencies. */

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
GROUP_ID=com.xing.api
2-
VERSION=3.0.6
3-
VERSION_CODE=15
2+
VERSION=3.0.7
3+
VERSION_CODE=16
44

55
POM_DESCRIPTION=XING API Client for Java/Android
66

0 commit comments

Comments
 (0)