-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
60 lines (60 loc) · 1.44 KB
/
app.json
File metadata and controls
60 lines (60 loc) · 1.44 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
{
"expo": {
"name": "Financial AI",
"slug": "FinancialAI",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"scheme": "financialai",
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true,
"infoPlist": {
"UIBackgroundModes": [
"remote-notification"
]
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"predictiveBackGestureEnabled": false,
"softwareKeyboardLayoutMode": "resize",
"package": "com.melihcandemir.financialai",
"permissions": [
"android.permission.INTERNET",
"android.permission.POST_NOTIFICATIONS",
"android.permission.VIBRATE",
"android.permission.RECEIVE_BOOT_COMPLETED"
]
},
"plugins": [
[
"expo-notifications",
{
"icon": "./assets/notification-icon.png",
"color": "#9333EA"
}
],
"@react-native-community/datetimepicker",
"expo-sharing",
"expo-web-browser",
"expo-localization"
],
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"eas": {
"projectId": "03c172e1-0f75-4276-b302-786fb6223d87"
}
}
}
}