-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
48 lines (48 loc) · 1.19 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
{
"expo": {
"name": "TamoTam",
"slug": "TamoTam",
"version": "0.9.5",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/images/icon.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"buildNumber": "0.9.5",
"googleServicesFile": "./GoogleService-Info.plist",
"bundleIdentifier": "com.tamotam.application"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/icon.png",
"backgroundColor": "#ffffff"
},
"googleServicesFile": "./google-services.json",
"package": "com.tamotam.application",
"versionCode": 95
},
"web": {
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"@react-native-firebase/app",
"@react-native-firebase/crashlytics",
"@react-native-firebase/perf"
],
"extra": {
"eas": {
"projectId": "7f793288-3c1f-458c-9255-c77e8ed3bd90"
}
}
}
}