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-24 15:14:59 +08:00
|
|
|
api 'androidx.annotation:annotation:1.1.0'
|
|
|
|
api 'androidx.legacy:legacy-support-v4:1.0.0'
|
2020-04-02 10:43:40 +08:00
|
|
|
}
|
|
|
|
|