123456789101112131415161718192021222324252627 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion build_versions.target_sdk
- buildToolsVersion build_versions.build_tools
- defaultConfig {
- minSdkVersion 14
- targetSdkVersion build_versions.target_sdk
- vectorDrawables.useSupportLibrary = true
- }
- lintOptions {
- checkReleaseBuilds false
- abortOnError false
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- compileOnly deps.androidx.appcompat
- compileOnly deps.gson
- }
- apply from: "../JitPackUpload.gradle"
|