forked from realm/realm-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
25 lines (20 loc) · 904 Bytes
/
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
// Realm projects
include 'realm'
// Example projects
include ':introExample',
':gridViewExample',
':encryptionExample',
':migrationExample',
':adapterExample',
':threadExample',
':jsonExample'
project(':introExample').projectDir = new File('examples/introExample')
project(':gridViewExample').projectDir = new File('examples/gridViewExample')
project(':encryptionExample').projectDir = new File('examples/encryptionExample')
project(':migrationExample').projectDir = new File('examples/migrationExample')
project(':adapterExample').projectDir = new File('examples/adapterExample')
project(':threadExample').projectDir = new File('examples/threadExample')
project(':jsonExample').projectDir = new File('examples/jsonExample')
// Experimental projects
include ':pathExperiment'
project(':pathExperiment').projectDir = new File('experimental/pathExperiment')