-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
87 lines (87 loc) · 2.32 KB
/
app.json
File metadata and controls
87 lines (87 loc) · 2.32 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
{
"expo": {
"name": "BusTicketApp",
"slug": "BusTicketApp",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/icon.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.link.receiptGenerator",
"infoPlist": {
"LSSupportsOpeningDocumentsInPlace": true,
"UIFileSharingEnabled": true,
"NSDocumentsFolderUsageDescription": "This app needs access to the documents folder to share files"
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#FFFFFF"
},
"package": "com.link.receiptGenerator",
"permissions": [
"INTERNET",
"ACCESS_NETWORK_STATE"
]
},
"plugins": [
[
"expo-build-properties",
{
"android": {
"usesCleartextTraffic": true
}
}
],
[
"@react-native-community/datetimepicker",
{
"androidPackage": "com.reactcommunity.rndatetimepicker"
}
],
[
"react-native-share",
{
"platforms": {
"ios": {
"infoPlist": {
"NSDocumentsFolderUsageDescription": "This app needs access to the documents folder to share files",
"LSSupportsOpeningDocumentsInPlace": true,
"UIFileSharingEnabled": true
}
},
"android": {
"intentFilters": [
{
"action": "android.intent.action.SEND",
"dataType": "application/pdf"
}
]
}
}
}
]
],
"extra": {
"FIREBASE_API_KEY": "@env:FIREBASE_API_KEY",
"FIREBASE_AUTH_DOMAIN": "@env:FIREBASE_AUTH_DOMAIN",
"FIREBASE_PROJECT_ID": "@env:FIREBASE_PROJECT_ID",
"FIREBASE_STORAGE_BUCKET": "@env:FIREBASE_STORAGE_BUCKET",
"FIREBASE_MESSAGING_SENDER_ID": "@env:FIREBASE_MESSAGING_SENDER_ID",
"FIREBASE_APP_ID": "@env:FIREBASE_APP_ID"
}
}
}