-2

My question is it possible to simply run on pre-Lollipop devices without transition and run on lollipop with transition or animation ?

1 Answers1

0
int currentapiVersion = android.os.Build.VERSION.SDK_INT;
if (currentapiVersion >= android.os.Build.VERSION_CODES.FROYO){
    // Do something for froyo and above versions
} else{
    // do something for phones running an SDK before froyo
}

check API level or sdk version with this condition

Root4770
  • 48
  • 8