mirror of
https://github.com/tooot-app/app
synced 2024-12-22 07:34:06 +01:00
11 lines
600 B
Groovy
11 lines
600 B
Groovy
rootProject.name = 'tooot'
|
|
|
|
apply from: new File(["node", "--print", "require.resolve('expo/package.json')"].execute(null, rootDir).text.trim(), "../scripts/autolinking.gradle");
|
|
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");
|
|
applyNativeModulesSettingsGradle(settings)
|
|
|
|
include ':app'
|
|
includeBuild(new File(["node", "--print", "require.resolve('@react-native/gradle-plugin/package.json')"].execute(null, rootDir).text.trim()).getParentFile())
|