fix: Resolve Location Crash and Implement On-Demand Permissions#406
Open
cycloarcane wants to merge 6 commits intofandreuz:masterfrom
Open
fix: Resolve Location Crash and Implement On-Demand Permissions#406cycloarcane wants to merge 6 commits intofandreuz:masterfrom
cycloarcane wants to merge 6 commits intofandreuz:masterfrom
Conversation
This major update brings the dormant project up to modern Android standards while introducing enhanced security features and powerful new tools: Security & Privacy: - Hardened Signing: Sensitive signing credentials moved to local.properties (git-ignored) with dynamic build configuration. - Secure BusyBox: Replaced bundled binaries with a verified, architecture-aware installer (bbman) using hardcoded SHA-256 integrity checks. - Permissions: Updated permission model for Android 10-14, including granular location checks for WiFi SSID and modern storage access. - Network: Audited network code to prefer HTTPS and secure transport. New Features: - bbman: Built-in verified BusyBox manager for a full Linux environment (ls, grep, vi, etc.). - Modernized build system using Gradle 8.2 and Java 8. - Comprehensive technical documentation in COMMANDS.md. Fixes & Cleanup: - Fixed binary execution issues on Android 10+ using shell aliasing. - Removed obsolete social links and community tooltips. - General codebase cleanup and removal of dead code blocks.
- Removed redundant MessagesManager and associated logic. - Reverted fork references in README.md as requested by upstream. - Added summary for 'username' and 'theme -preset' commands to README.md.
…ish UI/UX - Implemented On-Demand Permissions: Location and Phone State are now requested only when needed. - Fixed: App no longer crashes when Location permission is denied. - Added 'explain' command for feature discovery. - Added 'weather' command alias for 'tuiweather'. - Improved: Theme presets (red, green, etc.) are now 100% transparent when system wallpaper is active. - Fixed: Weather update time formatting (HH:mm). - Modernized build system: updated Gradle wrapper scripts to 8.2.
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.
This update addresses a critical crash reported by users and further polishes the user experience.
🛠 Fixes & Improvements