Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想找到修复错误的方法()我使用了 android 4 API Level 14,下面的代码
if (Build.VERSION.SDK_INT > Build.VERSION_CODES.JELLY_BEAN) { adapter.setBeamPushUris(null, this); }
使用此代码,请帮助我!
我认为如果您更改构建目标,这应该可以编译。
In Project -> properties -> Android-> Select 4.1
编辑:你的情况也不正确。这个 api 是在 JellyBean 中引入的,所以
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN)