-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
56 lines (56 loc) · 1.26 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
{
"expo": {
"android": {
"jsEngine": "hermes",
"versionCode": 21,
"softwareKeyboardLayoutMode": "pan",
"googleServicesFile": "./google-services.json"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"buildNumber": "21",
"config": {
"usesNonExemptEncryption": false
},
"googleServicesFile": "./GoogleService-Info.plist",
"jsEngine": "hermes",
"usesAppleSignIn": true,
"supportsTablet": true
},
"name": "BACA",
"orientation": "portrait",
"owner": "binarapps",
"slug": "expo-typescript-template",
"splash": {
"backgroundColor": "#ffffff",
"image": "./assets/splash.png",
"resizeMode": "cover"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"userInterfaceStyle": "automatic",
"version": "2.4.0",
"plugins": [
"@react-native-google-signin/google-signin",
"expo-asset",
"expo-apple-authentication",
"expo-font",
"expo-localization",
"expo-secure-store",
"expo-router",
[
"expo-build-properties",
{
"ios": {
"useFrameworks": "static"
}
}
]
],
"web": {
"output": "single",
"bundler": "metro"
}
}
}