-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
76 lines (76 loc) · 1.77 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"expo": {
"name": "kku-taxi",
"scheme": "kkutaxi",
"slug": "kku-taxi",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./src/assets/images/icon.png",
"platforms": [
"ios",
"android"
],
"userInterfaceStyle": "automatic",
"splash": {
"image": "./src/assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"notification": {
"icon": "./src/assets/images/icon.png",
"color": "#000000"
},
"ios": {
"buildNumber": "17",
"supportsTablet": true,
"bundleIdentifier": "com.onde.kkutaxi",
"googleServicesFile": "./GoogleService-Info.plist",
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false
}
},
"android": {
"versionCode": 7,
"package": "com.onde.kkutaxi",
"googleServicesFile": "./google-services.json",
"permissions": [],
"adaptiveIcon": {
"foregroundImage": "./src/assets/images/icon.png",
"backgroundColor": "#ffffff"
}
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./src/assets/images/favicon.png"
},
"plugins": [
"expo-font",
"expo-router",
"expo-dev-client",
"expo-notifications",
"expo-splash-screen",
"@react-native-firebase/app",
"@react-native-firebase/app-check",
[
"expo-build-properties",
{
"ios": {
"useFrameworks": "static"
}
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"eas": {
"projectId": "260ef7f5-24f3-49b6-93ad-5632be016ff2"
}
},
"updates": {
"url": "https://u.expo.dev/260ef7f5-24f3-49b6-93ad-5632be016ff2"
}
}
}