mirror of
https://github.com/zhigang1992/react-native-firebase.git
synced 2026-04-18 12:12:23 +08:00
- Implement ML-Kit Natural Language (#2117) - Includes additional refactor changes across other modules for internals api reworking
28 lines
623 B
Groovy
Executable File
28 lines
623 B
Groovy
Executable File
rootProject.name = '@react-native-firebase_tests'
|
|
|
|
def firebasePackages = [
|
|
'app',
|
|
'auth',
|
|
'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'
|