2017-08-03 18:23:43 +00:00
|
|
|
rootProject.name = 'RocketChatRN'
|
2019-09-26 14:59:27 +00:00
|
|
|
include ':@react-native-community_viewpager'
|
|
|
|
project(':@react-native-community_viewpager').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-community/viewpager/android')
|
2020-10-13 12:41:03 +00:00
|
|
|
include ':@react-native-firebase_app'
|
|
|
|
project(':@react-native-firebase_app').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-firebase/app/android')
|
|
|
|
include ':@react-native-firebase_analytics'
|
|
|
|
project(':@react-native-firebase_analytics').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-firebase/analytics/android')
|
|
|
|
include ':@react-native-firebase_crashlytics'
|
|
|
|
project(':@react-native-firebase_crashlytics').projectDir = new File(rootProject.projectDir, '../node_modules/@react-native-firebase/crashlytics/android')
|
2019-08-07 13:51:34 +00:00
|
|
|
apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings)
|
|
|
|
include ':app'
|
2022-08-08 21:02:08 +00:00
|
|
|
|
|
|
|
includeBuild('../node_modules/react-native-gradle-plugin')
|
2023-08-18 17:48:33 +00:00
|
|
|
if (settings.hasProperty("newArchEnabled") && settings.newArchEnabled == "true") {
|
|
|
|
include(":ReactAndroid")
|
|
|
|
project(":ReactAndroid").projectDir = file('../node_modules/react-native/ReactAndroid')
|
2022-08-08 21:02:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
apply from: new File(["node", "--print", "require.resolve('expo/package.json')"].execute(null, rootDir).text.trim(), "../scripts/autolinking.gradle")
|
|
|
|
useExpoModules()
|