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.
|
|
|
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 deps.test.junit
|
|
|
|
androidTestImplementation deps.test.runner
|
|
|
|
androidTestImplementation deps.test.espresso
|
|
|
|
//support
|
|
|
|
compileOnly deps.support.appcompat
|
|
|
|
compileOnly deps.okhttp
|
|
|
|
|
|
|
|
}
|