forked from cbedroid/Uber-Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
45 lines (44 loc) · 1.17 KB
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"expo": {
"name": "uber-clone",
"slug": "uber-clone",
"owner": "cbedroid",
"version": "1.0.0",
"githubUrl": "https://github.com/cbedroid/Uber-clone",
"description": "Uber passenger app clone built using React Native and expo.",
"orientation": "portrait",
"icon": "./src/assets/app_icon.png",
"splash": {
"image": "./src/assets/app_splash.png",
"resizeMode": "contain",
"backgroundColor": "#000000"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"googleServicesFile": "ios/uberclone.xcodeproj/GoogleService-Info.plist",
"supportsTablet": true,
"bundleIdentifier": "y"
},
"android": {
"googleServicesFile": "android/app/google-services.json",
"adaptiveIcon": {
"foregroundImage": "./src/assets/adaptive-icon.png",
"backgroundColor": "#000000"
},
"package": "com.uber_clone_android"
},
"web": {
"favicon": "./src/assets/favicon.png"
},
"plugins": [
"@react-native-firebase/app",
"@react-native-firebase/perf",
"@react-native-firebase/crashlytics"
]
}
}