mirror of
https://github.com/k0shk0sh/FastHub.git
synced 2026-02-01 15:56:14 +00:00
39 lines
993 B
Groovy
39 lines
993 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
apply plugin: 'kotlin-kapt'
|
|
|
|
android {
|
|
def conf = rootProject.ext.android
|
|
|
|
compileSdkVersion conf.compileSdkVersion
|
|
|
|
defaultConfig {
|
|
minSdkVersion conf.minSdkVersion
|
|
targetSdkVersion conf.targetSdkVersion
|
|
versionCode conf.versionCode
|
|
versionName conf.versionName
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
def dependency = rootProject.ext
|
|
|
|
implementation project(':resources')
|
|
implementation project(':extensions')
|
|
implementation dependency.kotlin
|
|
implementation dependency.supportLibraries
|
|
implementation dependency.extrasLibraries
|
|
implementation dependency.networking
|
|
implementation dependency.rxJava
|
|
|
|
testImplementation dependency.testing
|
|
} |