You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
apply plugin: 'com.android.library'
|
|
//apply from: 'bintray.gradle'
|
|
apply plugin: "com.vanniktech.maven.publish"
|
|
|
|
android {
|
|
|
|
compileSdkVersion build_versions.compileSdk
|
|
buildToolsVersion build_versions.buildTools
|
|
|
|
defaultConfig {
|
|
minSdkVersion build_versions.minSdk
|
|
targetSdkVersion build_versions.targetSdk
|
|
versionCode app_version.versionCode
|
|
versionName app_version.versionName
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
warning 'InvalidPackage'
|
|
}
|
|
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
testImplementation "junit:junit:$versions.junit"
|
|
androidTestImplementation "androidx.test.ext:junit:$versions.androidExtJunit"
|
|
androidTestImplementation "androidx.test.espresso:espresso-core:$versions.espressoCore"
|
|
|
|
compileOnly "androidx.appcompat:appcompat:$versions.appcompat"
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|