Files
peko-android/android_crop_lib/build.gradle

35 lines
895 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 COMPILE_SDK_VERSION.toInteger()
2020-04-02 10:43:40 +08:00
defaultConfig {
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'
2020-04-02 10:43:40 +08:00
}
dependencies {
2022-09-14 16:22:48 +08:00
api 'androidx.annotation:annotation:1.4.0'
2020-04-24 15:14:59 +08:00
api 'androidx.legacy:legacy-support-v4:1.0.0'
2022-09-14 16:22:48 +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
}