44 lines
934 B
Groovy
44 lines
934 B
Groovy
group 'vn.hunghd.flutter.plugins.imagecropper'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url "https://www.jitpack.io" }
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.6.4'
|
|
}
|
|
}
|
|
|
|
rootProject.allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url "https://www.jitpack.io" }
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
// Conditional for compatibility with AGP <4.2.
|
|
if (project.android.hasProperty("namespace")) {
|
|
namespace 'vn.hunghd.flutter.plugins.imagecropper'
|
|
}
|
|
compileSdkVersion 31
|
|
|
|
defaultConfig {
|
|
minSdkVersion 16
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
lintOptions {
|
|
disable 'InvalidPackage'
|
|
}
|
|
dependencies {
|
|
implementation 'com.github.yalantis:ucrop:2.2.8'
|
|
}
|
|
}
|