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",
|
"icon": "./assets/icon.png",
|
||||||
"githubUrl": "https://sudovanilla.com/code/Korbs/Penpot-App/",
|
"githubUrl": "https://sudovanilla.com/code/Korbs/Penpot-App/",
|
||||||
"userInterfaceStyle": "automatic",
|
"userInterfaceStyle": "automatic",
|
||||||
|
"scheme": "penpot",
|
||||||
"orientation": "landscape",
|
"orientation": "landscape",
|
||||||
"jsEngine": "hermes",
|
"jsEngine": "hermes",
|
||||||
"platforms": [
|
"platforms": [
|
||||||
"android"
|
"android",
|
||||||
|
"ios"
|
||||||
],
|
],
|
||||||
"splash": {
|
"splash": {
|
||||||
"image": "./assets/splash.png",
|
"image": "./assets/splash.png",
|
||||||
"resizeMode": "contain",
|
"resizeMode": "contain",
|
||||||
"backgroundColor": "#FFF"
|
"backgroundColor": "#202020"
|
||||||
},
|
},
|
||||||
"ios": {
|
"ios": {
|
||||||
"jsEngine": "jsc",
|
"jsEngine": "jsc",
|
||||||
"supportsTablet": true,
|
"supportsTablet": true,
|
||||||
"isTabletOnly": true
|
"isTabletOnly": true,
|
||||||
|
"bundleIdentifier": "com.sudovanilla.penpotapp"
|
||||||
},
|
},
|
||||||
"android": {
|
"android": {
|
||||||
"adaptiveIcon": {
|
"adaptiveIcon": {
|
||||||
"foregroundImage": "./assets/adaptive-icon.png",
|
"foregroundImage": "./assets/adaptive-icon.png",
|
||||||
"backgroundColor": "#FFF"
|
"backgroundColor": "#202020"
|
||||||
},
|
},
|
||||||
"package": "com.sudovanilla.penpotapp"
|
"package": "com.sudovanilla.penpotapp"
|
||||||
},
|
},
|
||||||
|
|
Reference in a new issue