Android5.1.1 WebView导致崩溃

1.自定义webview,请检查是否重新2个参数的构造方法

2.检查build.gradle中是否引用
androidx.appcompat:appcompat:1.1.0
降级到androidx.appcompat:appcompat:1.0.2
androidx.appcompat:appcompat:1.0.0
或者升级到
androidx.appcompat:appcompat:1.1.0-alpha04
androidx.appcompat:appcompat:1.2.0-alpha02可解决

改版本号,记得这几个要同步:
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.0.0'
implementation "androidx.cardview:cardview:1.0.0"

解决方法参考 stackoverflow

你可能感兴趣的:(错误坑)