Skip to content

Commit 4672b7e

Browse files
committed
Update dependencies
1 parent 4e31c64 commit 4672b7e

File tree

6 files changed

+15
-12
lines changed

6 files changed

+15
-12
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
/build
77
/captures
88
.externalNativeBuild
9+
.gradletasknamecache

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
### 1.0.0
2+
3+
- Add `span(startIndex, searchText, spans)` method
4+
- Update dependencies
5+
16
### 0.5.0
27

38
- Add image from resource id support
@@ -28,4 +33,4 @@
2833

2934
- New span support: `click`, `url`, `custom`
3035
- Function to apply spans on existing text: `span()`
31-
- Fixed replace in multiple occurrences text
36+
- Fixed replace in multiple occurrences text

build.gradle

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
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.30'
5-
ext.COMPILE_SDK_VERSION = 27
6-
ext.BUILD_TOOLS_VERSION = "27.0.3"
4+
ext.KOTLIN_VERSION = '1.2.71'
5+
ext.COMPILE_SDK_VERSION = 28
76
ext.MIN_SDK_VERSION = 14
8-
ext.TARGET_SDK_VERSION = 27
9-
ext.SUPPORT_LIB_VERSION = "27.1.0"
7+
ext.TARGET_SDK_VERSION = 28
8+
ext.SUPPORT_LIB_VERSION = "28.0.0"
109

1110
repositories {
1211
jcenter()
1312
google()
1413
}
1514
dependencies {
16-
classpath 'com.android.tools.build:gradle:3.0.1'
15+
classpath 'com.android.tools.build:gradle:3.2.1'
1716
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$KOTLIN_VERSION"
1817

1918
// NOTE: Do not place your application dependencies here; they belong

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.6-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip

lib/build.gradle

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

1414
android {
1515
compileSdkVersion COMPILE_SDK_VERSION
16-
buildToolsVersion BUILD_TOOLS_VERSION
1716

1817
defaultConfig {
1918
minSdkVersion MIN_SDK_VERSION
@@ -30,7 +29,7 @@ dependencies {
3029
exclude group: 'com.android.support', module: 'support-annotations'
3130
})
3231
testImplementation 'junit:junit:4.12'
33-
testImplementation "org.robolectric:robolectric:3.5.1"
32+
testImplementation "org.robolectric:robolectric:4.0.2"
3433
testImplementation "org.jetbrains.kotlin:kotlin-reflect:$KOTLIN_VERSION"
3534
compileOnly "org.jetbrains.kotlin:kotlin-runtime:$KOTLIN_VERSION"
3635
}

sample/build.gradle

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

44
android {
55
compileSdkVersion COMPILE_SDK_VERSION
6-
buildToolsVersion BUILD_TOOLS_VERSION
76
defaultConfig {
87
applicationId "lt.neworld.spanner.sample"
98
minSdkVersion MIN_SDK_VERSION
@@ -14,4 +13,4 @@ android {
1413
dependencies {
1514
implementation project(":lib")
1615
implementation "com.android.support:appcompat-v7:$SUPPORT_LIB_VERSION"
17-
}
16+
}

0 commit comments

Comments
 (0)