BangSo/apps/mobile/app.json

90 lines
2.5 KiB
JSON
Raw Permalink Normal View History

2026-09-01 16:51:19 +00:00
{
"expo": {
"name": "BangSo Bot",
"slug": "rakazo",
"owner": "inbox-zero",
"scheme": "rakazo",
"version": "1.0.0",
"orientation": "portrait",
"userInterfaceStyle": "dark",
"icon": "./assets/icon.png",
"plugins": [
[
"expo-splash-screen",
{
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#050506"
}
],
"expo-router",
"expo-secure-store",
"expo-audio",
"expo-localization",
"@react-native-vector-icons/ionicons",
"@react-native-vector-icons/material-design-icons",
[
"expo-notifications",
{
"icon": "./assets/notification-icon.png",
"color": "#2965EC"
}
],
[
"expo-image-picker",
{
"photosPermission": "BangSo Bot uses your photo library so you can attach images to a bot message.",
"cameraPermission": "BangSo Bot uses the camera so you can attach photos to a bot message.",
"microphonePermission": false
}
],
"expo-sharing",
"./plugins/with-worklets-headers"
],
"ios": {
"bundleIdentifier": "com.rakazo.app",
"buildNumber": "1",
"supportsTablet": false,
"icon": "./assets/icon.png",
"config": {
"usesNonExemptEncryption": false
},
"infoPlist": {
"NSCameraUsageDescription": "BangSo Bot uses the camera so you can attach photos to a bot message.",
"NSPhotoLibraryUsageDescription": "BangSo Bot uses your photo library so you can attach images to a bot message.",
"NSLocalNetworkUsageDescription": "BangSo Bot connects to a self-hosted BangSo Bot server on your local network.",
"NSAppTransportSecurity": {
"NSAllowsLocalNetworking": true
}
}
},
"android": {
"package": "com.rakazo.app",
"versionCode": 10,
"softwareKeyboardLayoutMode": "resize",
"icon": "./assets/icon.png",
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"monochromeImage": "./assets/monochrome-icon.png",
"backgroundColor": "#2965EC"
}
},
"web": {
"favicon": "./assets/favicon.png"
},
"extra": {
"router": {},
"supportsRTL": true,
"eas": {
"projectId": "07f7eb04-45e3-47fe-9374-99a2f991131e"
}
},
"runtimeVersion": {
"policy": "appVersion"
},
"updates": {
"url": "https://u.expo.dev/07f7eb04-45e3-47fe-9374-99a2f991131e"
}
}
}