File tree Expand file tree Collapse file tree 6 files changed +15
-12
lines changed Expand file tree Collapse file tree 6 files changed +15
-12
lines changed Original file line number Diff line number Diff line change 6
6
/build
7
7
/captures
8
8
.externalNativeBuild
9
+ .gradletasknamecache
Original file line number Diff line number Diff line change
1
+ ### 1.0.0
2
+
3
+ - Add ` span(startIndex, searchText, spans) ` method
4
+ - Update dependencies
5
+
1
6
### 0.5.0
2
7
3
8
- Add image from resource id support
28
33
29
34
- New span support: ` click ` , ` url ` , ` custom `
30
35
- Function to apply spans on existing text: ` span() `
31
- - Fixed replace in multiple occurrences text
36
+ - Fixed replace in multiple occurrences text
Original file line number Diff line number Diff line change 1
1
// Top-level build file where you can add configuration options common to all sub-projects/modules.
2
2
3
3
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
7
6
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"
10
9
11
10
repositories {
12
11
jcenter()
13
12
google()
14
13
}
15
14
dependencies {
16
- classpath ' com.android.tools.build:gradle:3.0 .1'
15
+ classpath ' com.android.tools.build:gradle:3.2 .1'
17
16
classpath " org.jetbrains.kotlin:kotlin-gradle-plugin:$KOTLIN_VERSION "
18
17
19
18
// NOTE: Do not place your application dependencies here; they belong
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
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
Original file line number Diff line number Diff line change @@ -13,7 +13,6 @@ apply plugin: 'kotlin-android'
13
13
14
14
android {
15
15
compileSdkVersion COMPILE_SDK_VERSION
16
- buildToolsVersion BUILD_TOOLS_VERSION
17
16
18
17
defaultConfig {
19
18
minSdkVersion MIN_SDK_VERSION
@@ -30,7 +29,7 @@ dependencies {
30
29
exclude group : ' com.android.support' , module : ' support-annotations'
31
30
})
32
31
testImplementation ' junit:junit:4.12'
33
- testImplementation " org.robolectric:robolectric:3.5.1 "
32
+ testImplementation " org.robolectric:robolectric:4.0.2 "
34
33
testImplementation " org.jetbrains.kotlin:kotlin-reflect:$KOTLIN_VERSION "
35
34
compileOnly " org.jetbrains.kotlin:kotlin-runtime:$KOTLIN_VERSION "
36
35
}
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ apply plugin: 'kotlin-android'
3
3
4
4
android {
5
5
compileSdkVersion COMPILE_SDK_VERSION
6
- buildToolsVersion BUILD_TOOLS_VERSION
7
6
defaultConfig {
8
7
applicationId " lt.neworld.spanner.sample"
9
8
minSdkVersion MIN_SDK_VERSION
@@ -14,4 +13,4 @@ android {
14
13
dependencies {
15
14
implementation project(" :lib" )
16
15
implementation " com.android.support:appcompat-v7:$SUPPORT_LIB_VERSION "
17
- }
16
+ }
You can’t perform that action at this time.
0 commit comments