-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsettings.gradle
82 lines (81 loc) · 2.77 KB
/
settings.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
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
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
mavenLocal()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
maven { url "https://repo.sendbird.com/public/maven" }
mavenLocal()
}
}
rootProject.name = "Sendbird Chat"
include ':openchannel-basic'
include ':openchannel-delete-message'
include ':openchannel-user-online'
include ':openchannel-update-message'
include ':openchannel-mention-user'
include ':openchannel-copy-message'
include ':openchannel-report-message-user-channel'
include ':openchannel-admin-message'
include ':openchannel-nickname'
include ':openchannel-ogt'
include ':openchannel-extra-data'
include ':openchannel-profile-image'
include ':openchannel-freeze-unfreeze'
include ':openchannel-thumbnails'
include ':openchannel-dnd-snooze'
include ':openchannel-metadata-metacounter'
include ':openchannel-categorize-channels'
include ':openchannel-categorize-messages'
include ':openchannel-send-receive-files'
include ':openchannel-structured-data'
include ':openchannel-threading'
include ':openchannel-friends'
include ':groupchannel-basic'
include ':groupchannel-hide-archive'
include ':groupchannel-profile-image'
include ':groupchannel-typingindicator'
include ':groupchannel-readmessage'
include ':groupchannel-nickname'
include ':groupchannel-unreceivedmessage'
include ':groupchannel-unreadmessages'
include ':groupchannel-onlinemembers'
include ':groupchannel-membersandoperators'
include ':groupchannel-banned-and-muted-users'
include ':groupchannel-user-online'
include ':groupchannel-mention-members'
include ':groupchannel-add-remove-operators'
include ':groupchannel-report-user-message-channel'
include ':groupchannel-freeze-unfreeze'
include ':groupchannel-mute-user'
include ':groupchannel-admin-message'
include ':groupchannel-ban-unban-user'
include ':groupchannel-mark-message-read'
include ':groupchannel-push-notifications'
include ':groupchannel-operators'
include ':groupchannel-update-message-operator'
include ':groupchannel-file-progress-cancel'
include ':groupchannel-ogt'
include ':groupchannel-categorize-channels'
include ':groupchannel-categorize-message'
include ':groupchannel-local-caching'
include ':groupchannel-push-translations'
include ':groupchannel-encryptedfiles'
include ':groupchannel-friends'
include ':groupchannel-dnd-snooze'
include ':groupchannel-threading'
include ':groupchannel-reactions'
include ':groupchannel-type'
include ':groupchannel-scheduled-message'
include ':groupchannel-polls'
include ':groupchannel-pinnedmessage'
include ':commonmodule'
include ':groupchannel-local-caching-ktx'