forked from Jusenr/androidtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.gradle
51 lines (41 loc) · 2.24 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
ext {
APP_LOG_TAG = "jusenr_tools_log"//App print log tag
VERSION_NUM = 0 //Small version number used for internal testing
plugins = [
application: "com.android.application",
library : "com.android.library",
maven : "com.github.dcendents.android-maven",
bintray : "com.jfrog.bintray",
]
androids = [
compileSdkVersion : 26,
buildToolsVersion : "26.0.1",
minSdkVersion : 15,
targetSdkVersion : 26,
applicationId : "com.jusenr.tools",
manifestPlaceholders: [UMENG_APPKEY_VALUE: "59a1173a7f2c747ef20009a3",
APP_ID : "6666"],
]
versions = [
junitVersion : "4.12",
debugDbVersion : "1.0.0",
leakcanaryVersion : "1.5.1",
androidtoolsVersion : PROJ_VERSIONNAME,
constraintVersion : "1.0.2",
androidSupportVersion: "26.+",
gsonVersion : "2.4",
]
dependencies = [
junit : "junit:junit:${versions["junitVersion"]}",
debug_db : "com.amitshekhar.android:debug-db:${versions["debugDbVersion"]}",
leakcanary_android : "com.squareup.leakcanary:leakcanary-android:${versions["leakcanaryVersion"]}",
leakcanary_android_no_op: "com.squareup.leakcanary:leakcanary-android-no-op:${versions["leakcanaryVersion"]}",
// androidtools : "com.github.Jusenr:androidtools:${versions["androidtoolsVersion"]}",
androidtools : "com.jusenr.android.library:androidtools:${versions["androidtoolsVersion"]}",
constraint_layout : "com.android.support.constraint:constraint-layout:${versions["constraintVersion"]}",
appcompat_v7 : "com.android.support:appcompat-v7:${versions["androidSupportVersion"]}",
cardview_v7 : "com.android.support:cardview-v7:${versions["androidSupportVersion"]}",
gson : "com.google.code.gson:gson:${versions["gsonVersion"]}",
analytics : "com.umeng.analytics:analytics:latest.integration",
]
}