Skip to content

Commit b44ef49

Browse files
committed
Updated Gradle script
1 parent 48601df commit b44ef49

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

codeview/build.gradle

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,16 @@ android {
99
minSdkVersion 15
1010
targetSdkVersion 25
1111
versionCode 1
12-
versionName '1.0'
12+
versionName '1.3.0'
1313
}
1414
buildTypes {
1515
release {
1616
minifyEnabled false
1717
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
1818
}
1919
}
20-
sourceSets {
21-
main.java.srcDirs += 'src/main/kotlin'
20+
lintOptions {
21+
abortOnError false
2222
}
2323
}
2424

@@ -28,8 +28,3 @@ dependencies {
2828
compile 'com.android.support:appcompat-v7:25.3.1'
2929
compile 'com.android.support:recyclerview-v7:25.3.1'
3030
}
31-
repositories {
32-
mavenCentral()
33-
}
34-
buildscript {
35-
}

codeview/src/main/java/io/github/kbiakov/codeview/adapters/AbstractCodeAdapter.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ data class Options(
421421
return this
422422
}
423423

424-
fun removeLineClickListener(): Options {
424+
fun removeCodeLineClickListener(): Options {
425425
this.lineClickListener = null
426426
return this
427427
}

0 commit comments

Comments
 (0)