FirebaseAndroidChat icon indicating copy to clipboard operation
FirebaseAndroidChat copied to clipboard

Image upload issue

Open malikmotani opened this issue 9 years ago • 7 comments

11-30 11:22:29.106 5465-5873/alessandro.firebaseChat E/StorageException: StorageException has occurred. An unknown error occurred, please check the HTTP result code and inner exception for server response. Code: -13000 HttpResult: 400 11-30 11:22:29.106 5465-5873/alessandro.firebaseChat E/StorageException: The server has terminated the upload session java.io.IOException: The server has terminated the upload session at com.google.firebase.storage.UploadTask.zzcyp(Unknown Source) at com.google.firebase.storage.UploadTask.zzcyo(Unknown Source) at com.google.firebase.storage.UploadTask.run(Unknown Source) at com.google.firebase.storage.StorageTask$5.run(Unknown Source) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1076) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:569) at java.lang.Thread.run(Thread.java:856) 11-30 11:22:29.114 5465-5465/alessandro.firebaseChat E/MainActivity: onFailure sendFileFirebase An unknown error occurred, please check the HTTP result code and inner exception for server response.

malikmotani avatar Nov 30 '16 06:11 malikmotani

Hey i also make this problem like you, i want to know have you fixed it? and if ok, can you tell me how to fix it? tks so much!!!

doanngoctu95 avatar Jan 19 '17 08:01 doanngoctu95

i've just fixed it, I add permission : WRITE_EXTERNAL_STORAGE and change TouchImageView into TouchImageView of my project.

doanngoctu95 avatar Jan 19 '17 09:01 doanngoctu95

i have the same problem, what is the solution?

MuniraAwadh avatar Aug 18 '17 02:08 MuniraAwadh

please help same problem

equilizer avatar Aug 23 '17 07:08 equilizer

add this to manifestfile

R33N4

On Wed, Aug 23, 2017 at 12:36 PM, equilizer [email protected] wrote:

please help same problem

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/AleBarreto/FirebaseAndroidChat/issues/12#issuecomment-324241042, or mute the thread https://github.com/notifications/unsubscribe-auth/AYpEyj4aRDvD7SHRno6mze_Qd4y1wZCdks5sa8-NgaJpZM4K_1h2 .

R33N4K0R avatar Aug 23 '17 07:08 R33N4K0R

I wrote it from start connected firebase with my app, but I don't know what is the problem!

On Aug 23, 2017, at 10:58 AM, ReenaKoR <[email protected]mailto:[email protected]> wrote:

add this to manifestfile

R33N4

On Wed, Aug 23, 2017 at 12:36 PM, equilizer <[email protected]mailto:[email protected]> wrote:

please help same problem

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/AleBarreto/FirebaseAndroidChat/issues/12#issuecomment-324241042, or mute the thread https://github.com/notifications/unsubscribe-auth/AYpEyj4aRDvD7SHRno6mze_Qd4y1wZCdks5sa8-NgaJpZM4K_1h2 .

— You are receiving this because you commented. Reply to this email directly, view it on GitHubhttps://github.com/AleBarreto/FirebaseAndroidChat/issues/12#issuecomment-324252094, or mute the threadhttps://github.com/notifications/unsubscribe-auth/AdN1MilEfNm9mLY-7G1KeRi_lF8qG3WCks5sa9ungaJpZM4K_1h2.

MuniraAwadh avatar Aug 23 '17 08:08 MuniraAwadh

Your app should be compatible with Android OS 5.1 and newer, because you cannot read/write internal & external storage.

More on: http://syncthing/syncthing-android#29

Android 4.0, 4.1, 4.2, 4.3, 4.4 and even 5.0 are affected by the issue of Google, not having an option to change the permission for your application.

You cannot even call the request for permission, because it does not exist as is in the stated Android OS versions, while changing the android manifest.xml file does not help either.

Regarding the HTTP error from Firebase, did you copy the right Storage Bucket parameter/URL to the app? What kind of Storage rules are you using? Try with these one:

service firebase.storage {
  match /b/{bucket}/o {
    match /{allPaths=**} {
      allow read, write: if request.auth!=null;
    }
  }
}

fritexvz avatar Jun 10 '19 01:06 fritexvz