forked from pqpo/SmartCropper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
33 lines (31 loc) · 869 Bytes
/
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
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
defaultConfig {
applicationId "me.pqpo.smartcropper"
minSdkVersion 14
targetSdkVersion 22
versionCode 2
versionName "1.1"
ndk {
abiFilters 'armeabi','armeabi-v7a','mips', 'x86'
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
abortOnError false
}
}
dependencies {
compile project(':smartcropperlib')
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support:support-v4:25.3.1'
// compile 'com.github.pqpo:SmartCropper:v1.1.0@aar'
}