mirror of https://github.com/tooot-app/app
16 lines
682 B
Groovy
16 lines
682 B
Groovy
rootProject.name = 'tooot'
|
|
|
|
apply from: new File(["node", "--print", "require.resolve('expo/package.json')"].execute().text.trim(), "../scripts/autolinking.gradle");
|
|
useExpoModules()
|
|
|
|
apply from: new File(["node", "--print", "require.resolve('@react-native-community/cli-platform-android/package.json')"].execute().text.trim(), "../native_modules.gradle");
|
|
applyNativeModulesSettingsGradle(settings)
|
|
|
|
include ':app'
|
|
|
|
includeBuild('../node_modules/react-native-gradle-plugin')
|
|
if (settings.hasProperty("newArchEnabled") && settings.newArchEnabled == "true") {
|
|
include(":ReactAndroid")
|
|
project(":ReactAndroid").projectDir = file('../node_modules/react-native/ReactAndroid')
|
|
}
|