-
Notifications
You must be signed in to change notification settings - Fork 39
/
app.json
46 lines (46 loc) · 1.06 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
{
"expo" : {
"name" : "Cryptobullography",
"description" : "The latest Bull on crytpo coins and blockchain tokens.",
"slug" : "bullet",
"privacy" : "public",
"sdkVersion" : "20.0.0",
"version" : "6.1.0",
"orientation" : "portrait",
"primaryColor" : "#000",
"icon" : "./assets/icons/application.png",
"notification" : {
"icon" : "./assets/icons/notification-icon.png",
"color" : "#dcdcdc"
},
"loading" : {
"backgroundColor" : "#333",
"backgroundImage" : "",
"icon" : "./assets/icons/watermark.png",
"hideExponentText" : true
},
"packagerOpts" : {
"assetExts" : ["ttf"]
},
"android": {
"package": "com.webstew.bullet" ,
"versionCode": 5
} ,
"ios" : {
"bundleIdentifier": "com.webstew.bullet" ,
"supportsTablet" : true
} ,
"hooks": {
"postPublish": [
{
"file": "sentry-expo/upload-sourcemaps",
"config": {
"organization": "stuart-pretorius",
"project": "cryptobullography",
"authToken": "ed48dbbf8e374dcdaa813a6850dbf06e5f56835566114b728c4215ecbe7aad03"
}
}
]
}
}
}