-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
57 lines (50 loc) · 1.71 KB
/
build.gradle
File metadata and controls
57 lines (50 loc) · 1.71 KB
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
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '23.0.0'
defaultConfig {
applicationId "micro.com.microblog"
minSdkVersion 15
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
sourceSets {
main {
jniLibs.srcDirs=['libs']
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'me.imid.swipebacklayout.lib:library:1.0.0'
compile 'com.google.code.gson:gson:2.4'
compile 'org.greenrobot:eventbus:3.0.0'
compile 'io.reactivex:rxandroid:1.2.1'
compile 'io.reactivex:rxjava:1.1.6'
compile 'com.squareup.retrofit2:retrofit:2.0.0-beta4'
compile 'com.squareup.retrofit2:adapter-rxjava:2.0.0-beta4'
compile 'org.markdownj:markdownj-core:0.4'
compile 'com.google.android.gms:play-services-appindexing:8.1.0'
compile 'com.github.bumptech.glide:glide:3.7.0'
//底端指示
compile 'com.flyco.tablayout:FlycoTabLayout_Lib:2.0.8@aar'
compile files('libs/butterknife-7.0.1.jar')
compile files('libs/jsoup-1.7.2.jar')
compile files('libs/tencent.jar')
compile files('libs/ormlite-android-5.0.jar')
compile files('libs/ormlite-core-5.0.jar')
compile files('libs/mta-sdk-1.6.2.jar')
compile files('libs/open_sdk_r5756.jar')
compile files('libs/libammsdk.jar')
compile 'com.android.support:design:24.1.1'
compile 'com.android.support:cardview-v7:24.1.1'
compile files('libs/photoview.jar')
}