-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
52 lines (52 loc) · 1.29 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
{
"expo": {
"name": "Nalli",
"privacy": "unlisted",
"platforms": [
"ios",
"android"
],
"version": "1.3.0",
"orientation": "portrait",
"icon": "./src/assets/images/icon.png",
"splash": {
"image": "./src/assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#184fd9"
},
"updates": {
"fallbackToCacheTimeout": 30000,
"checkAutomatically": "ON_ERROR_RECOVERY"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"bundleIdentifier": "fi.heimo.nalli",
"buildNumber": "1.3.0",
"supportsTablet": false,
"infoPlist": {
"NSCameraUsageDescription": "Nalli will use your camera to read QR codes containing Nano addresses or other related information.",
"NSContactsUsageDescription": "Nalli will use your contacts to allow you to send assets to them.",
"NSFaceIDUsageDescription": "Nalli will use Face ID to authenticate the user and confirm transactions"
}
},
"android": {
"package": "fi.heimo.nalli",
"versionCode": 130,
"googleServicesFile": "./google-services.json",
"allowBackup": false,
"softwareKeyboardLayoutMode":"pan",
"permissions": [
"CAMERA",
"READ_CONTACTS",
"USE_BIOMETRIC",
"VIBRATE"
]
},
"androidStatusBar": {
"barStyle": "light-content",
"translucent": true
}
}
}