firebase

  1. Duque

    Servicios de google

    Deseo dominar los servicios de google con b4a, en especial firebas y notificaciones push. Cuanto me costara esto?, expertos en el tema estaré atento.
  2. Kevin

    Android Question FireBaseAdMob causing compilations problems

    I added this library to my project and with it, I cannot get through compiling the app (and it is a small, simple app). I get this: I haven't adjusted the timeout period yet because this just can't be right. Without the FireBaseAdMob library, the app compiles in about 10-12 seconds.
  3. Gentry

    Android Question Can one app use multiple firebase databases?

    I would like to partition my app user data into separate firebase databases (due to discrete regional activity), but I'd like to only have a single app and change the database target programmatically. The data is secured behind firebase auth (google currently) but I am considering starting with...
  4. Alexander Stolte

    B4J Tutorial Firebase Service (Server) Example

    Hey, this is an example/tutorial of a Server that manages Firebase Subscribtions, Unsubscribtions and SendMessages2Topics with the Power of B4J Server! The advantage is, requests are processed very quickly (barely waiting period), I do not have to start a script, save resources of the VPS or...
  5. Alexander Stolte

    B4J Question Firebase Storage Delete File

    Hello, is this possible with B4J? I did not find anything. But maybe someone already has experience with it. :cool: This is useful, because if i delete a post in the MySQL then i want to delete the image from Firebase over a script from my database. Then I am also in privacy, because the...
  6. uniplan

    Android Question SOLVED - Firebase push problem, but login work

    Hi, i'm working with b4A 7.30 and i have created some apps with firebase (social login and push) and i haven't any kind of problem. But i don't know, now, with new app, the login with firebase work fine, but don't work the push notification. fm_MessageArrived not raised! i'm trying with b4j...
  7. Gentry

    Android Tutorial Firebase Remote Config - how to enable developer mode?

    Can we see an example of enabling DeveloperMode? Quickly running into threshold limits while experimenting on how Remote Config can be used. I suspect a javaobject would need to be constructed to set FirebaseRemoteConfigSettings.Builder.isDeveloperMode() = true, but I have no idea how to craft...
  8. Gktech

    Android Question Error implement the FirebaseAdMob

    When I implement the admob firebase library I am getting the following error: java.lang.IllegalStateException: A required meta-data tag in your app's AndroidManifest.xml does not exist. You must have the following declaration within the <application> element: <meta-data...
  9. stingrae

    iOS Question Firebase causes a crash in iOS

    Hi all, I have Firebase messaging working perfectly on my Android, and am now trying to get it working in iOS. I've just gone through this tutorial and then tried to compile it, but it's giving me the error below. https://www.b4x.com/android/forum/threads/firebase-integration.68623/ It seems...
  10. German Buchmuller

    Android Question Add Ads to B4A 5.70. Is it possible?

    Hi to everyone. I used to implement the AdMob library to the project. However, now when I start the app on the smartphone, the app crashes. I read on the AdMob Library that it was no longer working, and so it was replaced by the Firebase AdMob Library. The problem is that in needs B4A 6.0+ to...
  11. uniplan

    Android Question Problem receive push android 7

    Hi...i have a particular problem on devices android with Android 7 version (Samsun s6 and Huawei P10) .I don't receive the push notification. With the same app on other device with android 6, i haven't this problem (Samsun Note 3). There are any type of problem? Thank you?
  12. Seneca

    Spanish FirebaseNotifications. ¿Es posible consultar a Firebase a qué temas se está subscrito?

    Hola. Un dispositivo puede subscribirse a uno o varios temas de FirebaseNotifications. Al respecto me surgen dos dudas. La primera es si existe algún método por el cual un usuario puede consultar desde la App a qué temas está subscrito. La segunda es: Desde el panel de administración de...
  13. Alexander Stolte

    Android Question Firebase Cloud Messaging Update Push Subscriptions

    Good Day, if a device is first time using the FCM in a App, then he create an Instance ID, with this ID he can subscribe for topics or you can send a push message to this device with this ID. The problem is, Over time, you subscribe to a heap of topics and this ID is not forever this ID is...
  14. avalle

    Android Question Images and buttons in Firebase Notifications

    Hello, I've started working with Firebase Notification messages successfully following the various guides. Now I want to add images and buttons that show directly in the notification and I'm a little confused on how best to do that. Here's a guide I've found with a sample of a possible result...
  15. J

    Android Question Real time messaging question

    I have an App that in its simplistic mode is a Tally system for knowing which competitors have gone afloat and who are ashore. The Competitors have RFID tags. There can be multiple stations where the competitors tally out and in. Version 1 of the App Written in B4A can use Android mobile...
  16. fredo

    Android Code Snippet Get Firebase config parameters from google-services.json

    Code to get configuration parameters from google-services.json Put this in the "Starter" service module: Sub Process_Globals Dim mapFirebaseServices As Map End Sub Sub Service_Create 'This is the program entry point. 'This is a good place to load resources that are not specific to...
  17. Gentry

    Android Question Firebase Auth - With Resumable Sub

    I am trying to achieve an elegant Firebase authentication module that transparently re-authenticates and renews the Firebase Token after the initial authentication. If the re-authentication or the token renewal fails, then the module should display the login button and allow a fresh login...
  18. DonManfred

    B4A Library Firebase UI Auth - a new Dimension in Authentication

    This is a Wrap for the Firebase UI-bindings found at Github. It offers Authentification using - Google-Account (Tested) - email and password authentification (Tested) - Telephone-Authentification (Tested) - Twitter (Not tested as i do not have a Twitter-Dev Account) - Facebook (Not tested as i...
  19. Alexander Stolte

    Android Question Firebase Auth - How to add custom auth

    Hello, Currently I'm using the anonymous auth method, but since I've noticed that this ID just changes after a while, I want to use my own ID for authenfication, i store a user_id (on my MySql database) based on a hash value that on the same device is ever the same, this id i want to use in...
  20. fabricio

    B4J Code Snippet Send notifications to one of two apps in the same project at firebase

    Private Sub SendMessage(Topic As String, Title As String, Body As String) Dim Job As HttpJob Job.Initialize("fcm", Me) Dim m As Map = CreateMap("to": $"/topics/${Topic}"$, "restricted_package_name": "YOUR_PACKAGE") Dim data As Map = CreateMap("title": Title, "body": Body)...
Top