mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 22:01:09 +02:00
- Add optional face photo upload (expo-image-picker + expo-image-manipulator) - Wire face image through backend to Gemini as inline base64 data - Add loading screen with blurred placeholder card + pulsing animation - Add reveal/unboxing screen with aligned banner layout - Handle generation failures (check figure.status, show error on form) - Add Gemini safety settings (BLOCK_NONE) to reduce false rejections - Increase body limit to 5mb for base64 image payloads - Add errorMessage to FigureResponse shared type - Extract FlippableCard to reusable component Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
40 lines
925 B
JSON
40 lines
925 B
JSON
{
|
|
"expo": {
|
|
"name": "Figgos",
|
|
"slug": "figgos",
|
|
"version": "1.0.0",
|
|
"scheme": "figgos",
|
|
"orientation": "portrait",
|
|
"icon": "./assets/images/icon.png",
|
|
"userInterfaceStyle": "dark",
|
|
"newArchEnabled": true,
|
|
"splash": {
|
|
"image": "./assets/images/splash-icon.png",
|
|
"resizeMode": "contain",
|
|
"backgroundColor": "#ffffff"
|
|
},
|
|
"ios": {
|
|
"supportsTablet": true,
|
|
"bundleIdentifier": "com.tilljs.figgos",
|
|
"appleTeamId": "FTD9P2JU85"
|
|
},
|
|
"android": {
|
|
"adaptiveIcon": {
|
|
"foregroundImage": "./assets/images/adaptive-icon.png",
|
|
"backgroundColor": "#ffffff"
|
|
},
|
|
"edgeToEdgeEnabled": true,
|
|
"package": "com.tilljs.figgos"
|
|
},
|
|
"web": {
|
|
"bundler": "metro",
|
|
"output": "static",
|
|
"favicon": "./assets/images/favicon.png"
|
|
},
|
|
"plugins": ["expo-router", "expo-secure-store", "expo-image-picker"],
|
|
"experiments": {
|
|
"typedRoutes": true,
|
|
"tsconfigPaths": true
|
|
}
|
|
}
|
|
}
|