-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
40 lines (34 loc) · 1.15 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
apply plugin: 'com.android.library'
android {
compileSdkVersion project.compileSdkVersion
defaultConfig {
minSdkVersion project.appMinSdkVersion
targetSdkVersion project.targetSdkVersion
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
javaCompileOptions {
annotationProcessorOptions {
includeCompileClasspath = true
}
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:24.2.1'
//
compileOnly "com.alibaba:fastjson:${project.fastjsonLibVersion}"
//
if (project.eeuiVersionCode >= 28) {
compileOnly "org.apache.weex:sdk_legacy:${project.weex_sdkLibVersion}"
} else {
compileOnly "com.taobao.android:weex_sdk:${project.weex_sdkLibVersion}"
}
implementation 'com.github.SherlockGougou:SetWallpaper:v1.3.0'
compileOnly project(":eeui")
}