All Questions
3,011 questions
-1
votes
1
answer
46
views
RecyclerView not showing in design mode or in the emulator in android studio [closed]
I'm trying to figure out on what to do as my recyclerview seems to be not working. I'm still fairly new to mobile development so I'm not exactly sure I'm gonna do. There was no error/warning messages ...
0
votes
2
answers
63
views
Android - How to accurately store the date & time(server time not system) when posting data to firestore
I am currently developing a chat app, and whenever I store data to Firestore, using the FieldValue.serverTimestamp() the date timestamp is saved to the database under the dateCreated field. The only ...
0
votes
0
answers
106
views
Having compatibiblity and other issues in setup firebase with flutter and kotlin
I have facing so many error at the same time when I setup firebase with flutter I used
firebase_core: ^3.13.0
firebase_auth: ^5.5.2
in pubspec.yaml and get these errors. I think it is compatibility ...
0
votes
0
answers
41
views
Firebase Authentication not working in Android 14
In Firebase Authentication version 33.10.0, it is not working in my project when using compile SDK version 35. However, when I use Firebase BOM version 28.2.1, the authentication section works ...
0
votes
0
answers
78
views
I'm having trouble pulling data from Firebase with Jetpack Compose?
private lateinit var viewmodelAuthentication: ViewModel_Authentication
class Activity_Login : ComponentActivity() {
@SuppressLint("CoroutineCreationDuringComposition")
override fun ...
0
votes
0
answers
23
views
Native Ad Not Loading in Flutter App Despite Correct Factory ID Registration
I'm integrating AdMob into my Flutter app using the google_mobile_ads plugin. Rewarded ads work fine, but my native ad is not loading. I've verified that the ad unit IDs are correct and that the ...
0
votes
0
answers
29
views
How do I stop my app from auto-logging my Android device in when testing?
I am testing authentication with a mobile app. I am using Firebase's authentication service. I tested it once before using an Android device, and would like to test it again.
The first time I tested ...
0
votes
0
answers
22
views
Firebase shows no badge when closed but triggers sheets and popups only when app is closed
Please, I have 2 sheets and 1 Popover that I try to trigger through Firebase Messaging with the key: notification_type programmed in Kotlin.
When the app is running, the badge appears with a whitish ...
0
votes
0
answers
47
views
Firestore Android app data loading error due to broker android.gms based error
I am getting the following error for some unknown reason, and this has been slowing the data loading process, the data loads after these errors come up, I have copied the json file in the project ...
0
votes
2
answers
635
views
Kotlin Version Mismatch: Firebase Auth Compiled with 2.1.0, Project Expecting 1.9.0
I'm encountering a Kotlin version mismatch error while building my Flutter Android project. The error indicates that the firebase-auth library is compiled with Kotlin 2.1.0, but my project is ...
0
votes
1
answer
36
views
Firebase: Parsing JSON Body and Adding Image in Background Notifications
I'm using Firebase Cloud Messaging (FCM) to send notifications, where the title is a string and the body is in JSON format. When the app is in the foreground, I successfully receive the notification ...
0
votes
1
answer
44
views
Class not found when unmarshalling: com.google.firebase.Timestamp,
I am trying to send a timestamp to another activity using intent.putExtra("timeStamp", timeStamp) however on some versions of android (it seems to be older versions in general) I get the ...
0
votes
1
answer
57
views
Can't get correct Icon or Intent when sending notification through Firebase Cloud Messaging android
I'm using Firebase Cloud Messaging to send notifications to users about updates in my Android app. Notifications work fine when the app is in the foreground, but when the app is in the background or ...
4
votes
1
answer
374
views
2025: How to disable reCAPTCHA in Firebase phone-authentication (OTP) Android without SafetyNet or DeviceCheck
I know that this question has been posted multiple times, but most of the answers are deprecated or not valid for 2025 since SafetyNet is deprecated for new apps and Android DeviceCheck API is also ...
0
votes
1
answer
46
views
Activity with RecyclerView not calling OnCreate
I am trying to build a list with a recycler view. I created the recycler view, an adapter and set the adapter with default values in OnCreate and then later in that function I call a firebase async ...