forked from gojek/courier-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
30 lines (29 loc) · 1.22 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
rootProject.name='Courier'
include ':app'
include ':paho'
include ':mqtt-client'
include ':courier'
include ':courier-core'
include ':courier-core-android'
include ':courier-message-adapter-gson'
include ':courier-message-adapter-moshi'
include ':courier-message-adapter-protobuf'
include ':courier-stream-adapter-rxjava'
include ':courier-stream-adapter-rxjava2'
include ':courier-stream-adapter-coroutines'
include ':adaptive-keep-alive'
include ':network-tracker'
include ':chuck-mqtt'
include ':chuck-mqtt-no-ops'
include ':app-state-manager'
include ':courier-auth-http'
include ':mqtt-pingsender'
include ':workmanager-pingsender'
include ':workmanager-2.6.0-pingsender'
include ':alarm-pingsender'
include ':timer-pingsender'
project(':mqtt-pingsender').projectDir = new File(settingsDir, './pingsender/mqtt-pingsender')
project(':workmanager-pingsender').projectDir = new File(settingsDir, './pingsender/workmanager-pingsender')
project(':workmanager-2.6.0-pingsender').projectDir = new File(settingsDir, './pingsender/workmanager-2.6.0-pingsender')
project(':alarm-pingsender').projectDir = new File(settingsDir, './pingsender/alarm-pingsender')
project(':timer-pingsender').projectDir = new File(settingsDir, './pingsender/timer-pingsender')