2020-04-02 10:43:40 +08:00
|
|
|
apply plugin: 'com.android.library'
|
2020-07-06 18:38:23 +08:00
|
|
|
apply plugin: 'kotlin-android'
|
2020-04-02 10:43:40 +08:00
|
|
|
|
|
|
|
android {
|
2021-12-20 10:27:23 +08:00
|
|
|
compileSdkVersion 30
|
2020-04-02 10:43:40 +08:00
|
|
|
|
|
|
|
defaultConfig {
|
2021-12-06 18:53:52 +08:00
|
|
|
minSdkVersion 21
|
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'
|
|
|
|
}
|
|
|
|
}
|
2020-06-18 14:54:40 +08:00
|
|
|
|
2021-12-20 10:27:23 +08:00
|
|
|
buildToolsVersion = '30.0.3'
|
2020-04-02 10:43:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
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'
|
2022-05-12 17:26:31 +08:00
|
|
|
implementation "androidx.core:core-ktx:1.6.0"
|
2020-07-06 18:38:23 +08:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
|
|
}
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2020-04-02 10:43:40 +08:00
|
|
|
}
|
|
|
|
|