有可能做这样的事情吗?:
not = AndroidCheck.isJellyBeanOrLater() ? notB.build()
: notB.getNotification();
这会导致错误,.build()
因为它是 JellyBean(API16) 和更高版本的方法,并且 .getNotification() 是 JellyBean 方法的早期版本。
API MinVersion=10 Version=17
目标是:Android 版本对 JellyBean 来说是早期的,它使用.getNotification()
不推荐使用的方法,如果不是,它使用实际的.build()
方法。
你能帮帮我吗?=)
谢谢