resin/app.json

28 lines
524 B
JSON
Raw Normal View History

2021-02-26 16:05:46 +00:00
{
"expo": {
"entryPoint": "./src/App.js",
"name": "Resin",
"slug": "Resin",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"splash": {
2021-03-07 04:29:57 +00:00
"image": "./assets/test.jpg",
2021-02-26 16:05:46 +00:00
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true
},
"web": {
"favicon": "./assets/favicon.png"
}
}
}