1234567891011121314151617181920212223242526272829303132333435 |
- apply plugin: plugin.androidLibrary
- android {
- compileSdkVersion androidBuild.compileSdkVersion
- defaultConfig {
- minSdkVersion androidBuild.libraryMinSdkVersion
- targetSdkVersion androidBuild.libraryTargetSdkVersion
- consumerProguardFiles 'proguard-rules.txt'
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- buildTypes {
- release {
- buildConfigField "java.lang.String", "PROJECT_VERSION", "\"${POM_VERSION}\""
- }
- debug {
- buildConfigField "java.lang.String", "PROJECT_VERSION", "\"${POM_VERSION}\""
- }
- }
- }
- dependencies {
- api project(':annotation')
- implementation deps.apache.httpcore
- implementation deps.apache.fileupload
- compileOnly deps.android.annotation
- }
- apply from: publishScript
|