-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathsettings.gradle
24 lines (18 loc) · 1.06 KB
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
include ':react-native-shared-element'
project(':react-native-shared-element').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-shared-element/android')
// React Native Colo Loco autolinks native files colocated next to your JS files
// More info here: https://github.com/jamonholmgren/react-native-colo-loco
// apply from: '../node_modules/react-native-colo-loco/scripts/android.groovy'
// linkColocatedNativeFiles([
// appName: "Photos",
// appPath: "../app",
// appPackageName: "land.fx.fotos",
// androidPath: "./android/app/src/main/java/land/fx/fotos"
// ])
rootProject.name = 'fotos'
// 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')