mirror of
https://github.com/szkolny-eu/szkolny-android.git
synced 2024-11-24 10:54:36 -06:00
56 lines
1.5 KiB
Groovy
56 lines
1.5 KiB
Groovy
|
apply plugin: 'com.android.library'
|
||
|
apply plugin: 'kotlin-android'
|
||
|
apply plugin: 'kotlin-kapt'
|
||
|
apply plugin: 'kotlin-android-extensions'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion setup.compileSdk
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion setup.minSdk
|
||
|
targetSdkVersion setup.targetSdk
|
||
|
versionCode release.versionCode
|
||
|
versionName release.versionName
|
||
|
|
||
|
consumerProguardFiles 'consumer-rules.pro'
|
||
|
|
||
|
vectorDrawables.useSupportLibrary = true
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
buildFeatures {
|
||
|
dataBinding = true
|
||
|
}
|
||
|
|
||
|
packagingOptions {
|
||
|
exclude 'META-INF/library-core_release.kotlin_module'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
|
||
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
||
|
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"
|
||
|
|
||
|
api "com.mikepenz:materialize:1.2.1"
|
||
|
api "com.mikepenz:materialdrawer:8.3.3"
|
||
|
api "com.mikepenz:iconics-core:5.3.0-b01"
|
||
|
api "com.mikepenz:itemanimators:1.1.0"
|
||
|
|
||
|
compileOnly "pl.droidsonroids.gif:android-gif-drawable:1.2.15"
|
||
|
|
||
|
implementation "com.balysv:material-ripple:1.0.2"
|
||
|
|
||
|
implementation project(":navlib-font")
|
||
|
}
|