35 lines
813 B
Groovy
35 lines
813 B
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
compileSdkVersion 32
|
|
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
targetSdkVersion 32
|
|
|
|
testApplicationId 'com.soundcloud.android.crop.test'
|
|
testInstrumentationRunner 'android.test.InstrumentationTestRunner'
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
buildToolsVersion = '30.0.3'
|
|
}
|
|
|
|
dependencies {
|
|
api 'androidx.annotation:annotation:1.1.0'
|
|
api 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation "androidx.core:core-ktx:1.3.2"
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
}
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|