From f78b91c9f3fcbef11470cbad320272caf10e9f43 Mon Sep 17 00:00:00 2001 From: DevHossamHassan Date: Thu, 11 May 2017 19:00:18 +0200 Subject: [PATCH] Add ReportCategories API to index.js --- index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.js b/index.js index 43d21c4..2e0e266 100644 --- a/index.js +++ b/index.js @@ -500,6 +500,8 @@ module.exports = { setReportCategories: function (titles) { if (Platform.OS == 'ios') { Instabug.setReportCategories(titles, null); + }else if(Platform.OS == 'android') { + Instabug.setReportCategories(titles); } },