33 lines
901 B
Groovy
33 lines
901 B
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
android {
|
|
compileSdkVersion propCompileSdkVersion
|
|
buildToolsVersion propBuildToolsVersion
|
|
|
|
defaultConfig {
|
|
applicationId "com.simplemobiletools.commons"
|
|
minSdkVersion propMinSdkVersion
|
|
targetSdkVersion propTargetSdkVersion
|
|
versionCode propVersionCode
|
|
versionName propVersionName
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
sourceSets {
|
|
main.java.srcDirs += 'src/main/kotlin'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation project(':commons')
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
}
|