html-editor-enhanced
                                
                                
                                
                                    html-editor-enhanced copied to clipboard
                            
                            
                            
                        [BUG] PlatformException Unknown feature SUPPRESS_ERROR_PAGE
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:
- Just add HtmlEditor in any page and then try to open that page
 
Expected behavior I expect a functional component like in iOS
Screenshots
Device: Physical device Samsung A33, android 14
Flutter doctor:
I'm using the latest version of the dependency (2.6.0)
Yes, i have encountered same error on Android after flutter upgrade. Any solution to this?
Yes, i'm facing same error on Web after flutter upgrade in latest version. Any solution to this?
Same here on Android.
Still no solution.
Same here, Suddenly stopped working on android even working fine in iOS.
For me, solved according this link: https://github.com/pichillilorenzo/flutter_inappwebview/issues/2150#issuecomment-2132114530
dependency_overrides:
  webview_flutter_android: 3.16.1
                                    
                                    
                                    
                                
On Android,Add the following configuration to your app build.gradle.
allprojects {
    configurations.all {
        resolutionStrategy {
            force 'androidx.webkit:webkit:1.8.0'
        }
    }
}
                                    
                                    
                                    
                                
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!