@@ -26,27 +26,27 @@ The table below contains a list of APIs we're planning to implement for our 1.0
26
26
27
27
| API Method | Native Equivalent |
28
28
| ------------| -----------------------------------------------------------------------------------------------------------------------------------------|
29
- | | Android: ` new Instabug.Builder(this, "APP_TOKEN").build() ` <br >iOS: ` + [Instabug startWithToken:invocationEvents:] ` |
30
- | | Android: ` Instabug.showWelcomeMessage(WelcomeMessage.State state) ` <br >iOS: ` + [Instabug showWelcomeMessageWithMode:] ` |
31
- | | Android: ` Instabug.identifyUser(String username, String email) ` <br >iOS: ` + [Instabug identifyUserWithEmail:name:] ` |
32
- | | Android: ` Instabug.logoutUser() ` <br >iOS: ` + [Instabug logOut] ` |
33
- | | Android: ` Instabug.setLocale(Locale locale) ` <br >iOS: ` + [Instabug setLocale:] ` |
34
- | | Android: ` Instabug.setColorTheme(InstabugColorTheme theme) ` <br >iOS: ` + [Instabug setColorTheme:] ` |
35
- | | Android: ` Instabug.addTags(String... tags) ` <br >iOS: ` + [Instabug appendTags:] ` |
36
- | | Android: ` Instabug.resetTags() ` <br >iOS: ` + [Instabug resetTags] ` |
37
- | | Android: ` Instabug.getTags() ` <br >iOS: ` + [Instabug getTags] ` |
38
- | | Android: ` Instabug.setCustomTextPlaceHolders(InstabugCustomTextPlaceHolder placeholder) ` <br >iOS: ` + [Instabug setValue:forStringWithKey:] ` |
39
- | | Android: ` Instabug.setUserAttribute(String key, String value) ` <br >iOS: ` + [Instabug setUserAttribute:withKey:] ` |
40
- | | Android: ` Instabug.getUserAttribute(String key) ` <br >iOS: ` + [Instabug userAttributeForKey:] ` |
41
- | | Android: ` Instabug.removeUserAttribute(String key) ` <br >iOS: ` + [Instabug removeUserAttributeForKey:] ` |
42
- | | Android: ` Instabug.getAllUserAttributes() ` <br >iOS: ` + [Instabug userAttributes:] ` |
43
- | | Android: ` Instabug.logUserEvent(String name) ` <br >iOS: ` + [Instabug logUserEventWithName:] ` |
44
- | | Android: ` BugReporting.invoke() ` <br >iOS: ` + [IBGBugReporting invoke] ` |
45
- | | Android: ` BugReporting.invoke(InvocationMode mode, @InvocationOption int... options) ` <br >iOS: ` + [IBGBugReporting invokeWithMode:options:] ` |
46
- | | Android: ` InstabugLog.d(String message) ` <br >iOS: ` + [IBGLog log:] ` |
47
- | | Android: ` InstabugLog.v(String message) ` <br >iOS: ` + [IBGLog logVerbose:] ` |
48
- | | Android: ` InstabugLog.d(String message) ` <br >iOS: ` + [IBGLog logDebug:] ` |
49
- | | Android: ` InstabugLog.i(String message) ` <br >iOS: ` + [IBGLog logInfo:] ` |
50
- | | Android: ` InstabugLog.w(String message) ` <br >iOS: ` + [IBGLog logWarn:] ` |
51
- | | Android: ` InstabugLog.e(String message) ` <br >iOS: ` + [IBGLog logError:] ` |
52
- | | Android: ` Instabug.clearLogs() ` <br >iOS: ` + [IBGLog clearAllLogs:] ` |
29
+ | | ` new Instabug.Builder(this, "APP_TOKEN").build() ` <br >` + [Instabug startWithToken:invocationEvents:] ` |
30
+ | | ` Instabug.showWelcomeMessage(WelcomeMessage.State state) ` <br >` + [Instabug showWelcomeMessageWithMode:] ` |
31
+ | | ` Instabug.identifyUser(String username, String email) ` <br >` + [Instabug identifyUserWithEmail:name:] ` |
32
+ | | ` Instabug.logoutUser() ` <br >` + [Instabug logOut] ` |
33
+ | | ` Instabug.setLocale(Locale locale) ` <br >` + [Instabug setLocale:] ` |
34
+ | | ` Instabug.setColorTheme(InstabugColorTheme theme) ` <br >` + [Instabug setColorTheme:] ` |
35
+ | | ` Instabug.addTags(String... tags) ` <br >` + [Instabug appendTags:] ` |
36
+ | | ` Instabug.resetTags() ` <br >` + [Instabug resetTags] ` |
37
+ | | ` Instabug.getTags() ` <br >` + [Instabug getTags] ` |
38
+ | | ` Instabug.setCustomTextPlaceHolders(InstabugCustomTextPlaceHolder placeholder) ` <br >` + [Instabug setValue:forStringWithKey:] ` |
39
+ | | ` Instabug.setUserAttribute(String key, String value) ` <br >` + [Instabug setUserAttribute:withKey:] ` |
40
+ | | ` Instabug.getUserAttribute(String key) ` <br >` + [Instabug userAttributeForKey:] ` |
41
+ | | ` Instabug.removeUserAttribute(String key) ` <br >` + [Instabug removeUserAttributeForKey:] ` |
42
+ | | ` Instabug.getAllUserAttributes() ` <br >` + [Instabug userAttributes:] ` |
43
+ | | ` Instabug.logUserEvent(String name) ` <br >` + [Instabug logUserEventWithName:] ` |
44
+ | | ` BugReporting.invoke() ` <br >` + [IBGBugReporting invoke] ` |
45
+ | | ` BugReporting.invoke(InvocationMode mode, @InvocationOption int... options) ` <br >` + [IBGBugReporting invokeWithMode:options:] ` |
46
+ | | ` InstabugLog.d(String message) ` <br >` + [IBGLog log:] ` |
47
+ | | ` InstabugLog.v(String message) ` <br >` + [IBGLog logVerbose:] ` |
48
+ | | ` InstabugLog.d(String message) ` <br >` + [IBGLog logDebug:] ` |
49
+ | | ` InstabugLog.i(String message) ` <br >` + [IBGLog logInfo:] ` |
50
+ | | ` InstabugLog.w(String message) ` <br >` + [IBGLog logWarn:] ` |
51
+ | | ` InstabugLog.e(String message) ` <br >` + [IBGLog logError:] ` |
52
+ | | ` Instabug.clearLogs() ` <br >` + [IBGLog clearAllLogs:] ` |
0 commit comments