[codex] Add Android Tauri app with native blocker plugin#41
Closed
kasnder wants to merge 2 commits into
Closed
Conversation
Migrate the Android blocking engine into the Tauri app so Android can share the same web UI as desktop and iOS. Keep Android enforcement in native Kotlin rather than moving it into Rust: the Rust plugin is a thin IPC bridge, while blocking decisions, Accessibility events, WorkManager jobs, package/app integration, and device-protected preferences remain on the Android side. This preserves Android lifecycle integration and avoids introducing a long-running Rust enforcement loop. - add Android Tauri config, capabilities, generated Gradle project, and build scripts - add android-blocker plugin bridging frontend/Rust IPC to Kotlin blocking code - wire Android onboarding, Accessibility permission flow, schedule sync, manual blocks, friction gate, and app picker into the shared UI - gate desktop-only commands/modules away from Android builds - keep package id net.kollnig.reddblockandroid for migration continuity - update Android icons and document generated-project manual edits - update README with Android architecture, setup, build, and debugging notes
Collaborator
Author
|
Superseded by #45, which is rebased on the latest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Migrate the Android blocking engine into the Tauri app so Android can share the same web UI as desktop and iOS.
Keep Android enforcement in native Kotlin rather than moving it into Rust: the Rust plugin is a thin IPC bridge, while blocking decisions, Accessibility events, WorkManager jobs, package/app integration, and device-protected preferences remain on the Android side. This preserves Android lifecycle integration and avoids introducing a long-running Rust enforcement loop.
Changes
Validation
Full desktop cargo check was not completed locally because the macOS Safari bridge build step failed before Rust checking due to local Swift/SDK/cache setup.