2020-04-02 10:43:40 +08:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2020-04-02 16:20:03 +08:00
|
|
|
compileSdkVersion 29
|
2020-04-02 10:43:40 +08:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 19
|
2020-04-02 16:20:03 +08:00
|
|
|
targetSdkVersion 29
|
2020-04-02 10:43:40 +08:00
|
|
|
|
|
|
|
testApplicationId 'com.soundcloud.android.crop.test'
|
|
|
|
testInstrumentationRunner 'android.test.InstrumentationTestRunner'
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2020-04-09 15:57:14 +08:00
|
|
|
api 'com.android.support:support-annotations:28.0.0'
|
2020-04-09 12:35:00 +08:00
|
|
|
api 'com.android.support:support-v4:26.0.1'
|
2020-04-02 10:43:40 +08:00
|
|
|
}
|
|
|
|
|