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 setup.compileSdk defaultConfig { minSdkVersion 16 targetSdkVersion setup.targetSdk 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:${versions.material}" implementation "androidx.cardview:cardview:${versions.cardview}" implementation "androidx.appcompat:appcompat:${versions.appcompat}" }