-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathapp.json
More file actions
46 lines (46 loc) · 1.38 KB
/
app.json
File metadata and controls
46 lines (46 loc) · 1.38 KB
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
{
"expo": {
"name": "Maker - ToDo List",
"slug": "maker",
"description": "Maker is an advanced ToDo mobile application created with React Native and Expo framework. This app working with Android and iOS.",
"githubUrl": "https://github.com/mateuszpijanowski/maker",
"privacy": "public",
"version": "2.6.0",
"ios": {
"buildNumber": "2.6.0",
"bundleIdentifier": "com.webStrong.maker",
"supportsTablet": false,
"usesIcloudStorage": true,
"googleServicesFile": "./firebase/GoogleService-Info.plist",
"infoPlist": {
"NSPhotoLibraryUsageDescription": "We need this for selecting profile avatar.",
"NSCalendarsUsageDescription": "We need this for saving task in system calendar."
}
},
"android": {
"permissions": [
"READ_CALENDAR",
"WRITE_CALENDAR",
"READ_EXTERNAL_STORAGE",
"WRITE_EXTERNAL_STORAGE"
],
"versionCode": 2600,
"package": "com.webStrong.maker",
"playStoreUrl": "https://play.google.com/store/apps/details?id=com.webStrong.maker",
"googleServicesFile": "./firebase/google-services.json"
},
"platforms": ["ios", "android"],
"primaryColor": "#f4511e",
"orientation": "portrait",
"icon": "./src/assets/icon_ios.png",
"splash": {
"image": "./src/assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#f4511e"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"]
}
}