프로젝트에서 웹뷰를 쓸 일이 있어 웹뷰 관련 라이브러리를 사용중인데, 잘 빌드되던 프로젝트가 앱이 시작될 때 멈추면서 java.lang.RuntimeException: Unknown feature SUPPRESS_ERROR_PAGE 오류를 뱉고 벽돌이 되는 오류 발생

1. build.gradle에서 configurations 추가하기

1
2
3
4
5
6
7
allprojects {
    configurations.all {
        resolutionStrategy {
            force 'androidx.webkit:webkit:1.8.0'
        }
    }
}

2. pubspec.yaml에서 웹뷰 라이브러리 오버라이딩 하기

dependencies:에 있던 webview_flutter_android 라이브러리를 따로 빼서 dependency_overrides:에 추가하기

1
2
dependency_overrides:
  webview_flutter_android: 3.16.1

3. 오류 해결 :)

🔗 참고 링크

Leave a comment