forked from yanzhenjie/AndServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.gradle
29 lines (24 loc) · 854 Bytes
/
config.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
ext {
plugin = [
library : 'com.android.library',
application: 'com.android.application',
maven : 'com.github.dcendents.android-maven',
bintray : 'com.jfrog.bintray'
]
android = [
applicationId : "com.yanzhenjie.andserver.sample",
compileSdkVersion: 25,
buildToolsVersion: "25.0.2",
minSdkVersion : 14,
targetSdkVersion : 22,
versionCode : 11,
versionName : "1.1",
jackOptions : true
]
dependencies = [
andserver: 'com.yanzhenjie:andserver:1.0.2',
appCompat: 'com.android.support:appcompat-v7:25.2.0',
design : 'com.android.support:design:25.2.0',
nohttp : 'com.yanzhenjie.nohttp:nohttp:1.1.1'
]
}