forked from r4topunk/mycommunity-app
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathapp.json
More file actions
100 lines (100 loc) · 2.92 KB
/
Copy pathapp.json
File metadata and controls
100 lines (100 loc) · 2.92 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
95
96
97
98
99
100
{
"expo": {
"name": "SkateHive",
"slug": "skatehive-app",
"version": "1.0.2",
"orientation": "portrait",
"icon": "./assets/images/icon-ios.png",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"splash": {
"image": "./assets/images/adaptive-icon.png",
"resizeMode": "contain",
"backgroundColor": "#000000"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.bgrana.skatehive",
"appleTeamId": "JBJ68VAF83",
"buildNumber": "21",
"icon": "./assets/images/icon-ios.png",
"entitlements": {
"com.apple.security.application-groups": [
"group.com.bgrana.skatehive"
]
},
"privacyManifests": {
"NSPrivacyAccessedAPITypes": []
},
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false,
"NSFaceIDUsageDescription": "This app uses Face ID for secure authentication to protect your private keys."
}
},
"android": {
"icon": "./assets/images/icon-android.png",
"adaptiveIcon": {
"foregroundImage": "./assets/images/icon-android.png",
"backgroundColor": "#ffffff"
},
"permissions": [
"android.permission.CAMERA",
"android.permission.RECORD_AUDIO",
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE"
],
"package": "com.skatehive.app",
"versionCode": 2
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"expo-dev-client",
"expo-router",
"expo-secure-store",
"expo-video",
[
"expo-camera",
{
"cameraPermission": "SkateHive needs access to your camera to capture photos and videos of your skateboarding tricks and moments. This media will be uploaded to IPFS and shared on the Hive blockchain as part of your posts."
}
],
[
"expo-media-library",
{
"photosPermission": "SkateHive needs access to your photo library to let you select existing photos and videos for your skateboarding posts. Selected media will be uploaded to IPFS and shared on the Hive blockchain.",
"savePhotosPermission": "SkateHive needs permission to save photos to your library."
}
],
"expo-font",
"expo-web-browser",
[
"expo-location",
{
"locationWhenInUsePermission": "SkateHive uses your location to show skate spots near you on the map."
}
],
"@bacons/apple-targets",
"./plugins/withScriptSandboxDisabled"
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "cb49cb24-702c-4d0c-9747-1d7197c9c4d8"
}
},
"owner": "bgrana"
}
}