-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathbuild.gradle
More file actions
executable file
·88 lines (79 loc) · 2.91 KB
/
Copy pathbuild.gradle
File metadata and controls
executable file
·88 lines (79 loc) · 2.91 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
apply plugin: 'com.android.application'
apply plugin: 'android-apt'
android {
compileSdkVersion 23
useLibrary 'org.apache.http.legacy' // 因为 sdk23 去掉了 apache
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "net.coding.program"
renderscriptTargetApi 19
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:support-v4:21.0.+'
compile 'com.android.support:appcompat-v7:21.0.+'
compile 'com.skyfishjy.ripplebackground:library:1.0.1'
compile 'com.loopj.android:android-async-http:1.4.6'
// compile 'com.loopj.android:android-async-http:1.9.31'
compile 'com.astuetz:pagerslidingtabstrip:1.0.1'
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.3'
compile 'se.emilsjolander:stickylistheaders:2.7.0'
compile 'de.hdodenhof:circleimageview:1.3.0'
compile 'com.github.rampo.updatechecker:library:2.1.4'
compile 'com.belerweb:pinyin4j:2.5.0'
compile 'com.daimajia.swipelayout:library:1.1.7@aar'
compile 'com.umeng.analytics:analytics:latest.integration'
compile 'com.melnykov:floatingactionbutton:1.1.0'
compile 'pl.droidsonroids.gif:android-gif-drawable:1.1.+'
compile 'com.github.chrisbanes.photoview:library:1.2.3'
compile 'com.android.support:support-v13:21.0.3'
compile 'com.ms-square:etsyblur:0.1.0'
compile 'com.github.lzyzsd:circleprogress:1.1.0@aar'
compile 'com.android.support:cardview-v7:21.+'
compile 'it.neokree:MaterialNavigationDrawer:1.3.2'
compile files('libs/BaiduLBS_Android.jar')
compile 'com.github.chrisbanes.photoview:library:1.2.2'
compile 'com.prolificinteractive:parallaxpager:2.2.0'
compile 'uk.co.chrisjenx:calligraphy:2.0.1'
compile 'com.dlazaro66.qrcodereaderview:qrcodereaderview:1.0.0'
compile 'org.apmem.tools:layouts:1.9@aar'
//flow_layout
compile('cn.trinea.android.view.autoscrollviewpager:android-auto-scroll-view-pager:1.1.2') {
exclude module: 'support-v4'
}
compile 'com.twotoasters.jazzylistview:library:1.2.1'
compile project(':social_sdk_library_project')
}
//################
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.3.+'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
}
}
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
def AAVersion = '3.2'
apt "org.androidannotations:androidannotations:$AAVersion"
compile "org.androidannotations:androidannotations-api:$AAVersion"
}
apt {
arguments {
androidManifestFile variant.outputs[0].processResources.manifestFile
resourcePackageName 'net.coding.program'
}
}