Skip to content

Commit 2c20673

Browse files
converted all to kotlin
1 parent 808513a commit 2c20673

File tree

12 files changed

+453
-479
lines changed

12 files changed

+453
-479
lines changed

.idea/caches/build_file_checksums.ser

0 Bytes
Binary file not shown.

.idea/caches/gradle_models.ser

9.08 KB
Binary file not shown.

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

AutoFitTextViewLibrary/build.gradle

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
apply plugin: 'com.android.library'
2+
apply plugin: 'kotlin-android-extensions'
3+
apply plugin: 'kotlin-android'
24

35
android {
46
compileSdkVersion 28
@@ -27,8 +29,17 @@ android {
2729
minifyEnabled false
2830
}
2931
}
32+
compileOptions {
33+
sourceCompatibility = '1.8'
34+
targetCompatibility = '1.8'
35+
}
3036
}
3137

3238
dependencies {
3339
implementation 'androidx.appcompat:appcompat:1.0.2'
40+
compile "androidx.core:core-ktx:+"
41+
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
42+
}
43+
repositories {
44+
mavenCentral()
3445
}

AutoFitTextViewLibrary/src/com/lb/auto_fit_textview/AutoResizeTextView.java

Lines changed: 0 additions & 254 deletions
This file was deleted.

0 commit comments

Comments
 (0)