forked from realm/realm-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
30 lines (26 loc) · 1.2 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
// Realm projects
include 'realm'
// Example projects
include ':introExample',
':gridViewExample',
':encryptionExample',
':migrationExample',
':adapterExample',
':threadExample',
':jsonExample',
':realmModuleAppExample',
':realmModuleLibraryExample',
':kotlinExample'
project(':introExample').projectDir = file('examples/introExample')
project(':gridViewExample').projectDir = file('examples/gridViewExample')
project(':encryptionExample').projectDir = file('examples/encryptionExample')
project(':migrationExample').projectDir = file('examples/migrationExample')
project(':adapterExample').projectDir = file('examples/adapterExample')
project(':threadExample').projectDir = file('examples/threadExample')
project(':jsonExample').projectDir = file('examples/jsonExample')
project(':realmModuleAppExample').projectDir = file('examples/realmModuleExample/app')
project(':realmModuleLibraryExample').projectDir = file('examples/realmModuleExample/library')
project(':kotlinExample').projectDir = file('examples/kotlinExample')
// Experimental projects
include ':pathExperiment'
project(':pathExperiment').projectDir = file('experimental/pathExperiment')