在我的Cordova项目中,我依赖使用ng-file-upload的第三方依赖项来上传文件。
它可以在iOS上运行,但不能在此issue on their Github中报告的Android上运行。
由于存在以下解决方案,因此旧问题已解决:
https://github.com/apache/cordova-plugin-file-transfer#deprecated =>现在已弃用
人行横道=>现在已弃用
我该如何解决?根本不发送HTTP请求。
其他信息:
php artisan route:list
No activity found to handle file chooser intent.:
android.content.ActivityNotFoundException: No Activity found to handle
Intent { act=android.intent.action.GET_CONTENT cat=
日志说明:
[android.intent.category.OPENABLE] typ=.jpg,.png,.tiff,.jpeg,.tif,.pdf }
->事实并非如此
The error is telling you that the device has no applications installed that are able to handle that particular implicit intent.
代替ng-file-upload指令的上传按钮时,(科尔多瓦)Android应用程序正常工作。(我们已经提供了所有必需的权限:)
<input type="file" />
我将config.xml中的所有内容都列入了cordova的白名单:访问,allow-navigation,allow-intent,CSP。还是没有运气。
我们无法控制Android代码(除非我们编写自定义插件)。此本地代码是否可以解决问题?
<custom-config-file parent="/*" target="AndroidManifest.xml">
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.MANAGE_DOCUMENTS" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
</custom-config-file>
答案 0 :(得分:0)
我们解决了这个错误,在Lollipop(及更高版本)处理程序中添加了下面两行代码。
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
@Override
public boolean onShowFileChooser(WebView webView, final ValueCallback<Uri[]> filePathsCallback, final WebChromeClient.FileChooserParams fileChooserParams) {
Intent intent = fileChooserParams.createIntent();
// FIX HERE vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv @@
intent.addCategory(Intent.CATEGORY_OPENABLE);
intent.setType("*/*");
// FIX HERE ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@
您的cordova项目中的该处理程序位于src/org/apache/cordova/engine/SystemWebChromeClient.java
下。
希望cordova-android
的贡献者将自己解决此reported issue,以便我们可以删除补丁。