Skip to content

Commit

Permalink
converted all to kotlin
Browse files Browse the repository at this point in the history
  • Loading branch information
AndroidDeveloperLB committed Feb 6, 2019
1 parent 808513a commit 2c20673
Show file tree
Hide file tree
Showing 12 changed files with 453 additions and 479 deletions.
Binary file modified .idea/caches/build_file_checksums.ser
Binary file not shown.
Binary file modified .idea/caches/gradle_models.ser
Binary file not shown.
2 changes: 1 addition & 1 deletion .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions AutoFitTextViewLibrary/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-android'

android {
compileSdkVersion 28
Expand Down Expand Up @@ -27,8 +29,17 @@ android {
minifyEnabled false
}
}
compileOptions {
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
}
}

dependencies {
implementation 'androidx.appcompat:appcompat:1.0.2'
compile "androidx.core:core-ktx:+"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}
repositories {
mavenCentral()
}

This file was deleted.

Loading

0 comments on commit 2c20673

Please sign in to comment.