react-native 使用 "avoscloud-sdk": "^1.0.0-rc7"

    User.logIn(this.state.username, this.state.password).then((currentUser)=>{
      Alert.alert('Success',
        'Welcome back',
        [
          {text: 'OK'},
        ]
      )
      // that.props.navigator.popToTop();
    }).catch(function(error) {
      Alert.alert('Error',
        error.message,
        [
          {text: 'OK'},
        ]
      )
    });

之后报错 Get current user failed. It seems this runtime use an async storage system, please new AV.File in the callback of AV.User.currentAsync().
实际是已经登陆了。

如私信,已复现,这个 warning 不影响程序功能,app 发布后也不会出现在用户界面。如还有问题请及时反馈,谢谢。

我在登录之后也每次都会出现这个 warning,请问有办法把它消除掉吗?

而且这个报错的意思似乎是获取 File(对应我的用户应该是指用户的 avatar 用的是 File)并不是在异步获取 User 之后获得,报错的来源是什么呢,确实不影响使用吗?

谢谢。