-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.gradle
More file actions
113 lines (102 loc) · 6.97 KB
/
package.gradle
File metadata and controls
113 lines (102 loc) · 6.97 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
subprojects {
// apply plugin: 'maven'
apply plugin: 'idea'
ext {
dagger_version = "2.32"
dagger_hilt_version = "2.32-alpha"
dagger_depends = [
com_google_dagger_dagger : "com.google.dagger:dagger:${dagger_version}",
com_google_dagger_dagger_android : "com.google.dagger:dagger-android:${dagger_version}",
com_google_dagger_dagger_android_support: "com.google.dagger:dagger-android-support:${dagger_version}",
com_google_dagger_dagger_compiler : "com.google.dagger:dagger-compiler:${dagger_version}",
com_google_dagger_hilt_android : "com.google.dagger:hilt-android:${dagger_hilt_version}",
com_google_dagger_hilt_android_compiler : "com.google.dagger:hilt-android-compiler:${dagger_hilt_version}",
]
depends = [
okhttp3 : 'com.squareup.okhttp3:okhttp:3.8.1',
retrofit2 : 'com.squareup.retrofit2:retrofit:2.2.0',
okhttp3_logging_interceptor: 'com.squareup.okhttp3:logging-interceptor:3.8.0',
gson : 'com.google.code.gson:gson:2.8.0',
retrofit2_converter_gson : 'com.squareup.retrofit2:converter-gson:2.2.0',
fastjson : 'com.alibaba:fastjson:1.2.9',
jetbrains_annotations : 'org.jetbrains:annotations:15.0',
turbodex : 'com.github.asLody:turbodex:1.1.0',
butterknife : 'com.jakewharton:butterknife:10.2.3',
]
depends_android_x = [
// com.android.support:support-annotations
androidx_annotation : 'androidx.annotation:annotation:1.0.0',
// com.android.support:multidex
androidx_multidex : 'androidx.multidex:multidex:2.0.0',
// com.android.support:multidex-instrumentation
androidx_multidex_instrumentation : 'androidx.multidex:multidex-instrumentation:2.0.0',
// com.android.support.constraint:constraint-layout
androidx_constraintlayout_constraintlayout: 'androidx.constraintlayout:constraintlayout:2.0.4',
// com.android.support:support-v4
androidx_legacy_support_v4 : 'androidx.legacy:legacy-support-v4:1.0.0',
// com.android.support:appcompat-v7
androidx_appcompat : 'androidx.appcompat:appcompat:1.0.0',
// com.android.support:recyclerview-v7
androidx_recyclerview : 'androidx.recyclerview:recyclerview:1.0.0',
// com.android.support:support-core-ui
androidx_legacy_support_core_ui : 'androidx.legacy:legacy-support-core-ui:1.0.0',
// com.android.support:support-core-utils
androidx_legacy_support_core_utils : 'androidx.legacy:legacy-support-core-utils:1.0.0',
// com.android.support:cardview-v7
androidx_cardview : 'androidx.cardview:cardview:1.0.0',
// android.arch.lifecycle:common
androidx_lifecycle_common : 'androidx.lifecycle:lifecycle-common:2.0.0',
// android.arch.lifecycle:runtime
androidx_lifecycle_lifecycle_runtime : 'androidx.lifecycle:lifecycle-runtime:2.2.0',
// android.arch.lifecycle:extensions
androidx_lifecycle_lifecycle_extensions : 'androidx.lifecycle:lifecycle-extensions:2.2.0',
// com.android.support:design
com_google_android_material_material : 'com.google.android.material:material:1.2.1',
]
public_repo = [
aliyun : 'http://maven.aliyun.com/nexus/content/groups/public/',
jitpack_io: 'https://jitpack.io',
]
test_depends = [
junit : 'junit:junit:4.12',
mockito_core : 'org.mockito:mockito-core:2.7.22',
robolectric : 'org.robolectric:robolectric:4.4',
robolectric_shadows_framework : 'org.robolectric:shadows-framework:4.4',
robolectric_shadows_multidex : 'org.robolectric:shadows-multidex:4.4',
androidx_test_core : 'androidx.test:core:1.3.0',
// deprecated
robolectric_shadows_support_v4: 'org.robolectric:shadows-support-v4:3.3.2',
easymock : 'org.easymock:easymock:4.2',
powermock_core : 'org.powermock:powermock-core:2.0.9',
powermock_module_junit4 : 'org.powermock:powermock-module-junit4:2.0.9',
powermock_api_easymock : 'org.powermock:powermock-api-easymock:2.0.9',
okhttp3_logging_interceptor : 'com.squareup.okhttp3:logging-interceptor:3.8.0@jar',
]
android_test_depends = [
androidx_test_ext_junit : 'androidx.test.ext:junit:1.1.2',
androidx_test_espresso_espresso_core: 'androidx.test.espresso:espresso-core:3.3.0',
robotium_solo : 'com.jayway.android.robotium:robotium-solo:5.5.4',
uiautomator : 'com.android.support.test.uiautomator:uiautomator-v18:2.1.1',
]
apt_compiler = [
android_lifecycle_compiler: 'android.arch.lifecycle:compiler:1.1.0',
butterknife_compiler : 'com.jakewharton:butterknife-compiler:10.2.3',
]
depends_kotlin = [
kotlin_stdlib_jre7: "org.jetbrains.kotlin:kotlin-stdlib-jre7:1.2.10",
]
depends_old = [
com_android_support_support_annotations: 'com.android.support:support-annotations:27.1.1',
com_android_support_support_core_ui : 'com.android.support:support-core-ui:27.1.1',
com_android_support_support_v4 : 'com.android.support:support-v4:27.1.1',
com_android_support_appcompat_7 : 'com.android.support:appcompat-v7:27.1.1',
com_android_support_recyclerview_v7 : 'com.android.support:recyclerview-v7:27.1.1',
com_android_support_cardview_v7 : 'com.android.support:cardview-v7:27.1.1',
com_android_support_design : 'com.android.support:design:27.1.1',
com_android_support_multidex : 'com.android.support:multidex:1.0.1',
com_android_constraint_layout : 'com.android.support.constraint:constraint-layout:1.1.3',
android_arch_lifecycle_runtime : 'android.arch.lifecycle:runtime:1.1.0',
android_arch_lifecycle_extensions : 'android.arch.lifecycle:extensions:1.1.0',
]
}
}