Skip to content

Commit d70d058

Browse files
committed
update build/dependencies
1 parent a04a2ea commit d70d058

File tree

6 files changed

+11
-16
lines changed

6 files changed

+11
-16
lines changed

gradle.properties

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,17 @@
1414
# limitations under the License.
1515
#
1616

17-
GRADLE_PLUGIN_VERSION=3.1.2
18-
BUILD_TOOLS_VERSION=27.0.3
19-
KOTLIN_VERSION=1.2.41
17+
GRADLE_PLUGIN_VERSION=3.3.2
18+
KOTLIN_VERSION=1.3.21
2019

21-
ANDROID_SUPPORT_VERSION=27.1.1
20+
ANDROID_SUPPORT_VERSION=28.0.0
2221

2322
MIN_SDK=15
24-
TARGET_SDK=27
25-
COMPILE_SDK=27
23+
TARGET_SDK=28
24+
COMPILE_SDK=28
2625

27-
VERSION_NAME=1.0.4
28-
VERSION_CODE=3
26+
VERSION_NAME=1.1.0
27+
VERSION_CODE=4
2928
GROUP=com.klinkerapps
3029

3130
POM_DESCRIPTION=Android floating tutorial pager activity

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip

library/build.gradle

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ apply plugin: 'kotlin-android'
1919

2020
android {
2121
compileSdkVersion Integer.parseInt(project.COMPILE_SDK)
22-
buildToolsVersion project.BUILD_TOOLS_VERSION
2322

2423
defaultConfig {
2524
minSdkVersion Integer.parseInt(project.MIN_SDK)
@@ -56,8 +55,8 @@ dependencies {
5655
implementation "com.android.support:cardview-v7:$ANDROID_SUPPORT_VERSION"
5756

5857
testImplementation 'junit:junit:4.12'
59-
testImplementation "org.robolectric:robolectric:3.6.1"
60-
testImplementation 'org.mockito:mockito-core:2.8.43'
58+
testImplementation "org.robolectric:robolectric:3.8"
59+
testImplementation 'org.mockito:mockito-core:2.18.3'
6160
}
6261

6362
apply from: 'https://raw.github.com/klinker24/gradle-mvn-push/master/gradle-mvn-push.gradle'

sample-java/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ apply plugin: 'com.android.application'
1818

1919
android {
2020
compileSdkVersion Integer.parseInt(project.COMPILE_SDK)
21-
buildToolsVersion project.BUILD_TOOLS_VERSION
2221

2322
defaultConfig {
2423
minSdkVersion Integer.parseInt(project.MIN_SDK)

sample-kotlin/build.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ apply plugin: 'kotlin-android'
1919

2020
android {
2121
compileSdkVersion Integer.parseInt(project.COMPILE_SDK)
22-
buildToolsVersion project.BUILD_TOOLS_VERSION
2322

2423
defaultConfig {
2524
minSdkVersion Integer.parseInt(project.MIN_SDK)
@@ -56,7 +55,7 @@ android {
5655
}
5756

5857
dependencies {
59-
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$KOTLIN_VERSION"
58+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$KOTLIN_VERSION"
6059
implementation "com.android.support:appcompat-v7:$ANDROID_SUPPORT_VERSION"
6160

6261
implementation project(":library")

sample-shared/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ apply plugin: 'com.android.library'
1818

1919
android {
2020
compileSdkVersion Integer.parseInt(project.COMPILE_SDK)
21-
buildToolsVersion project.BUILD_TOOLS_VERSION
2221

2322
defaultConfig {
2423
minSdkVersion Integer.parseInt(project.MIN_SDK)

0 commit comments

Comments
 (0)