我正在尝试导入命名空间,如下所示,但是在进入ResultCodes时出现错误。我正在使用Android Studio 3.2版,并且已成功将Firebase添加到我的Android项目中。
import com.firebase.ui.auth.ResultCodes;
最佳答案
根据this commit的说法,ResultCodes
类已被删除,而改为使用Activity
和ErrorCodes
:Activity.RESULT_OK
替换ResultCodes.OK
Activity.RESULT_CANCELED
替换ResultCodes.CANCELLED
ErrorCodes.NO_NETWORK
替换ResultCodes.NO_NETWORK
ErrorCodes.UNKNOWN_ERROR
替换ResultCodes.UNKNOWN_ERROR
有关使用这些代码的更多信息,请参见here。
关于android - 无法导入com.firebase.ui.auth.ResultCodes,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52737950/