Files
yinmeng-android/android_crop_lib/build.gradle

35 lines
813 B
Groovy
Raw Permalink Normal View History

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-02-08 16:41:37 +08:00
compileSdkVersion 31
2020-04-02 10:43:40 +08:00
defaultConfig {
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'
implementation "androidx.core:core-ktx:1.3.2"
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
}