Rosário P. Fernandes
Rosário P. Fernandes
@avjinder I can help with the Architecture Components. I'll send a Pull Request
You're right. According to the [release logs](https://firebase.google.com/support/release-notes/android#version_1502), that method has been deprecated in version 15.0.2 (May 2, 2018). They just haven't updated the codelab yet. But meanwhile you can use...
@adibsyahmi17 unfortunately, [TaskSnapshot](https://firebase.google.com/docs/reference/android/com/google/firebase/storage/UploadTask.TaskSnapshot) does not have a `getDownloadUrl()` method. You'll need to call that method on the `StorageReference` that you created to upload the file.
@adibsyahmi17 Can you show the code where you create the `StorageReference`? The one that comes before this `onSuccess` code that you posted here.
@adibsyahmi17 Thanks for providing the code. You'll need to change your onSuccess method to reuse the `StorageReference` that you created: ```java @Override public void onSuccess(UploadTask.TaskSnapshot taskSnapshot) { Handler handler =...
I think `functions.handler.database` is required for a Cloud Function to be deployed as an extension. I'm afraid we won't be able to deploy it with `functions.database`.
@Chandra-Sekhar-Bala You can also try out [ML Kit Digital ink recognition](https://developers.google.com/ml-kit/vision/digital-ink-recognition/android). But there are 2 important things I should point out: 1. It requires handwritten text to be inputted directly...
I'm slightly concerned with the increased size shown in the bot report above. Seems like adding the library as a transitive dependency adds **~390kB** to every ktx module - to...
~I'm holding this until #3974 gets merged. I think it would be better if we release with the latest version of Kotlin + latest version of kotlinx-coroutines-play-services .~
@vkryachko Can I merge this? Also since it bumps firebase-common, does it mean we'll have to release all SDKs? Or only the ones that have methods returning Tasks? But since...