Android 4.4 WebView file chooser not opening?

后端 未结 9 544
南旧
南旧 2020-12-14 07:25

We are creating an app which uses the webview and will access a page where the user needs to upload a file. We are experiencing problems with Android 4.4 where the file choo

9条回答
  •  臣服心动
    2020-12-14 08:05

    Found a solution that worked for me. I've added one more rule in proguard-android.txt:

    -keepclassmembers class * extends android.webkit.WebChromeClient {
         public void openFileChooser(...);
    }
    

提交回复
热议问题