Korbs/Penpot-App
Archived
1
Fork 0
This repository has been archived on 2024-07-03. You can view files and clone it, but cannot push or open issues or pull requests.
Penpot-App/app.json

55 lines
1.2 KiB
JSON
Raw Normal View History

2023-06-04 20:40:57 -04:00
{
"expo": {
"name": "penpot-app",
"slug": "penpot-app",
"owner": "sudovanilla",
"version": "0.0.1",
"icon": "./assets/icon.png",
2023-06-05 00:22:22 -04:00
"userInterfaceStyle": "automatic",
2023-06-07 20:25:55 -04:00
"scheme": "penpot",
2023-06-05 00:22:22 -04:00
"orientation": "landscape",
"jsEngine": "hermes",
2023-06-04 20:40:57 -04:00
"platforms": [
2023-06-07 20:25:55 -04:00
"android",
"ios"
2023-06-04 20:40:57 -04:00
],
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
2023-06-07 20:25:55 -04:00
"backgroundColor": "#202020"
2023-06-04 20:40:57 -04:00
},
"ios": {
2023-06-05 00:22:22 -04:00
"jsEngine": "jsc",
"supportsTablet": true,
2023-06-07 20:25:55 -04:00
"isTabletOnly": true,
"bundleIdentifier": "com.sudovanilla.penpotapp"
2023-06-04 20:40:57 -04:00
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
2023-06-07 20:25:55 -04:00
"backgroundColor": "#202020"
2023-06-04 20:40:57 -04:00
},
"package": "com.sudovanilla.penpotapp"
},
"androidStatusBar": {
"backgroundColor": "#000",
2023-06-05 00:22:22 -04:00
"barStyle": "light-content",
2023-06-04 20:40:57 -04:00
"translucent": false
},
"assetBundlePatterns": [
"**/*"
],
"extra": {
"eas": {
"projectId": "9f3d77d2-68f6-463f-909f-cb600ef6eeac"
}
2023-06-09 03:00:28 -04:00
},
"updates": {
"url": "https://u.expo.dev/9f3d77d2-68f6-463f-909f-cb600ef6eeac"
2023-06-19 21:03:45 -04:00
},
"runtimeVersion": {
"policy": "sdkVersion"
2023-06-04 20:40:57 -04:00
}
}
}