-
Notifications
You must be signed in to change notification settings - Fork 8
/
app.json
44 lines (43 loc) · 1.22 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": {
"scheme": "cattuong",
"name": "Cat Tuong",
"slug": "e-commerce-app",
"platforms": ["ios", "android"],
"version": "1.0.1",
"orientation": "portrait",
"icon": "./src/assets/icon.png",
"splash": {
"image": "./src/assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["./src/assets/**/*"],
"ios": {
"bundleIdentifier": "com.cattuong.ecommerce",
"buildNumber": "1.0.1",
"supportsTablet": true,
"infoPlist": {
"NSFaceIDUsageDescription": "We'll use Face ID or Touch ID to secure your login.",
"NSCameraUsageDescription": "This app uses the camera to upload user profile picture"
}
},
"android": {
"package": "com.cattuong.ecommerce",
"versionCode": 2,
"useNextNotificationsApi": true,
"permissions": [
"CAMERA",
"WRITE_EXTERNAL_STORAGE",
"USE_BIOMETRIC",
"USE_FINGERPRINT"
],
"softwareKeyboardLayoutMode": "pan"
},
"notification": { "icon": "./src/assets/icon.png" },
"description": "E-commerce app contains all necessary features"
}
}