We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8818594 commit 432c3a5Copy full SHA for 432c3a5
index.js
@@ -740,8 +740,17 @@ module.exports = {
740
}
741
},
742
743
+ /**
744
+ * @summary Checks wether app is development/Beta testing OR live
745
+ * Note: This API is iOS only
746
+ * It reutrns in the callback false if in development or beta testing on Test Flight, and true if app is live on the
747
+ * app store.
748
+ * @param {function} isInstabugNotificationCallback callback with argument as return value 'isLive'
749
+ */
750
isRunningLive: function(runningLiveCallBack) {
- Instabug.isRunningLive(runningLiveCallBack)
751
+ if (Platform.OS === 'ios') {
752
+ Instabug.isRunningLive(runningLiveCallBack)
753
+ }
754
755
756
/**
0 commit comments