-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
72 lines (72 loc) · 2.04 KB
/
app.json
File metadata and controls
72 lines (72 loc) · 2.04 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
{
"expo": {
"name": "Repromptt",
"slug": "repromptt",
"version": "1.0.0",
"orientation": "default",
"icon": "./assets/images/icon.png",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.repromptt.repromptt",
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false,
"NSContactsUsageDescription": "This app may request access to your contacts due to third-party features. We do not store or misuse your data.",
"NSCameraUsageDescription": "This app uses the camera to take photos.",
"NSMicrophoneUsageDescription": "This app uses the microphone for voice features.",
"NSLocationWhenInUseUsageDescription": "This app uses location to enhance your experience."
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.repromptt.repromptt",
"permissions": ["com.android.vending.BILLING"]
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/icon.png"
},
"plugins": [
"expo-router",
[
"expo-splash-screen",
{
"image": "./assets/images/splash.png",
"resizeMode": "cover"
}
],
[
"expo-font",
{
"fonts": [
"./assets/fonts/Rubik-Bold.ttf",
"./assets/fonts/Rubik-ExtraBold.ttf",
"./assets/fonts/Rubik-Light.ttf",
"./assets/fonts/Rubik-Medium.ttf",
"./assets/fonts/Rubik-Regular.ttf",
"./assets/fonts/Rubik-SemiBold.ttf"
]
}
],
"./plugins/withRevenueCat",
"./plugins/withEdgeToEdge",
"./withFoldableSupport.js"
],
"experiments": {
"typedRoutes": true
},
"extra": {
"eas": {
"projectId": "2b0a7836-90e3-4bbc-a431-8a7310bd3fdf"
},
"router": {}
},
"owner": "repromptt"
}
}