forked from github/szkolny
65 lines
1.8 KiB
Groovy
65 lines
1.8 KiB
Groovy
|
apply plugin: 'com.android.library'
|
||
|
|
||
|
/*
|
||
|
* CafeBar
|
||
|
*
|
||
|
* Copyright (c) 2017 Dani Mahardhika
|
||
|
*
|
||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
* you may not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
*
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
*/
|
||
|
|
||
|
group = 'com.github.danimahardhika'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion rootProject.ext.minSdkVersion
|
||
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
||
|
versionCode 132
|
||
|
versionName "1.3.2"
|
||
|
vectorDrawables.useSupportLibrary = true
|
||
|
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled false
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
debugMinify {
|
||
|
debuggable = true
|
||
|
minifyEnabled = true
|
||
|
proguardFiles 'proguard-android.txt'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
lintOptions {
|
||
|
abortOnError false
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
main.res.srcDirs = [
|
||
|
'src/main/res',
|
||
|
'src/main/res-public'
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
implementation "com.google.android.material:material:${googleMaterial}"
|
||
|
implementation "androidx.cardview:cardview:${androidXCardView}"
|
||
|
implementation "androidx.appcompat:appcompat:${androidXAppCompat}"
|
||
|
}
|