2024-01-26 12:06:11 -07:00
|
|
|
rootProject.name = 'Railbird'
|
2023-12-28 17:18:54 -07:00
|
|
|
|
|
|
|
apply from: new File(["node", "--print", "require.resolve('expo/package.json')"].execute(null, rootDir).text.trim(), "../scripts/autolinking.gradle");
|
2024-01-31 22:45:00 -07:00
|
|
|
|
2024-01-31 23:39:55 -07:00
|
|
|
apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle");
|
|
|
|
|
2023-12-28 17:18:54 -07:00
|
|
|
useExpoModules()
|
|
|
|
|
|
|
|
apply from: new File(["node", "--print", "require.resolve('@react-native-community/cli-platform-android/package.json')"].execute(null, rootDir).text.trim(), "../native_modules.gradle");
|
2024-01-31 22:45:00 -07:00
|
|
|
|
2023-12-28 17:18:54 -07:00
|
|
|
applyNativeModulesSettingsGradle(settings)
|
|
|
|
|
2024-01-31 22:45:00 -07:00
|
|
|
include ':react-native-vision-camera'
|
|
|
|
project(':react-native-vision-camera').projectDir = new File(rootProject.projectDir, '../react-native-vision-camera/package/android')
|
2024-01-31 23:39:55 -07:00
|
|
|
|
|
|
|
include ':app'
|
|
|
|
includeBuild(new File(["node", "--print", "require.resolve('@react-native/gradle-plugin/package.json')"].execute(null, rootDir).text.trim()).getParentFile())
|