We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 12b1a46 + 231c0cb commit 6afde5fCopy full SHA for 6afde5f
android/src/main/java/com/iterable/reactnative/RNIterableAPIModule.java
@@ -588,6 +588,18 @@ public String onAuthTokenRequested() {
588
}
589
590
591
+ @Override
592
+ public void onTokenRegistrationSuccessful(String authToken) {
593
+ IterableLogger.v(TAG, "authToken successfully set");
594
+ //TODO: Pass successhandler to event listener
595
+ }
596
+
597
598
+ public void onTokenRegistrationFailed(Throwable object) {
599
+ IterableLogger.v(TAG, "Failed to set authToken");
600
+ //TODO: Pass failureObject to event listener
601
602
603
@ReactMethod
604
public void addListener(String eventName) {
605
// Keep: Required for RN built in Event Emitter Calls.
0 commit comments