Skip to content

Release v1.1.9

Compare
Choose a tag to compare
@salmatarzi salmatarzi released this 24 Jul 18:50
· 1482 commits to master since this release

Added support for setting the floating button edge and, the floating button offset from the top.

Added Set Intro Message Enabled Instabug.setIntroMessageEnabled(true); for Android.

Deprecate the old package constructor

new RNInstabugReactnativePackage("YOUR_APP_TOKEN", MainApplication.this,"shake","#1D82DC")

for the new

new RNInstabugReactnativePackage.Builder("YOUR_APP_TOKEN", MainApplication.this)
                           .setInvocationEvent("shake")
                           .setPrimaryColor("#1D82DC")
                           .setFloatingEdge("left")
                           .setFloatingButtonOffsetFromTop(250)
                           .build()