forked from prebid/prebid-mobile-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
30 lines (24 loc) · 1.24 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
include ':PrebidMobile',
':PrebidMobile-core',
':PrebidMobile-gamEventHandlers',
':PrebidMobile-mopubAdapters',
':omsdk-android',
':PrebidMobile-rendering',
//Prebid Demo apps
':PrebidDemoJava',
':PrebidDemoKotlin',
':PrebidInternalTestApp',
//tools
':DrPrebid',
':TestUtils'
project(':PrebidMobile').projectDir = new File('PrebidMobile')
project(':PrebidMobile-core').projectDir = new File('PrebidMobile/PrebidMobile-core')
project(':PrebidMobile-gamEventHandlers').projectDir = new File('PrebidMobile/PrebidMobile-gamEventHandlers')
project(':PrebidMobile-mopubAdapters').projectDir = new File('PrebidMobile/PrebidMobile-mopubAdapters')
project(':omsdk-android').projectDir = new File('PrebidMobile/omsdk-android')
project(':PrebidMobile-rendering').projectDir = new File('PrebidMobile/PrebidMobile-rendering')
project(':PrebidDemoJava').projectDir = new File('Example/PrebidDemoJava')
project(':PrebidDemoKotlin').projectDir = new File('Example/PrebidDemoKotlin')
project(':PrebidInternalTestApp').projectDir = new File('Example/PrebidInternalTestApp')
project(':DrPrebid').projectDir = new File('tools/drprebid')
project(':TestUtils').projectDir = new File('tools/TestUtils')