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

Gentry

Member
Licensed User
Longtime User
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 that for a wrapped library like this.

Thank you for the library, and the guidance.

Man, hardcore about new threads.

Gentry
 

DonManfred

Expert
Licensed User
Longtime User
Can we see an example of enabling DeveloperMode?
First the lib needs to be rewritten as i lost the source with my HDD Crash last year. ;-)
 

DonManfred

Expert
Licensed User
Longtime User
, but I have no idea how to craft that for a wrapped library like this.
Basically it is like this
B4X:
    Dim setting As ConfigSettingsBuilder
    setting.Initialize.setDeveloperModeEnabled(True)
    cfg.ConfigSettings = setting.build

Please find the completely rewritten Library attached.
 

Attachments

  • FirebaseRemoteConfigV2.01.zip
    7.7 KB · Views: 332
  • RemoteConfigEx.zip
    8.2 KB · Views: 331

Gentry

Member
Licensed User
Longtime User
Sorry for your loss. Thanks for the rapid re-do and recovery, and the Developer Mode seems to working smashingly!

How did you generate a new wrapper so quickly? (Is there a wrapper generator?)

I haven't made a single $ on my B4A projects yet, but you have a donation inbound.

Thanks!
Gentry
 

DonManfred

Expert
Licensed User
Longtime User
Is there a wrapper generator?
sure. My brain :D And my knowledge about how to do a wrapper. And my experiences in wrapping.
Additionally i already did a wrapper for this in the past so it was not new for me :)

Thank you very much for your donation! Really appreciated ;-)
 
Last edited:
Top