2015-08-26 41 views

回答

4

通道信息写在安装类中。只需清除“通道”栏。

ParseInstallation installation = ParseInstallation.getCurrentInstallation(); 
installation.remove("channels"); 
installation.saveEventually(new SaveCallback() { // or saveInBackground 
    @Override 
    public void done(ParseException e) { 
     // TODO: add code here 
    } 
}); 
相关问题