simpl-liste/app.json
le king fu 0526a47900 feat: initial Simpl-Liste MVP
Task management app with Expo/React Native:
- 3 tabs: Inbox, Lists, Settings
- Task CRUD with subtasks, priorities, due dates
- SQLite database via Drizzle ORM
- i18n FR/EN (French default)
- Dark mode support (light/dark/system)
- Simpl- brand color palette (bleu/crème/terracotta)
- NativeWind (Tailwind) styling
- EAS Build config for Android (APK + AAB)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-20 19:28:42 -05:00

39 lines
969 B
JSON

{
"expo": {
"name": "Simpl-Liste",
"slug": "simpl-liste",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "simplliste",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"splash": {
"image": "./assets/images/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#FFF8F0"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.lacompagniemaximus.simpliste"
},
"android": {
"package": "com.lacompagniemaximus.simpliste",
"adaptiveIcon": {
"foregroundImage": "./assets/images/adaptive-icon.png",
"backgroundColor": "#FFF8F0"
},
"edgeToEdgeEnabled": true
},
"plugins": [
"expo-router",
"expo-sqlite",
"expo-font",
"expo-localization",
"@react-native-community/datetimepicker"
],
"experiments": {
"typedRoutes": true
}
}
}