nativescript-background-http icon indicating copy to clipboard operation
nativescript-background-http copied to clipboard

Upload Error when I updated my android sdk platform from 28 to 29

Open newbie10003 opened this issue 5 years ago • 6 comments

Which platform(s) does your issue occur on?

  • Android version 10 (with SDK platform tools 28)
  • iOS

Please, provide the following version numbers that your issue occurs with:

  • CLI: (run tns --version to fetch it) 6.0.5
  • Cross-platform modules: (check the 'version' attribute in the node_modules/tns-core-modules/package.json file in your project) 6.5.1
  • Runtime(s): (look for the "tns-android" and "tns-ios" properties in the package.json file of your project) "tns-ios": { "version": "5.3.1" }, "tns-android": { "version": "6.5.0" }
  • Plugin(s): (look for the version numbers in the package.json file of your project and paste your dependencies and devDependencies here) "nativescript-background-http": "^4.2.1"

Please, tell us how to recreate the issue in as much detail as possible.

Describe the steps to reproduce it.

Upload keeps on error, but it was working when my android sdk platform is 28 but error after I updated it to 29.

uploaderror

newbie10003 avatar May 12 '20 02:05 newbie10003

It's seem likes authorization header is missing in your request.

smorcuend avatar May 14 '20 13:05 smorcuend

I also have a same error. Code work in api level 28 and below fine but in api level 29 its shows upload error. my code is: context .authorize() .then(function() { return context.present(); }) .then(function(selection) {

      selection.forEach(function(selected) {
          var file =  selected.android;
          var name = file.substr(file.lastIndexOf("/") + 1);
          var fileExt=file.substr(file.lastIndexOf(".") + 1);
          
          var session = bghttp.session("image-upload");
          var request = {
                  url: "**************product/upload_gallery",
                  method: "POST",
                  headers: {
                      "Content-Type": "application/octet-stream",
                      "file_name":name,
                      "file_ext":fileExt,
                      "post":that.post_id
                  },
                  description: "Uploading " + name,
                  androidNotificationTitle: 'Uploading Product Image',
                  androidDisplayNotificationProgress:true
              };
          
          var task = session.uploadFile(file, request); 
          task.on("responded", (e) => {
            let res=JSON.parse(e.data);
           
          });
          task.on("progress", (e) => {
             that.isUploading=true;
          });
          task.on("complete", (e) => {
            that.isUploading=false;
            that.fetch_gallery(that.post_id);
          });
          
      });
  }).catch(function (e) {
      console.log(e);
});

RohanPhpDev avatar May 16 '20 05:05 RohanPhpDev

It's seem likes authorization header is missing in your request.

We already include authorization header but still not working

newbie10003 avatar May 18 '20 06:05 newbie10003

Same error for me, no trouble using API level 28, but getting exactly the same error with 29. I get an error in upload notification tray too. It seems that android is stopping the upload for some reason. I gave a look at 29 release note and breaking changes but nothing about permission on upload seems to be changed. Does anybody found a workaround?

danieledivito avatar Jun 06 '20 22:06 danieledivito

I think I found out why of this problem. This plugin uses an android library that is targeted as follow: <uses-sdk android:minSdkVersion="17" android:targetSdkVersion="28" /> So that's why of the error. I saw that this library has new version targeting from 21 to 29 but I guess will not be easy to include it cause it's a new major release

danieledivito avatar Jun 08 '20 15:06 danieledivito

i also experienced this issue, when targeting SDK 29 rather than 28 i found that adding android:requestLegacyExternalStorage="true" to the AndroidManifest.xml file solved the issue, and images are now able to be uploaded again

<application
		android:requestLegacyExternalStorage="true"

EagleEye25 avatar Aug 27 '20 08:08 EagleEye25