|
- apply plugin: 'com.android.library'
-
- android {
- compileSdkVersion 23
- buildToolsVersion '26.0.2'
-
- buildTypes {
- debug {
- debuggable true
- minifyEnabled false
- // applicationVariants.all { variant ->
- // renameAPK(variant, defaultConfig, 'debug')
- // }
- }
- release {
- debuggable false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
- zipAlignEnabled true
- // applicationVariants.all { variant ->
- // renameAPK(variant, defaultConfig, 'release')
- // }
- }
- }
- defaultConfig {
- minSdkVersion 14
- }
- }
-
- dependencies {
- compile 'com.android.support:support-v4:23.4.0'
- compile files('libs/JSR268Library.jar')
- }
|