Skip to content

Commit

Permalink
fix(android): remove unsupported transitions from TabGroupProxy
Browse files Browse the repository at this point in the history
  • Loading branch information
Gary Mathews committed Apr 9, 2019
1 parent 6a9a5d4 commit ad78c3e
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -420,11 +420,7 @@ protected void handleOpen(KrollDict options)
int exitAnimation = TiConvert.toInt(options.get(TiC.PROPERTY_ACTIVITY_EXIT_ANIMATION), 0);
topActivity.overridePendingTransition(enterAnimation, exitAnimation);
} else {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
topActivity.startActivity(intent, createActivityOptionsBundle(topActivity));
} else {
topActivity.startActivity(intent);
}
topActivity.startActivity(intent);
}
}

Expand Down

0 comments on commit ad78c3e

Please sign in to comment.