forked from pqpo/SmartCropper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
41 lines (38 loc) · 1.14 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "me.pqpo.smartcropper"
minSdkVersion 21
targetSdkVersion 28
versionCode 2
versionName "1.1"
ndk {
abiFilters 'armeabi-v7a', "arm64-v8a", 'x86', 'x86_64'
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
abortOnError false
}
aaptOptions {
noCompress "tflite"
noCompress "lite"
}
}
dependencies {
implementation project(':smartcropperlib')
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:support-v4:28.0.0'
// For developers using AndroidX in their applications
//implementation 'pub.devrel:easypermissions:3.0.0'
// For developers using the Android Support Library
implementation 'pub.devrel:easypermissions:2.0.1'
// api 'com.github.pqpo:SmartCropper:v2.1.1'
}