File Upload in WebView

后端 未结 19 1935
旧巷少年郎
旧巷少年郎 2020-11-22 00:28

I have been struggling to upload files from WebView since last few days and there is no progress. I googled and implemented all suggested solutions but none works, like: sol

19条回答
  •  一整个雨季
    2020-11-22 00:51

    Found a SOLUTION which works for me! Add one more rule in the file proguard-android.txt:

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

提交回复
热议问题