mirror of
https://github.com/status-im/react-native-image-crop-picker.git
synced 2025-02-24 03:18:17 +00:00
26 lines
955 B
Groovy
26 lines
955 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
def DEFAULT_COMPILE_SDK_VERSION = 28
|
|
def DEFAULT_BUILD_TOOLS_VERSION = "28.0.3"
|
|
def DEFAULT_TARGET_SDK_VERSION = 28
|
|
def DEFAULT_MIN_SDK_VERSION = 16
|
|
|
|
android {
|
|
compileSdkVersion rootProject.hasProperty('compileSdkVersion') ? rootProject.compileSdkVersion : DEFAULT_COMPILE_SDK_VERSION
|
|
buildToolsVersion rootProject.hasProperty('buildToolsVersion') ? rootProject.buildToolsVersion : DEFAULT_BUILD_TOOLS_VERSION
|
|
|
|
defaultConfig {
|
|
minSdkVersion rootProject.hasProperty('minSdkVersion') ? rootProject.minSdkVersion : DEFAULT_MIN_SDK_VERSION
|
|
targetSdkVersion rootProject.hasProperty('targetSdkVersion') ? rootProject.targetSdkVersion : DEFAULT_TARGET_SDK_VERSION
|
|
versionCode 1
|
|
}
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.facebook.react:react-native:+'
|
|
implementation 'com.github.yalantis:ucrop:2.2.2-native'
|
|
}
|