forked from bmfe/WeexErosFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
executable file
·81 lines (70 loc) · 2.32 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
apply plugin: 'com.android.library'
android {
compileSdkVersion 25
buildToolsVersion '26.0.2'
defaultConfig {
minSdkVersion 14
targetSdkVersion 25
versionCode 1
versionName "0.0.4"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug{
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
sourceSets {
main {
jniLibs.srcDirs=['libs']
}
}
}
repositories {
mavenCentral()
flatDir {
dirs 'libs'
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.3.1'
testCompile 'junit:junit:4.12'
/**
* debug调试要用到的
*/
compile 'com.taobao.android:weex_inspector:0.11.0'
compile 'com.squareup.okhttp:okhttp-ws:2.3.0'
compile 'com.squareup.okhttp3:okhttp:3.3.1'
compile 'com.alibaba:fastjson:1.2.31'
compile files('libs/otto-1.3.5.jar')
compile project(':sdk')
compile(name: 'bm_imagepicker', ext: 'aar')
compile 'com.journeyapps:zxing-android-embedded:3.4.0'
compile 'com.github.bumptech.glide:glide:3.7.0'
compile 'com.github.chrisbanes.photoview:library:1.2.4'
compile project(':bmwidget')
compile 'com.networkbench.newlens.agent.android:nbs.newlens.agent:2.5.7'
//高德地图
compile 'com.amap.api:location:latest.integration'
compile 'com.amap.api:3dmap:latest.integration'
//友盟数据分析
compile 'com.umeng.analytics:analytics:latest.integration'
compile files('libs/libammsdk.jar')
compile files('libs/SocialSDK_WeChat_Simplify.jar')
compile files('libs/umeng_social_net.jar')
compile files('libs/umeng_social_api.jar')
compile files('libs/umeng_social_tool.jar')
compile files('libs/GetuiSDK2.9.3.0.jar')
compile 'com.android.support:multidex:1.0.1'
//bs patch
compile 'me.ele:bspatch:1.0.6'
}