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

Commit f5bf620

Browse files
committed
SDK, ライブラリバージョン指定修正
1 parent 6941b53 commit f5bf620

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

build.gradle

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.kotlin_version = '1.2.50'
4+
ext.kotlin_version = '1.2.61'
55
ext.versions = [
6-
'compileSdk': 28,
6+
'compileSdk': 27,
77
'minSdk': 16,
8-
'targetSdk': 28,
8+
'targetSdk': 27,
99
'supportLibrary': '27.1.1',
10-
'constraintLayout': '1.1.2',
11-
'gson': '2.8.2',
10+
'constraintLayout': '1.1.3',
11+
'gson': '2.8.5',
1212
'okhttp': '3.10.0',
1313
'retrofit' : '2.4.0',
14-
'rx2' : '2.0.2'
14+
'rx2java' : '2.2.0',
15+
'rx2android' : '2.1.0'
1516
]
1617
repositories {
1718
google()
1819
jcenter()
1920
}
2021
dependencies {
21-
classpath 'com.android.tools.build:gradle:3.1.3'
22+
classpath 'com.android.tools.build:gradle:3.1.4'
2223
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2324
}
2425
}

studyplus-android-sdk2/build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,8 @@ dependencies {
7676
implementation "com.squareup.retrofit2:converter-gson:${versions.retrofit}"
7777
testImplementation "com.squareup.retrofit2:retrofit-mock:${versions.retrofit}"
7878

79-
80-
implementation "io.reactivex.rxjava2:rxandroid:${versions.rx2}"
81-
implementation "io.reactivex.rxjava2:rxjava:${versions.rx2}"
79+
implementation "io.reactivex.rxjava2:rxjava:${versions.rx2java}"
80+
implementation "io.reactivex.rxjava2:rxandroid:${versions.rx2android}"
8281

8382
testImplementation 'junit:junit:4.12'
8483

0 commit comments

Comments
 (0)