fee283b5d6
Release APK / build (push) Has been cancelled
- Replace app icon with new Charbon·Lime brand assets (icon.png + adaptive-icon.png) - Apply design tokens to theme.ts: bg #1B2433, primary/success #88D656 (lime), text1 #EEF2F5 (cream) - Add ⚙ gear button (lime) in HomeScreen header → navigates to /settings - Expand settings: git provider selector (Gitea / GitHub / GitLab) with per-provider fields - Add lib/git.ts: unified pushIncidentToGit() for Gitea, GitHub (PUT), and GitLab APIs - Update incident detail screen to use lib/git.ts and dynamic provider routing Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
46 lines
992 B
JSON
46 lines
992 B
JSON
{
|
|
"expo": {
|
|
"name": "SheetHappens",
|
|
"slug": "sheethappens",
|
|
"version": "0.1.0",
|
|
"orientation": "portrait",
|
|
"userInterfaceStyle": "dark",
|
|
"icon": "./assets/icon.png",
|
|
"backgroundColor": "#1B2433",
|
|
"scheme": "sheethappens",
|
|
"android": {
|
|
"adaptiveIcon": {
|
|
"foregroundImage": "./assets/adaptive-icon.png",
|
|
"backgroundColor": "#1B2433"
|
|
},
|
|
"package": "fr.gyozamancave.sheethappens",
|
|
"permissions": [
|
|
"android.permission.RECORD_AUDIO"
|
|
]
|
|
},
|
|
"plugins": [
|
|
"expo-router",
|
|
"expo-secure-store",
|
|
[
|
|
"expo-sqlite",
|
|
{
|
|
"enableFTS": false,
|
|
"useSQLCipher": false
|
|
}
|
|
],
|
|
[
|
|
"expo-speech-recognition",
|
|
{
|
|
"microphonePermission": "Allow SheetHappens to use the microphone for voice input."
|
|
}
|
|
]
|
|
],
|
|
"experiments": {
|
|
"typedRoutes": true
|
|
},
|
|
"web": {
|
|
"bundler": "metro"
|
|
}
|
|
}
|
|
}
|