-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
146 lines (146 loc) · 5.41 KB
/
app.json
File metadata and controls
146 lines (146 loc) · 5.41 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
{
"expo": {
"extra": {
"supportsRTL": true,
"router": {
"origin": false
},
"eas": {
"projectId": "d7241880-746c-4c73-9b54-56ce4a0861f1"
}
},
"name": "nedaa",
"slug": "nedaa",
"version": "2.9.1",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"ios": {
"privacyManifests": {
"NSPrivacyCollectedDataTypes": [
{
"NSPrivacyCollectedDataType": "NSPrivacyCollectedDataTypeCrashData",
"NSPrivacyCollectedDataTypeLinked": false,
"NSPrivacyCollectedDataTypeTracking": false,
"NSPrivacyCollectedDataTypePurposes": [
"NSPrivacyCollectedDataTypePurposeAppFunctionality"
]
},
{
"NSPrivacyCollectedDataType": "NSPrivacyCollectedDataTypePerformanceData",
"NSPrivacyCollectedDataTypeLinked": false,
"NSPrivacyCollectedDataTypeTracking": false,
"NSPrivacyCollectedDataTypePurposes": [
"NSPrivacyCollectedDataTypePurposeAppFunctionality"
]
},
{
"NSPrivacyCollectedDataType": "NSPrivacyCollectedDataTypeOtherDiagnosticData",
"NSPrivacyCollectedDataTypeLinked": false,
"NSPrivacyCollectedDataTypeTracking": false,
"NSPrivacyCollectedDataTypePurposes": [
"NSPrivacyCollectedDataTypePurposeAppFunctionality"
]
}
],
"NSPrivacyAccessedAPITypes": [
{
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategoryUserDefaults",
"NSPrivacyAccessedAPITypeReasons": ["CA92.1"]
},
{
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategorySystemBootTime",
"NSPrivacyAccessedAPITypeReasons": ["35F9.1"]
},
{
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategoryFileTimestamp",
"NSPrivacyAccessedAPITypeReasons": ["C617.1"]
}
]
},
"supportsTablet": false,
"bundleIdentifier": "dev.nedaa.app",
"entitlements": {
"com.apple.security.application-groups": ["group.dev.nedaa.app"]
},
"infoPlist": {
"CFBundleDisplayName": "Nedaa",
"ITSAppUsesNonExemptEncryption": false,
"NSMicrophoneUsageDescription": "This app does not require microphone access.",
"NSLocationWhenInUseUsageDescription": "This app uses your location to provide accurate prayer times and reminders based on your current location. Your location data will be used only while you are using the app and will not be shared with any third parties.",
"NSLocationAlwaysAndWhenInUseUsageDescription": "This app uses your location to provide accurate prayer times and reminders based on your current location. Your location data will be used while you are using the app and may also be used in the background to send you notifications about upcoming prayers. Your location data will not be shared with any third parties.",
"NSLocationAlwaysUsageDescription": "This app uses your location to provide accurate prayer times and reminders based on your current location. Your location data will be used only for this purpose and will not be shared with any third parties.",
"UIBackgroundModes": ["audio", "fetch", "remote-notification"],
"BGTaskSchedulerPermittedIdentifiers": [
"dev.nedaa.app.background-refresh",
"dev.nedaa.app.alarmWake"
]
},
"icon": {
"light": "./assets/images/ios-light.png",
"dark": "./assets/images/ios-dark.png"
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"monochromeImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "dev.nedaa.android",
"blockedPermissions": ["ACTIVITY_RECOGNITION", "RECORD_AUDIO"],
"permissions": ["READ_MEDIA_AUDIO", "READ_EXTERNAL_STORAGE"]
},
"plugins": [
"expo-router",
"expo-localization",
[
"@sentry/react-native/expo",
{
"url": "https://sentry.io/",
"project": "nedaa",
"organization": "nedaa"
}
],
[
"expo-location",
{
"locationWhenInUsePermission": "This app uses your location to provide accurate prayer times and reminders based on your current location. Your location data will be used only while you are using the app and will not be shared with any third parties.",
"isAndroidForegroundServiceEnabled": false
}
],
"expo-sqlite",
[
"expo-splash-screen",
{
"image": "./assets/images/splash-icon.png",
"dark": {
"image": "./assets/images/splash-icon-dark.png"
},
"imageWidth": 200
}
],
[
"expo-notifications",
{
"icon": "./assets/images/android-notification-icon.png",
"color": "#ffffff",
"mode": "production"
}
],
"expo-font",
"react-native-email-link",
"expo-web-browser",
"expo-asset",
"@sentry/react-native",
"expo-background-task",
"@react-native-community/datetimepicker"
],
"experiments": {
"typedRoutes": true,
"reactCompiler": true
},
"owner": "nedaadev"
}
}