Imagine that you have a mobile application that needs to store images in Google Cloud Storage. Instead of sending these from your mobile device to your API for storage, it’s more efficient to have your mobile application save these files to cloud storage directly. But how might you do that? The answer: Signed URLs - … Continue reading Signed URLs & Its Usage In Google Cloud Storage
Tag: Image Upload
WorkManager: The Ultimate Background Image Uploader
We always think about which services to use for background image upload with better performance. Earlier we had AlarmManager, JobScheduler, FirebaseJobDispatcher for scheduling the background tasks. But the issues were, JobScheduler available only for API >= 21 and FirebaseJobDispatcher for backward compatibility. So I had to understand which method to use when. But when I came across WorkManager library as part … Continue reading WorkManager: The Ultimate Background Image Uploader