-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
84 lines (84 loc) · 2.62 KB
/
app.json
File metadata and controls
84 lines (84 loc) · 2.62 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
{
"expo": {
"name": "LinkCard",
"slug": "linkcard",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"scheme": "linkcard",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#0A0A0A"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"icon": {
"light": "./assets/icon.png",
"dark": "./assets/icon-dark.png",
"tinted": "./assets/icon-tinted.png"
},
"supportsTablet": true,
"bundleIdentifier": "ai.linkcard.app",
"buildNumber": "1",
"config": {
"usesNonExemptEncryption": false
},
"infoPlist": {
"NSCameraUsageDescription": "LinkCard uses the camera to take a profile photo for your business card.",
"NSPhotoLibraryUsageDescription": "LinkCard accesses your photo library to choose a profile photo or banner image.",
"NSContactsUsageDescription": "LinkCard can save contacts from business cards you collect.",
"NSLocationWhenInUseUsageDescription": "LinkCard uses your location to display your city on your business card."
},
"appleTeamId": "WVH35SR4MA"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#0A0A0A"
},
"package": "ai.linkcard.app",
"permissions": [
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.READ_MEDIA_VISUAL_USER_SELECTED",
"android.permission.READ_MEDIA_IMAGES",
"android.permission.READ_MEDIA_VIDEO",
"android.permission.READ_MEDIA_AUDIO",
"android.permission.RECEIVE_BOOT_COMPLETED",
"android.permission.WAKE_LOCK",
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION"
]
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/favicon.png"
},
"plugins": [
"expo-router",
"expo-secure-store",
[
"expo-media-library",
{
"photosPermission": "Allow LinkCard to save your business card to your photo library.",
"savePhotosPermission": "Allow LinkCard to save your business card to your photo library."
}
],
"expo-font",
[
"expo-location",
{
"locationWhenInUsePermission": "LinkCard uses your location to display your city on your business card."
}
]
],
"experiments": {
"typedRoutes": true
}
}
}