This repository was archived by the owner on May 3, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
94 lines (94 loc) · 2.53 KB
/
Copy pathapp.json
File metadata and controls
94 lines (94 loc) · 2.53 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"expo": {
"name": "ForkIt!",
"slug": "forkit",
"version": "4.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "dark",
"scheme": "forkit",
"newArchEnabled": true,
"description": "Fork indecision. Random restaurant picker — just tap and we'll choose for you.",
"privacy": "https://CherrelleTucker.github.io/forkit/privacy.html",
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#0B0B0F"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.ctuckersolutions.forkit",
"buildNumber": "39",
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "ForkIt needs your location to find nearby restaurants and help you decide where to eat.",
"CFBundleAllowMixedLocalizations": true,
"ITSAppUsesNonExemptEncryption": false
},
"associatedDomains": ["applinks:forkit-web.vercel.app"]
},
"android": {
"package": "com.forkit.app",
"versionCode": 38,
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#0B0B0F"
},
"permissions": [
"ACCESS_FINE_LOCATION",
"ACCESS_COARSE_LOCATION",
"INTERNET",
"com.android.vending.BILLING"
],
"edgeToEdgeEnabled": true,
"intentFilters": [
{
"action": "VIEW",
"autoVerify": true,
"data": [
{
"scheme": "https",
"host": "forkit-web.vercel.app",
"pathPrefix": "/group"
}
],
"category": ["BROWSABLE", "DEFAULT"]
}
]
},
"web": {
"favicon": "./assets/favicon.png",
"bundler": "metro"
},
"plugins": [
[
"expo-location",
{
"locationWhenInUsePermission": "ForkIt needs your location to find nearby restaurants and help you decide where to eat."
}
],
[
"@sentry/react-native/expo",
{
"url": "https://sentry.io/",
"organization": "ctuckersolutions",
"project": "react-native"
}
],
"expo-font",
"expo-sharing",
"react-native-iap"
],
"extra": {
"eas": {
"projectId": "0abe90d5-587c-4918-ad8b-7d472c687ace"
}
},
"owner": "cjtucker",
"runtimeVersion": {
"policy": "appVersion"
},
"updates": {
"url": "https://u.expo.dev/0abe90d5-587c-4918-ad8b-7d472c687ace"
}
}
}