-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
54 lines (54 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
{
"expo": {
"name": "Singapore Bus Arrival App",
"slug": "singapore-bus-arrival-app",
"platforms": [
"ios",
"android"
],
"version": "0.3.9",
"orientation": "portrait",
"icon": "./assets/appstore-icon.png",
"splash": {
"image": "./assets/appstore-icon.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"bundleIdentifier": "com.donaldwu.singaporebusarrivalapp",
"buildNumber": "0.3.9",
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "Singapore Bus Arrival App requires your location so that we can find related bus arrival information for you",
"NSLocationAlwaysUsageDescription": "Singapore Bus Arrival App requires your location so that we can find related bus arrival information for you",
"NSLocationAlwaysAndWhenInUseUsageDescription": "Singapore Bus Arrival App requires your location so that we can find related bus arrival information for you",
"NSLocationUsageDescription": "Singapore Bus Arrival App requires your location so that we can find related bus arrival information for you",
"UIRequiredDeviceCapabilities": [
"armv7",
"arm64"
]
}
},
"android": {
"package": "com.donaldwu.singaporebusarrivalapp",
"versionCode": 39,
"permissions": [
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION"
]
},
"description": "Singpaore Bus Arrival App",
"privacy": "public",
"githubUrl": "https://github.com/yeukfei02/singapore-bus-arrival-app",
"extra": {
"eas": {
"projectId": "b400aa41-ee93-423b-a30f-575b3e57af81"
}
}
}
}