Korbs/Penpot-App
Archived
1
Fork 0

Add scheme protocol and adjust colors

This commit is contained in:
Korbs 2023-06-07 20:25:55 -04:00
parent c37cf671ff
commit 22093e089c
No known key found for this signature in database

View file

@ -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"
}, },