generated from expo/expo-template-default
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
87 lines (87 loc) · 2.59 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
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
{
"expo": {
"name": "The Barter App",
"slug": "the-barter-app",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/tba-icon.png",
"scheme": "thebarterapp",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.fathulfahmy.thebarterapp"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/tba-adaptive-icon.png",
"backgroundColor": "#FFFFFF"
},
"softwareKeyboardLayoutMode": "pan",
"package": "com.fathulfahmy.thebarterapp"
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/tba-icon.png"
},
"plugins": [
"expo-router",
"expo-secure-store",
"expo-image-picker",
[
"expo-splash-screen",
{
"image": "./assets/images/tba-splash-icon-alt.png",
"imageWidth": 200,
"resizeMode": "contain",
"backgroundColor": "#005AC2"
}
],
[
"expo-av",
{
"microphonePermission": "$(PRODUCT_NAME) would like to use your microphone for voice recording."
}
],
[
"expo-image-picker",
{
"photosPermission": "$(PRODUCT_NAME) would like to use your device gallery to attach image in a message.",
"cameraPermission": "$(PRODUCT_NAME) would like to use your camera to share image in a message."
}
],
[
"expo-media-library",
{
"photosPermission": "$(PRODUCT_NAME) would like access to your photo gallery to share image in a message.",
"savePhotosPermission": "$(PRODUCT_NAME) would like to save photos to your photo gallery after downloading from a message."
}
],
[
"@stripe/stripe-react-native",
{
"publishableKey": "pk_test_51QVQZFKFuhUJebjtso1bd55eXttJJSsW0lMFlmcCADVTnCsq341zH5MgF2uIEXRWIXVip3qI4COAFFj7ruXP3eFL003gYGIU2f"
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"eas": {
"projectId": "e4abf043-5a9c-433e-9ade-5c99ddd8b7f2"
}
},
"owner": "fathulfahmy",
"updates": {
"url": "https://u.expo.dev/e4abf043-5a9c-433e-9ade-5c99ddd8b7f2"
},
"runtimeVersion": "1.0.0",
"description": "A platform where you can exchange services for other services, cash, or both.",
"githubUrl": "https://github.com/fathulfahmy/the-barter-app",
"backgroundColor": "#fefbff",
"primaryColor": "#005ac2",
"platforms": ["ios", "android"]
}
}