反应本机应用程序firebase.auth()不是函数

时间:2019-05-24 09:20:49

标签: firebase react-native firebase-authentication

我在开发中有一个使用Firebase身份验证的React本机应用程序。到昨天为止一切都很好。我昨天使用以下命令构建了应用程序

  

react-native软件包--platform android --dev false --entry-file   index.js-捆绑输出   android / app / src / main / assets / index.android.bundle --assets-dest   android / app / src / main / res

     

gradlew assembleRelease

此后,尝试登录时未创建的apk或源代码不起作用。这表明firebase.auth()不是函数。这是我的代码

firebase.auth().signInWithEmailAndPassword(email, password).then((user) => {
  this.props.navigation.navigate('Restaurent')
  if(user){
    //--------------------------Async Test--------------------------
     AsyncStorage.setItem("user", firebase.auth().currentUser.uid)
     console.log("AsyncStorage= "+ asyncValue)
    //--------------------------------------------------------------
  }else{

  }
}

0 个答案:

没有答案