Add scheme protocol and adjust colors
This commit is contained in:
parent
c37cf671ff
commit
22093e089c
1 changed files with 7 additions and 4 deletions
11
app.json
11
app.json
|
@ -7,25 +7,28 @@
|
|||
"icon": "./assets/icon.png",
|
||||
"githubUrl": "https://sudovanilla.com/code/Korbs/Penpot-App/",
|
||||
"userInterfaceStyle": "automatic",
|
||||
"scheme": "penpot",
|
||||
"orientation": "landscape",
|
||||
"jsEngine": "hermes",
|
||||
"platforms": [
|
||||
"android"
|
||||
"android",
|
||||
"ios"
|
||||
],
|
||||
"splash": {
|
||||
"image": "./assets/splash.png",
|
||||
"resizeMode": "contain",
|
||||
"backgroundColor": "#FFF"
|
||||
"backgroundColor": "#202020"
|
||||
},
|
||||
"ios": {
|
||||
"jsEngine": "jsc",
|
||||
"supportsTablet": true,
|
||||
"isTabletOnly": true
|
||||
"isTabletOnly": true,
|
||||
"bundleIdentifier": "com.sudovanilla.penpotapp"
|
||||
},
|
||||
"android": {
|
||||
"adaptiveIcon": {
|
||||
"foregroundImage": "./assets/adaptive-icon.png",
|
||||
"backgroundColor": "#FFF"
|
||||
"backgroundColor": "#202020"
|
||||
},
|
||||
"package": "com.sudovanilla.penpotapp"
|
||||
},
|
||||
|
|
Reference in a new issue