simpl-liste/app.json
le king fu e6ac92e745 feat: widget dark mode, update checker, contact button (v1.0.1)
- Widget adapts to app theme (light/dark/system) via AsyncStorage
- Add "Check for updates" button querying Forgejo releases API
- Add "Contact us or report a bug" mailto link in settings
- Bump version to 1.0.1

Closes #1, closes #2, closes #3

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-25 20:33:17 -05:00

89 lines
2.5 KiB
JSON

{
"expo": {
"name": "Simpl-Liste",
"slug": "simpl-liste",
"version": "1.0.1",
"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",
[
"react-native-android-widget",
{
"fonts": [
"./assets/fonts/Inter_400Regular.ttf",
"./assets/fonts/Inter_600SemiBold.ttf"
],
"widgets": [
{
"name": "SimplListeSmall",
"label": "Simpl-Liste",
"description": "Aperçu rapide de vos tâches",
"minWidth": "110dp",
"minHeight": "110dp",
"targetCellWidth": 2,
"targetCellHeight": 2,
"updatePeriodMillis": 1800000
},
{
"name": "SimplListeMedium",
"label": "Simpl-Liste",
"description": "Vos prochaines tâches",
"minWidth": "110dp",
"minHeight": "250dp",
"targetCellWidth": 2,
"targetCellHeight": 4,
"resizeMode": "horizontal",
"updatePeriodMillis": 1800000
},
{
"name": "SimplListeLarge",
"label": "Simpl-Liste (grand)",
"description": "Vue détaillée de vos tâches",
"minWidth": "250dp",
"minHeight": "250dp",
"targetCellWidth": 4,
"targetCellHeight": 4,
"resizeMode": "horizontal|vertical",
"updatePeriodMillis": 1800000
}
]
}
]
],
"experiments": {
"typedRoutes": true
},
"extra": {
"router": {},
"eas": {
"projectId": "eea9da71-e467-49ba-9b59-2febc86a4d1b"
}
},
"owner": "lacompagniemaximus"
}
}