-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
59 lines (59 loc) · 1.41 KB
/
app.json
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
{
"expo": {
"name": "polifemo",
"slug": "polifemo",
"owner": "polinetwork-org",
"version": "0.2.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/icon.png",
"resizeMode": "contain",
"backgroundColor": "#424966"
},
"updates": {
"fallbackToCacheTimeout": 0,
"url": "https://u.expo.dev/3279e65d-78fe-4db0-9d4f-368a501f4912"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"googleServicesFile": "./config/GoogleService-Info.plist",
"supportsTablet": true,
"bundleIdentifier": "org.polinetwork.polifemo"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/foreground.png",
"backgroundColor": "#424966"
},
"googleServicesFile": "./config/google-services.json",
"package": "org.polinetwork.polifemo",
"softwareKeyboardLayoutMode": "pan"
// "useNextNotificationsApi": true
},
"extra": {
"eas": {
"projectId": "3279e65d-78fe-4db0-9d4f-368a501f4912"
}
},
"runtimeVersion": {
"policy": "sdkVersion"
},
"plugins": [
"@react-native-firebase/app",
[
"expo-build-properties",
{
"ios": {
"useFrameworks": "static"
}
}
],
"expo-localization",
"expo-asset"
]
}
}