-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
44 lines (44 loc) · 1.74 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
{
"expo": {
"name": "Hong Kong Minibus Arrival App",
"slug": "hongkong-minibus-arrival-app",
"platforms": ["ios", "android"],
"version": "0.1.3",
"orientation": "portrait",
"icon": "./assets/appstore-icon.png",
"splash": {
"image": "./assets/appstore-icon.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"userInterfaceStyle": "light",
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"ios": {
"bundleIdentifier": "com.donaldwu.hongkongminibusarrivalapp",
"buildNumber": "0.1.3",
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "Hong Kong Bus Arrival App requires your location so that we can find related bus arrival information for you",
"NSLocationAlwaysUsageDescription": "Hong Kong Bus Arrival App requires your location so that we can find related bus arrival information for you",
"NSLocationAlwaysAndWhenInUseUsageDescription": "Hong Kong Bus Arrival App requires your location so that we can find related bus arrival information for you",
"NSLocationUsageDescription": "Hong Kong Bus Arrival App requires your location so that we can find related bus arrival information for you",
"UIRequiredDeviceCapabilities": ["armv7", "arm64"]
}
},
"android": {
"package": "com.donaldwu.hongkongminibusarrivalapp",
"versionCode": 4,
"permissions": ["ACCESS_COARSE_LOCATION", "ACCESS_FINE_LOCATION"]
},
"description": "Hong Kong Minibus Arrival App",
"privacy": "public",
"githubUrl": "https://github.com/yeukfei02/hongkong-minibus-arrival-app",
"extra": {
"eas": {
"projectId": "e28b2444-4c25-491d-9b65-5888475ad726"
}
}
}
}