From 15abfecb07af46e5b8b6552e4c04076db7f2c095 Mon Sep 17 00:00:00 2001 From: KB Bot Date: Mon, 18 Dec 2023 11:53:22 +0000 Subject: [PATCH] Added new kb article asyncupload-uploading-files-google-drive-android-issue --- ...oading-files-google-drive-android-issue.md | 43 +++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 knowledge-base/asyncupload-uploading-files-google-drive-android-issue.md diff --git a/knowledge-base/asyncupload-uploading-files-google-drive-android-issue.md b/knowledge-base/asyncupload-uploading-files-google-drive-android-issue.md new file mode 100644 index 000000000..54949bcc2 --- /dev/null +++ b/knowledge-base/asyncupload-uploading-files-google-drive-android-issue.md @@ -0,0 +1,43 @@ +--- +title: File upload is terminated on Android when choosing a file from Google Drive +description: Learn how to resolve the issue of not being able to upload files from Google Drive on Android devices using the RadAsyncUpload for ASP.NET AJAX component. +type: troubleshooting +page_title: Troubleshooting File Upload Issue from Google Drive on Android +slug: asyncupload-uploading-files-google-drive-android-issue +tags: android, file upload, RadAsyncUpload, Chrome, Google Drive +res_type: kb +--- + +## Environment + +| Property | Value | +|----------|-------| +| Product | RadAsyncUpload for ASP.NET AJAX | +| Version | all | + +## Description + +I am experiencing an issue where I cannot upload files from Google Drive on Android devices using the RadAsyncUpload component. When I select a file from Google Drive, nothing happens and the whole page becomes unresponsive. However, uploading a photo directly from the camera works fine. + +## Solution + +To resolve this known Chrome issue on Android, you need to use the fallback iframe upload module when the browser is Chrome and the platform is Android. You can do that by adding the following script under the ScriptManager in your application: + +``` + +``` + +By adding this script, the RadAsyncUpload component will use the iframe module over the FileAPI, which resolves the issue with uploading files from Google Drive on Android devices using Chrome. + +## See Also + +- [RadAsyncUpload Modules Documentation](https://docs.telerik.com/devtools/aspnet-ajax/controls/asyncupload/modules) +- [Cannot Upload Files From Google Drive on Android](https://www.example.com/article-link) (external article) +