tneotia / html-editor-enhanced

A Flutter package that provides a WYSIWYG editor backed by flutter_inappwebview and the Summernote library.
https://pub.dev/packages/html_editor_enhanced
MIT License
274 stars 331 forks source link

[BUG] PlatformException Unknown feature SUPPRESS_ERROR_PAGE #517

Closed urielexis64 closed 2 months ago

urielexis64 commented 4 months ago

Describe the bug When attempting to use the HtmlEditor, it crashes, rendering it non-interactive. This issue only arises on Android, not on iOS.

To Reproduce Steps to reproduce the behavior:

  1. Just add HtmlEditor in any page and then try to open that page

Expected behavior I expect a functional component like in iOS

Screenshots image

Device: Physical device Samsung A33, android 14

Flutter doctor: image

I'm using the latest version of the dependency (2.6.0)

naumanmir commented 4 months ago

Yes, i have encountered same error on Android after flutter upgrade. Any solution to this?

Zeelsarvadhi commented 3 months ago

Yes, i'm facing same error on Web after flutter upgrade in latest version. Any solution to this?

LiLatee commented 3 months ago

Same here on Android.

naumanmir commented 3 months ago

Still no solution.

dharmbirkapylon commented 3 months ago

Same here, Suddenly stopped working on android even working fine in iOS.

slowlow79464 commented 3 months ago

For me, solved according this link: https://github.com/pichillilorenzo/flutter_inappwebview/issues/2150#issuecomment-2132114530

dependency_overrides:
  webview_flutter_android: 3.16.1
cd89101112 commented 2 months ago

On Android,Add the following configuration to your app build.gradle.


allprojects {
    configurations.all {
        resolutionStrategy {
            force 'androidx.webkit:webkit:1.8.0'
        }
    }
}
urielexis64 commented 2 months ago

On Android,Add the following configuration to your app build.gradle.

allprojects {
    configurations.all {
        resolutionStrategy {
            force 'androidx.webkit:webkit:1.8.0'
        }
    }
}

It works! Thank you so much!