if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP) {
objectAnimatorTran = ObjectAnimator.ofArgb(ivAusRocket, "ColorFilter", getResources().getColor(R.color.white), getResources().getColor(R.color.transparent));
objectAnimatorTran.setDuration(5000);
objectAnimatorTran.setRepeatCount(-1);
}