-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
50 lines (50 loc) · 1.73 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
{
"expo": {
"name": "LunchPickerLite",
"slug": "LunchPickerLite",
"platforms": [
"ios",
"android"
],
"version": "1.9.0",
"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.lunchpickerlite",
"buildNumber": "1.9.0",
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "LunchPickerLite requires your location so that we can find related restaurant for you",
"NSLocationAlwaysUsageDescription": "LunchPickerLite requires your location so that we can find related restaurant for you",
"NSLocationAlwaysAndWhenInUseUsageDescription": "LunchPickerLite requires your location so that we can find related restaurant for you",
"NSLocationUsageDescription": "LunchPickerLite requires your location so that we can find related restaurant for you"
}
},
"android": {
"package": "com.donaldwu.lunchpickerlite",
"versionCode": 60,
"permissions": [
"ACCESS_COARSE_LOCATION",
"ACCESS_FINE_LOCATION"
]
},
"description": "If you’re a working software engineer, you’ve probably encountered with one of the toughest questions, where should I have lunch? Lunch picker is the tool you’ll turn to to answer this question.",
"privacy": "public",
"githubUrl": "https://github.com/yeukfei02/lunchPickerReactNative",
"extra": {
"eas": {
"projectId": "49dedab6-31ed-497d-80e0-18f6beaa61a6"
}
}
}
}