forked from siwangqishiq/ImageEditor-Android
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
46 lines (39 loc) · 1.12 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
42
43
44
45
46
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
java {
toolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}
android {
namespace 'com.xinlan.imageeditlibrary'
compileSdkVersion 34
buildToolsVersion '30.0.3'
defaultConfig {
minSdkVersion 21
targetSdkVersion 34
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
// externalNativeBuild {
// ndkBuild {
// path 'jni/Android.mk'
// }
// }
}
dependencies {
api fileTree(include: ['*.jar'], dir: 'libs')
testImplementation 'junit:junit:4.12'
testImplementation "org.robolectric:robolectric:3.3.2"
api 'com.nostra13.universalimageloader:universal-image-loader:1.9.4'
api 'androidx.recyclerview:recyclerview:1.0.0'
api 'androidx.appcompat:appcompat:1.0.0'
implementation "androidx.core:core-ktx:1.6.0"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
}