fix(editor): resolve disabled send button and webview scripting on android release builds#20
Merged
rathlinus merged 1 commit intoJul 19, 2026
Conversation
…droid release builds
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.
Resolves the issue where Android Release builds block the rich text editor's inline script evaluation when loaded via raw HTML strings.
Key Changes:
editor.htmldirectly into Android's native asset directory (android/app/src/main/assets/editor.html). Loaded usingfile:///android_asset/editor.htmlon Android, granting it local secure file origin privileges.window.ReactNativeWebView) to be ready before firing a'ready'event.'ready'message in React Native, we callwindow.__rne.init()to dynamically inject the color themes, placeholder text, and initial HTML document body.ComposeScreento properly handle name/email brackets.Fixes #19
!! WARNING !! Note that this code was AI generated. It gives great results but I don't have good practice and experience in reactjs. So I don't have the capacity to give a good judgement about the proposed solution.