Android 如何从parse的安装表中删除记录

Android 如何从parse的安装表中删除记录,android,parse-platform,Android,Parse Platform,我的代码如下: public static void insertObjectIdInIinstallation(){ ParseInstallation installation =ParseInstallation.getCurrentInstallation(); installation.put(Constants.USER,ParseUser.getCurrentUser()); } //cannot update th

我的代码如下:

public static void insertObjectIdInIinstallation(){
            ParseInstallation installation =ParseInstallation.getCurrentInstallation();
            installation.put(Constants.USER,ParseUser.getCurrentUser());
        }

//cannot update the installation table object id    

ParseInstallation installation =ParseInstallation.getCurrentInstallation();
            installation.deleteInBackground(new DeleteCallback() {
                @Override
                public void done(ParseException e) {
                    if (e != null) {
                        Log.d("error", e.toString());
                    }
                }
            });

我想从解析表中删除记录。此外,我无法删除在安装应用程序时插入的行。

是否要删除整个记录?是的,我要删除整个记录当您使用上述代码时,您面临什么问题?