2019-08-10 15:03:11 -05:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
apply plugin: 'kotlin-android'
|
2019-08-16 15:26:34 -05:00
|
|
|
apply plugin: 'kotlin-kapt'
|
2019-08-10 15:03:11 -05:00
|
|
|
apply plugin: 'kotlin-android-extensions'
|
2020-01-19 07:39:31 -06:00
|
|
|
|
2019-08-10 15:03:11 -05:00
|
|
|
android {
|
2019-09-05 13:28:52 -05:00
|
|
|
compileSdkVersion setup.compileSdk
|
2019-08-10 15:03:11 -05:00
|
|
|
|
|
|
|
defaultConfig {
|
2019-09-05 13:28:52 -05:00
|
|
|
minSdkVersion setup.minSdk
|
|
|
|
targetSdkVersion setup.targetSdk
|
|
|
|
versionCode release.versionCode
|
|
|
|
versionName release.versionName
|
2019-08-10 15:03:11 -05:00
|
|
|
|
|
|
|
consumerProguardFiles 'consumer-rules.pro'
|
2019-08-11 08:58:02 -05:00
|
|
|
|
|
|
|
vectorDrawables.useSupportLibrary = true
|
2019-08-10 15:03:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-21 08:11:26 -05:00
|
|
|
buildFeatures {
|
|
|
|
dataBinding = true
|
2019-08-16 15:26:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
packagingOptions {
|
|
|
|
exclude 'META-INF/library-core_release.kotlin_module'
|
|
|
|
}
|
2019-08-10 15:03:11 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
2019-09-05 13:28:52 -05:00
|
|
|
|
2021-03-21 15:33:35 -05:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
2021-03-21 08:11:26 -05:00
|
|
|
implementation "androidx.appcompat:appcompat:1.2.0"
|
|
|
|
implementation "androidx.core:core-ktx:1.3.2"
|
|
|
|
implementation "androidx.recyclerview:recyclerview:1.1.0"
|
|
|
|
implementation "com.google.android.material:material:1.3.0"
|
2019-09-05 13:28:52 -05:00
|
|
|
|
2021-03-21 08:17:59 -05:00
|
|
|
api "com.mikepenz:materialize:1.2.1"
|
2021-03-21 16:20:24 -05:00
|
|
|
api "com.mikepenz:materialdrawer:8.3.3"
|
2021-03-29 14:43:49 -05:00
|
|
|
api "com.mikepenz:iconics-core:5.3.0-b01"
|
2021-03-21 08:17:59 -05:00
|
|
|
api "com.mikepenz:itemanimators:1.1.0"
|
|
|
|
|
2021-03-21 08:11:26 -05:00
|
|
|
compileOnly "pl.droidsonroids.gif:android-gif-drawable:1.2.15"
|
2019-09-09 12:47:55 -05:00
|
|
|
|
2021-03-21 08:11:26 -05:00
|
|
|
implementation "com.balysv:material-ripple:1.0.2"
|
|
|
|
|
|
|
|
implementation project(":navlib-font")
|
2019-08-10 15:03:11 -05:00
|
|
|
}
|