POWR/app.json
2025-02-16 22:47:47 -05:00

63 lines
1.4 KiB
JSON

{
"expo": {
"name": "powr",
"slug": "powr",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "myapp",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.powr.app",
"infoPlist": {
"UIFileSharingEnabled": true
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package": "com.powr.app",
"permissions": [
"WRITE_EXTERNAL_STORAGE",
"READ_EXTERNAL_STORAGE"
]
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"expo-router",
[
"expo-sqlite",
{
"androidPackage": "expo.modules.sqlite.SQLiteModule",
"enableChangeListener": false,
"enableFTS": true,
"android": {
"enableFTS": true
},
"ios": {
"enableFTS": true
}
}
]
],
"experiments": {
"typedRoutes": true
}
}
}