12 lines
380 B
Groovy
12 lines
380 B
Groovy
rootProject.name = 'ReactNativeBenchmarks'
|
|
|
|
include ':app'
|
|
|
|
// realm dependency
|
|
include ':realm'
|
|
project(':realm').projectDir = new File(rootProject.projectDir, '../node_modules/realm/android')
|
|
|
|
include ':react-native-sqlite-storage'
|
|
project(':react-native-sqlite-storage').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-sqlite-storage/src/android')
|
|
|