|
TransitionManager.beginDelayedTransition((ViewGroup) tab.getCustomView()); |
Lint reports that beginDelayedTransition requires API 19, the current min is 15
TransitionManager.beginDelayedTransition((ViewGroup) tab.getCustomView());
My release build fails unless I specify the lint options to prevent abortonfailure, but I assume this might crash on devices running lower than 19?
Edit: Confirmed. It crashes on a device running 18, when the badge text is displayed
badgedtablayout/badgedtablayout/src/main/java/com/rahimlis/badgedtablayout/BadgedTabLayout.java
Line 364 in 5da7ae3
Lint reports that beginDelayedTransition requires API 19, the current min is 15
TransitionManager.beginDelayedTransition((ViewGroup) tab.getCustomView());My release build fails unless I specify the lint options to prevent abortonfailure, but I assume this might crash on devices running lower than 19?
Edit: Confirmed. It crashes on a device running 18, when the badge text is displayed