-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
42 lines (42 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
{
"expo": {
"name": "meh-AH!",
"description": "meh-AH is the IPA phonetic transcription of the Hebrew word for the number 100. With the COVID-19 pandemic outbreak, Israel's Ministry of Health issued emergency instructions, among which is the prohibition of leaving home for a distance of more than 100 meters, if not for the resupplying of food and medication. In light of this situation I have built an app that can help people measure the distance from home, and get an alert when ecceeding that distance.",
"slug": "mehAH",
"privacy": "public",
"sdkVersion": "36.0.0",
"platforms": [
"ios",
"android"
],
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/meh-icon-1024.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"assets/**/*"
],
"ios": {
"buildNumber": "1.1.0",
"supportsTablet": false
},
"android": {
"versionCode": 1,
"permissions": [
"ACCESS_FINE_LOCATION"
],
"config": {
"googleMaps": {
"apiKey": "REPLACE_WITH_REAL_KEY"
}
}
}
}
}