27 lines
593 B
Groovy
27 lines
593 B
Groovy
![]() |
apply plugin: 'com.android.library'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 26
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion 19
|
||
|
targetSdkVersion 26
|
||
|
|
||
|
testApplicationId 'com.soundcloud.android.crop.test'
|
||
|
testInstrumentationRunner 'android.test.InstrumentationTestRunner'
|
||
|
}
|
||
|
|
||
|
buildTypes {
|
||
|
release {
|
||
|
minifyEnabled true
|
||
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
api 'com.android.support:support-annotations:23.0.1'
|
||
|
api 'com.android.support:support-v4:26.0.1'
|
||
|
}
|
||
|
|