mirror of
https://github.com/k0shk0sh/FastHub.git
synced 2025-12-08 19:05:54 +00:00
31 lines
799 B
Groovy
31 lines
799 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
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 {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation rootProject.ext.supportLibraries
|
|
implementation rootProject.ext.extrasLibraries
|
|
implementation rootProject.ext.kotlin
|
|
}
|