ad3b317115
The app now checks for new APK releases on a Forgejo instance and can download and install them without leaving the app. Settings: - New "Update repository URL" field (e.g. https://git.example.com/user/fabled_app) - "App version" tile with a manual "Check" button and live status display - Download progress bar and "Install" button appear when update is found Startup: - Shell runs a silent background check on first load when a repo URL is set - A dialog appears automatically if a newer release is found Provider (update_provider.dart): - UpdateNotifier: idle → checking → available → downloading → available - Hits Forgejo /api/v1/repos/{owner}/{repo}/releases/latest - Parses semver tag, finds .apk asset, downloads with progress via Dio - Opens the APK with open_file to trigger the system package installer Android: - REQUEST_INSTALL_PACKAGES permission - FileProvider configured for open_file (shares APK URI with installer) - res/xml/file_paths.xml covers external-files and cache directories Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
47 lines
953 B
YAML
47 lines
953 B
YAML
name: fabled_app
|
|
description: "FabledAssistant mobile client for Android."
|
|
publish_to: 'none'
|
|
|
|
version: 1.0.0+1
|
|
|
|
environment:
|
|
sdk: ^3.11.0
|
|
|
|
dependencies:
|
|
flutter:
|
|
sdk: flutter
|
|
|
|
cupertino_icons: ^1.0.8
|
|
flutter_riverpod: ^2.5.1
|
|
go_router: ^14.2.0
|
|
dio: ^5.6.0
|
|
cookie_jar: ^4.0.8
|
|
dio_cookie_manager: ^3.1.1
|
|
path_provider: ^2.1.4
|
|
shared_preferences: ^2.3.2
|
|
flutter_markdown: ^0.7.3
|
|
markdown: ^7.2.2
|
|
package_info_plus: ^8.0.0
|
|
open_file: ^3.3.2
|
|
flutter_inappwebview: ^6.1.5
|
|
|
|
dev_dependencies:
|
|
flutter_test:
|
|
sdk: flutter
|
|
flutter_lints: ^6.0.0
|
|
flutter_launcher_icons: ^0.14.3
|
|
|
|
flutter_launcher_icons:
|
|
android: true
|
|
ios: false
|
|
remove_alpha_ios: false
|
|
image_path: "assets/icon/app_icon_fg.png"
|
|
adaptive_icon_background: "assets/icon/app_icon_bg_transparent.png"
|
|
adaptive_icon_foreground: "assets/icon/app_icon_fg.png"
|
|
min_sdk_android: 21
|
|
|
|
flutter:
|
|
uses-material-design: true
|
|
assets:
|
|
- assets/icon/
|