mirror of
https://github.com/zhigang1992/react-native-firebase.git
synced 2026-04-20 07:44:39 +08:00
* [database] recreate database branch based off of #2185 * [database] cleanup linting issues * [database] enable tests * [database] add to tests deps
29 lines
637 B
Groovy
Executable File
29 lines
637 B
Groovy
Executable File
rootProject.name = '@react-native-firebase_tests'
|
|
|
|
def firebasePackages = [
|
|
'app',
|
|
'auth',
|
|
'database',
|
|
'analytics',
|
|
'config',
|
|
'crashlytics',
|
|
'functions',
|
|
'fiam',
|
|
'iid',
|
|
'invites',
|
|
'ml-natural-language',
|
|
'storage',
|
|
'perf',
|
|
'utils'
|
|
]
|
|
|
|
firebasePackages.each { firebasePackage ->
|
|
include ":@react-native-firebase_${firebasePackage}"
|
|
project(":@react-native-firebase_${firebasePackage}").projectDir = new File(rootProject.projectDir, "./../../packages/${firebasePackage}/android")
|
|
}
|
|
|
|
include ':jet'
|
|
project(':jet').projectDir = new File(rootProject.projectDir, './../node_modules/jet/android')
|
|
|
|
include ':app'
|