| 1234567891011121314151617181920212223242526272829303132333435363738 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion ANDROID_COMPILE_SDK_VERSION as int
- buildToolsVersion ANDROID_BUILD_TOOLS_VERSION
- defaultConfig {
- minSdkVersion ANDROID_MIN_SDK_VERSION as int
- targetSdkVersion ANDORID_TARGET_SDK_VERSION as int
- versionCode VERSION_CODE as int
- versionName VERSION_NAME
- }
- lintOptions {
- abortOnError false
- }
- dexOptions {
- preDexLibraries = false
- incremental true
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- buildToolsVersion ANDROID_BUILD_TOOLS_VERSION
- }
- dependencies {
- compile 'com.android.support:appcompat-v7:27.1.0'
- compile 'com.android.support:support-v4:27.1.0'
- compile 'com.github.bumptech.glide:glide:3.7.0'
- compile 'jp.wasabeef:glide-transformations:2.0.2'
- // compile project(':sheep')
- }
|