我最近将Android Studio更新为3.0。我尝试使用Preconditions.checkNotNull(),但显示以下消息错误。

仅可从同一库组(groupId = com.android.support)中调用Preconditions.checkNotNull()。

我搜索了其他一些链接,发现在推出较早的支持库版本时发生了类似的情况。

AppCompatActivity.onCreate can only be called from within the same library group

建议的答案告诉我禁用棉绒警告,但从长远来看,我认为这不是正确的选择。

为什么会出现此特定错误的任何解释?

最佳答案

请改用androidx。

import androidx.core.util.Preconditions;

ref = Preconditions.checkNotNull(anotherRef);

07-27 16:09