Files
yinmeng-android/android_crop_lib/build.gradle

44 lines
995 B
Groovy
Raw 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 {
compileSdkVersion 32
2020-04-02 10:43:40 +08:00
defaultConfig {
minSdkVersion 21
targetSdkVersion 32
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"
}
2020-04-02 10:43:40 +08:00
}
dependencies {
api 'androidx.annotation:annotation:1.2.0'
2020-04-24 15:14:59 +08:00
api 'androidx.legacy:legacy-support-v4:1.0.0'
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
}