codelab-friendlychat-android
codelab-friendlychat-android copied to clipboard
Firebase FriendlyChat codelab
@Override public void onSuccess(UploadTask.TaskSnapshot taskSnapshot) { Handler handler = new Handler(); handler.postDelayed(new Runnable() { @Override public void run() { mProgressBar.setProgress(0); } }, 500); Toast.makeText(AddSolatPage.this, "Upload successful", Toast.LENGTH_LONG).show(); Upload upload =...
I'm learning firebase through Firebase Android Codelab - Build Friendly Chat I've done all coding according to instruction till the end of Enable Authentication section. But when trying to test...
Browser: Firefox Browser Browser version: 100.0.2 Operating system: Ubuntu Operating system version: 20.04.4 LTS What steps will reproduce the problem: On this page: https://firebase.google.com/codelabs/firebase-android#5 There is written: AuthUI.getInstance().signOut(): But it...
If done completely to spec, the emulator run will crash on launch. Needs many included imports and includes some deprecated features. The app builds correctly but will crash on the...
When using the command line to use the mock services function, the command line replies saying that no such file exists or a directory with that name. Is there an...
For those learning how to program in Kotlin, please show how to build the code for goToMainActivity().
In the `SignInActivity.kt` file there is a `private fun signIn()` function between the `onStart` function and the `onSignInResult` function that has a TODO that reads `// TODO: implement`: `private fun...
After completing [Step 7](https://codelabs.developers.google.com/codelabs/firebase-android/#6) and updating the database in the Firebase console, the loading spinner is never hidden and the messages never load. The same happens with the completed sample...
Right now we have: ``` rules_version = '2'; service firebase.storage { match /b/{bucket}/o { match /{allPaths=**} { allow read, write: if request.auth != null; } } } ``` We should...
Hi, The provided code won't work if european (Belgium) server is chosen for realtime db, because it does not sits on the default url. I don't know how to solve...