NoNonsense-FilePicker/library/build.gradle
2022-07-19 03:21:09 -04:00

46 lines
1,003 B
Groovy

/*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
plugins {
id 'com.android.library'
}
android {
compileSdk 28
buildToolsVersion "30.0.3"
defaultConfig {
minSdk 21
targetSdk 28
versionCode gitCommitCount
versionName gitTag
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
encoding "UTF-8"
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
lint {
abortOnError false
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
testImplementation 'junit:junit:4.13.2'
}