forked from prebid/prebid-mobile-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
28 lines (24 loc) · 1.27 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
include ':PrebidMobile',
':PrebidMobile-core',
':PrebidMobile-gamEventHandlers',
':PrebidMobile-admobAdapters',
':PrebidMobile-maxAdapters',
':test-utils',
':omsdk-android',
// Prebid Demo apps
':PrebidDemoJava',
':PrebidDemoKotlin',
':PrebidInternalTestApp'
// Other
// ':DrPrebid'
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-admobAdapters').projectDir = new File('PrebidMobile/PrebidMobile-admobAdapters')
project(':PrebidMobile-maxAdapters').projectDir = new File('PrebidMobile/PrebidMobile-maxAdapters')
project(':omsdk-android').projectDir = new File('PrebidMobile/omsdk-android')
project(':test-utils').projectDir = new File('PrebidMobile/test-utils')
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')