diff options
| author | Paul Buetow <paul@buetow.org> | 2026-05-08 00:05:39 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-05-08 00:05:39 +0300 |
| commit | 3e4bacb7b939b1de98a2fb07115f638750637357 (patch) | |
| tree | 0897a6854d1c3ca3b1d0252657e992abbba061ba /pubspec.yaml | |
| parent | 665b150727ee7259e398d38d1f6bc51b4c2d4a1c (diff) | |
Rewrite as Flutter app and rename to Quicklogmain
Drop the Go/Fyne implementation and replace it with a native Flutter app
targeting Android (primary) and Linux desktop (development). Rename
quicklogger -> quicklog throughout (project, applicationId, MethodChannel,
cache filename, AppBar title, Linux binary).
Storage on Android moves to /Android/data/org.buetow.quicklog/files/ so
MANAGE_EXTERNAL_STORAGE is no longer required. Share-intent receive is
preserved via a Kotlin ShareActivity that writes shared text to the app
cache, which Dart reads through a MethodChannel on app resume; MainActivity
also accepts SEND directly so launchers that prefer the main target work.
New since the Fyne version: an entry browser screen with read-only viewer
and long-press delete.
Cross-compiling to Android ARM from amd64 Linux no longer needs Docker /
fyne-cross / NDK -- flutter build apk emits ARM binaries directly.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Diffstat (limited to 'pubspec.yaml')
| -rw-r--r-- | pubspec.yaml | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/pubspec.yaml b/pubspec.yaml new file mode 100644 index 0000000..9c5995b --- /dev/null +++ b/pubspec.yaml @@ -0,0 +1,35 @@ +name: quicklog +description: "Quicklog - jot timestamped markdown notes." +publish_to: 'none' + +version: 0.1.2+65 + +environment: + sdk: ^3.11.5 + +dependencies: + flutter: + sdk: flutter + shared_preferences: ^2.3.2 + path_provider: ^2.1.4 + path: ^1.9.0 + intl: ^0.20.0 + +dev_dependencies: + flutter_test: + sdk: flutter + flutter_lints: ^6.0.0 + flutter_launcher_icons: ^0.14.1 + +flutter: + uses-material-design: true + assets: + - logo-small.png + +flutter_launcher_icons: + android: true + ios: false + image_path: "icon.png" + min_sdk_android: 21 + adaptive_icon_background: "#FFFFFF" + adaptive_icon_foreground: "icon.png" |
