This commit is contained in:
Erik C. Thauvin 2019-09-26 20:02:30 -07:00
parent 8f06802253
commit c38894eaf0
5 changed files with 32 additions and 18 deletions

View file

@ -34,6 +34,7 @@ android {
ext {
anko_version = '0.10.8'
support_version = "28.0.0"
perms_dispatch_version = "3.3.2"
}
dependencies {
@ -44,6 +45,7 @@ dependencies {
implementation "com.android.support:support-v13:$support_version"
implementation "com.android.support:appcompat-v7:$support_version"
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "org.jetbrains.anko:anko-sdk23:$anko_version"
implementation "org.jetbrains.anko:anko-appcompat-v7:$anko_version"
implementation "org.jetbrains.anko:anko-support-v4:$anko_version"
@ -55,10 +57,10 @@ dependencies {
implementation 'fr.avianey.com.viewpagerindicator:library:2.4.1.1@aar'
// https://github.com/hotchemi/PermissionsDispatcher
// Version 4.x does not work.
implementation 'com.github.hotchemi:permissionsdispatcher:3.3.1'
kapt 'com.github.hotchemi:permissionsdispatcher-processor:3.3.1'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
// Version 4.x needs AndroidX
//noinspection GradleDependency
implementation "com.github.hotchemi:permissionsdispatcher:$perms_dispatch_version"
kapt "com.github.hotchemi:permissionsdispatcher-processor:$perms_dispatch_version"
// https://github.com/eggheadgames/android-about-box
implementation 'com.github.eggheadgames:android-about-box:1.3.2'