html-editor-enhanced icon indicating copy to clipboard operation
html-editor-enhanced copied to clipboard

[BUG] PlatformException Unknown feature SUPPRESS_ERROR_PAGE

Open urielexis64 opened this issue 1 year ago • 3 comments

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)

urielexis64 avatar Jun 05 '24 23:06 urielexis64

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

naumanmir avatar Jun 06 '24 12:06 naumanmir

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

Zeelsarvadhi avatar Jun 10 '24 07:06 Zeelsarvadhi

Same here on Android.

LiLatee avatar Jun 29 '24 22:06 LiLatee

Still no solution.

naumanmir avatar Jul 02 '24 14:07 naumanmir

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

dharmbirkapylon avatar Jul 03 '24 11:07 dharmbirkapylon

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

dependency_overrides:
  webview_flutter_android: 3.16.1

slowlow79464 avatar Jul 09 '24 12:07 slowlow79464

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

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

cd89101112 avatar Jul 31 '24 08:07 cd89101112

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!

urielexis64 avatar Aug 07 '24 19:08 urielexis64