POWR/app.json

95 lines
2.0 KiB
JSON
Raw Normal View History

{
"expo": {
2025-02-11 10:38:17 -05:00
"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": "#000000"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
2025-02-16 22:47:47 -05:00
"supportsTablet": true,
"bundleIdentifier": "com.powr.app",
"infoPlist": {
"UIFileSharingEnabled": true
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#ffffff"
2025-02-16 22:47:47 -05:00
},
"package": "com.powr.app",
"permissions": [
"WRITE_EXTERNAL_STORAGE",
"READ_EXTERNAL_STORAGE"
],
"intentFilters": [
{
"autoVerify": true,
"action": "VIEW",
"data": [
{
"scheme": "powr"
}
],
"category": ["BROWSABLE", "DEFAULT"]
}
]
},
"web": {
"bundler": "metro",
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
2025-02-16 22:47:47 -05:00
"expo-router",
2025-03-06 14:18:10 -05:00
"expo-dev-client",
2025-02-16 22:47:47 -05:00
[
"expo-sqlite",
{
"androidPackage": "expo.modules.sqlite.SQLiteModule",
"enableChangeListener": false,
"enableFTS": true,
"android": {
"enableFTS": true
},
"ios": {
"enableFTS": true
}
}
],
"expo-secure-store",
"expo-av",
"expo-splash-screen"
],
"experiments": {
"typedRoutes": true
2025-03-06 14:18:10 -05:00
},
"runtimeVersion": {
"policy": "sdkVersion"
},
"updates": {
"url": "https://u.expo.dev/f3895f49-d9c9-4653-b73b-356f727debe2"
2025-03-06 14:18:10 -05:00
},
"extra": {
"router": {
"origin": false
},
"eas": {
"projectId": "f3895f49-d9c9-4653-b73b-356f727debe2"
}
},
"owner": "promotus"
}
}