0
votes

I might be missing this in the documentation but I have gotten the new WebRTC working on my local and testing my app online. When I tried to test in on my Andriod Device using the BuildFire App preview, I got an error message that said "Rebuild_Required". The code that produced the error is this:

buildfire.services.camera.isAuthorized(null, (err, status) => {
      console.log("Camera Result");
      if (err) {
        buildfire.dialog.alert({title : "Error",message : err}, (err, data) => {

        });
        
        return console.error(err)
      };
});

How do I do a rebuild?