-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathsettings.gradle
More file actions
109 lines (96 loc) · 4.84 KB
/
settings.gradle
File metadata and controls
109 lines (96 loc) · 4.84 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
includeBase()
includeApp()
includeSharePlatform()
includeComponent()
includeLib()
includePlugin()
def includeBase() {
include ':common_res',
':common'
project(':common').projectDir = new File(rootDir, 'library_base/common')
project(':common_res').projectDir = new File(rootDir, 'library_base/common_res')
}
def includeApp() {
include ':acfun',
':component_acfunmine',
':component_acfunarticle',
':component_acfundynamic',
':component_acfunvideo',
':component_gamecenter'
}
def includeSharePlatform() {
include ':baseplatformlibrary',
':alipayplatformlibrary',
':wechatplatformlibrary',
':qqplatformlibrary',
':weiboplatformlibrary',
':weiboplatformlibrary'
project(':baseplatformlibrary').projectDir = new File(rootDir, 'library_platform/baseplatformlibrary')
project(':alipayplatformlibrary').projectDir = new File(rootDir, 'library_platform/alipayplatformlibrary')
project(':wechatplatformlibrary').projectDir = new File(rootDir, 'library_platform/wechatplatformlibrary')
project(':qqplatformlibrary').projectDir = new File(rootDir, 'library_platform/qqplatformlibrary')
project(':weiboplatformlibrary').projectDir = new File(rootDir, 'library_platform/weiboplatformlibrary')
}
def includeComponent() {
include ':component_stateview',
':component_banner',
':component_developer',
':component_dynamicsoreview',
':component_bankcard',
// ':component_filter',
':component_skeleton',
// ':component_jsbridge',
// ':component_multiimageview',
// ':component_gridpasswordview',
// ':component_pickerview',
':component_bar',
':component_titlebar',
':component_qrcodescanner',
':component_ping',
':component_aggregation',
':component_dialog',
':component_httpdns',
':component_host'
project(':component_bankcard').projectDir = new File(rootDir, 'library/component_bankcard')
project(':component_banner').projectDir = new File(rootDir, 'library/component_banner')
project(':component_bar').projectDir = new File(rootDir, 'library/component_bar')
project(':component_dialog').projectDir = new File(rootDir, 'library/component_dialog')
project(':component_dynamicsoreview').projectDir = new File(rootDir, 'library/component_dynamicsoreview')
project(':component_ping').projectDir = new File(rootDir, 'library/component_ping')
project(':component_skeleton').projectDir = new File(rootDir, 'library/component_skeleton')
project(':component_stateview').projectDir = new File(rootDir, 'library/component_stateview')
project(':component_aggregation').projectDir = new File(rootDir, 'library/component_aggregation')
project(':component_titlebar').projectDir = new File(rootDir, 'library/component_titlebar')
}
def includeLib() {
include ':studydemo',
':bottom-navigation-bar',
':gsyVideoPlayer',
':gsyVideoPlayer-armv5',
':gsyVideoPlayer-armv7a',
':gsyVideoPlayer-armv64',
':gsyVideoPlayer-base',
':gsyVideoPlayer-ex_so',
':gsyVideoPlayer-exo_player2',
':gsyVideoPlayer-java',
':gsyVideoPlayer-proxy_cache',
':gsyVideoPlayer-x86',
':gsyVideoPlayer-x86_64'
project(':bottom-navigation-bar').projectDir = new File(rootDir, 'library/bottom-navigation-bar')
project(':studydemo').projectDir = new File(rootDir, 'library/studydemo')
project(':gsyVideoPlayer').projectDir = new File(rootDir, 'library_player/gsyVideoPlayer')
project(':gsyVideoPlayer-armv5').projectDir = new File(rootDir, 'library_player/gsyVideoPlayer-armv5')
project(':gsyVideoPlayer-armv7a').projectDir = new File(rootDir, 'library_player/gsyVideoPlayer-armv7a')
project(':gsyVideoPlayer-armv64').projectDir = new File(rootDir, 'library_player/gsyVideoPlayer-armv64')
project(':gsyVideoPlayer-base').projectDir = new File(rootDir, 'library_player/gsyVideoPlayer-base')
project(':gsyVideoPlayer-ex_so').projectDir = new File(rootDir, 'library_player/gsyVideoPlayer-ex_so')
project(':gsyVideoPlayer-exo_player2').projectDir = new File(rootDir, 'library_player/gsyVideoPlayer-exo_player2')
project(':gsyVideoPlayer-java').projectDir = new File(rootDir, 'library_player/gsyVideoPlayer-java')
project(':gsyVideoPlayer-proxy_cache').projectDir = new File(rootDir, 'library_player/gsyVideoPlayer-proxy_cache')
project(':gsyVideoPlayer-x86').projectDir = new File(rootDir, 'library_player/gsyVideoPlayer-x86')
project(':gsyVideoPlayer-x86_64').projectDir = new File(rootDir, 'library_player/gsyVideoPlayer-x86_64')
}
def includePlugin() {
include ':plugin-view',
':plugin_qrcodescanner'
}