mirror of
https://github.com/kuba2k2/NavLib.git
synced 2024-11-09 19:50:26 -06:00
51 lines
1.6 KiB
Groovy
51 lines
1.6 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
android {
|
|
compileSdkVersion setup.compileSdk
|
|
|
|
defaultConfig {
|
|
applicationId "pl.szczodrzynski.navigation"
|
|
minSdkVersion setup.minSdk
|
|
targetSdkVersion setup.targetSdk
|
|
versionCode release.versionCode
|
|
versionName release.versionName
|
|
|
|
multiDexEnabled true
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
packagingOptions {
|
|
exclude 'META-INF/library-core_release.kotlin_module'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
implementation "androidx.appcompat:appcompat:1.2.0"
|
|
implementation "androidx.legacy:legacy-support-v4:1.0.0"
|
|
implementation "androidx.constraintlayout:constraintlayout:2.0.4"
|
|
implementation "androidx.core:core-ktx:1.3.2"
|
|
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
|
|
implementation "com.google.android.material:material:1.3.0"
|
|
implementation 'androidx.multidex:multidex:2.0.1'
|
|
|
|
implementation "com.mikepenz:iconics-views:5.3.0-b01"
|
|
implementation "com.mikepenz:community-material-typeface:5.8.55.0-kotlin@aar"
|
|
|
|
// implementation "pl.droidsonroids.gif:android-gif-drawable:1.2.15"
|
|
implementation project(":navlib")
|
|
}
|