-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathapp.json
53 lines (53 loc) · 1.34 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
53
{
"expo": {
"name": "EOSID",
"description": "Open Source EOS Wallet",
"slug": "EOSID",
"privacy": "public",
"sdkVersion": "31.0.0",
"platforms": ["ios", "android"],
"version": "0.1.8",
"orientation": "portrait",
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "cover",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": false,
"bundleIdentifier": "io.gamexcoin.eosid",
"icon": "./assets/images/icon_ios.png"
},
"android": {
"versionCode": 10,
"package": "io.gamexcoin.eosid",
"icon": "./assets/images/icon_android.png",
"intentFilters": [{
"action": "VIEW",
"autoVerify": true,
"data": {
"scheme": "eosid",
"host": "eosid.gamexcoin.io",
"pathPrefix": "/"
},
"category": ["BROWSABLE", "DEFAULT"]
}],
"permissions": ["CAMERA"]
},
"scheme": "eosid",
"hooks": {
"postPublish": [{
"file": "sentry-expo/upload-sourcemaps",
"config": {
"organization": "gamexcoin",
"project": "eosid",
"authToken": "250c6b111a4a4e7f9d5e93291bf866250f4659d8f6fb40608d70c9f1f3efb9ae"
}
}]
}
}
}