Releases: Instabug/Instabug-React-Native
Releases · Instabug/Instabug-React-Native
Release v2.0.3
- Fix a crash for iOS 8
- Add linking and unlinking scripts for the Instabug framework to get added automatically upon linking and unlinking the SDK
Release v2.0.2
Fix the import in the bridge header file to account for changes in RN 0.48
Release v2.0.1
Update post linking script
Release v2.0.0
- Removes dependency on Cocoapods when installing Instabug
- Ensures consistency between React Native SDK, and the Native SDK
Release v1.2.4
- Add api setSuccessDialogEnabled(boolean)
- Add api setEnableInAppNotificationSound(boolean) for Android
- Automatically run pod install after installing the SDK to install the latest native iOS version of the SDK
- Upgrade the native Android version of the SDK
Release v1.2.3
Fix a bug in the setUserAttribute API in iOS where the key and value were mixed
Release v1.2.2
Update to use the latest version of the native SDK
Release v1.2.1
Add sendEvent
method to the module class
Add missing imports in the module class
Release v1.2.0
Fix bug where callbacks could only get invoked once
Fix bug where appendTags()
accepted a String, and not an array of tags
Remove setPrimaryColor()
from android
Release v1.1.9
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()