我遇到以下问题:
这是我的验证活动代码:
NSFileProtectionKey
这是我在mainActivity中的代码:
let attributes = try? FileManager.default.attributesOfItem(atPath: sqlite_path)
print(attributes)
答案 0 :(得分:0)
由于数字格式是问题,我认为您最好的做法是将Log.d调用添加到sendVerificationCode方法中。所以看起来像这样:
public void sendVerificationCode(String mobile){
Log.d("NumberCheck", "The string mobile is - " + mobile); //This should help you identify what the issue is
CodeBar.setVisibility(View.VISIBLE);
PhoneAuthProvider.getInstance().verifyPhoneNumber(
"+55"+mobile,
60,
TimeUnit.SECONDS,
TaskExecutors.MAIN_THREAD,
mCallBack
然后,您应该能够看到导致问题的原因。