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 {
|
2023-04-13 16:58:18 +08:00
|
|
|
compileSdkVersion COMPILE_SDK_VERSION.toInteger()
|
2020-04-02 10:43:40 +08:00
|
|
|
|
|
|
|
defaultConfig {
|
2023-04-13 16:58:18 +08:00
|
|
|
minSdkVersion MIN_SDK_VERSION.toInteger()
|
|
|
|
targetSdkVersion TARGET_SDK_VERSION.toInteger()
|
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'
|
2023-03-14 11:23:00 +08:00
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
|
|
targetCompatibility JavaVersion.VERSION_11
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = "11"
|
|
|
|
}
|
2023-09-14 17:52:40 +08:00
|
|
|
namespace 'com.soundcloud.android.crop'
|
2020-04-02 10:43:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2023-03-06 19:30:25 +08:00
|
|
|
api 'androidx.annotation:annotation:1.2.0'
|
2020-04-24 15:14:59 +08:00
|
|
|
api 'androidx.legacy:legacy-support-v4:1.0.0'
|
2023-03-06 19:30:25 +08:00
|
|
|
implementation "androidx.core:core-ktx:1.7.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
|
|
|
}
|
|
|
|
|