Skip to content

Commit

Permalink
Release 1.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lorenc-tomasz committed Mar 16, 2020
1 parent 13921b6 commit 5021ff6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.2.2

- [Android] Fix crash with initPushHandling(). More info: https://github.com/mixpanel/mixpanel-android/pull/582

# 1.2.1

- [Android] Update SDK to 5.8.1 (https://github.com/mixpanel/mixpanel-android/releases/tag/v5.8.1) Check referrer changes on: https://github.com/mixpanel/mixpanel-android/releases/tag/v5.8.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,9 @@ public void clearSuperProperties(final String apiToken, Promise promise) {
public void initPushHandling (final String token, final String apiToken, Promise promise) {
final MixpanelAPI instance = getInstance(apiToken);
synchronized(instance) {
instance.getPeople().initPushHandling(token);
// REMOVED: https://github.com/mixpanel/mixpanel-android/pull/582
// is not needed any more as it uses FCM
// instance.getPeople().initPushHandling(token);
}
promise.resolve(null);
}
Expand Down

0 comments on commit 5021ff6

Please sign in to comment.