| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion ANDROID_COMPILE_SDK_VERSION as int
- 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
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- }
- dependencies {
- compileOnly "com.android.support:appcompat-v7:$supportLibVersion"
- compileOnly "com.android.support:recyclerview-v7:$supportLibVersion"
- compileOnly 'com.github.bumptech.glide:glide:4.1.1'
- api "com.android.support:exifinterface:$supportLibVersion"
- api project(':ucrop')
- compileOnly 'io.reactivex.rxjava2:rxandroid:2.1.0'
- compileOnly 'io.reactivex.rxjava2:rxjava:2.2.3'
- }
|