无法在 android studios 上使用 back4app 将文件保存到当前用户

问题描述

每次我尝试向当前用户添加图片时,它都不会将其添加到解析中.... heres what my back4app looks like(click)

  ParseUser user =  ParseUser.getCurrentUser();
        user.put("profileImg",new ParseFile(photoFile));
        user.put("profileBackground",new ParseFile(backFile));

        user.saveInBackground(new SaveCallback() {
            @Override
            public void done(ParseException e) {
                if(e != null){
                Log.e(TAG,"Error while saving",e);
                }
                else {
                    Log.i(TAG,"PROPERLY SAVED");
                    Intent intent = new  Intent(AddProfileImageActivity.this,MainActivity.class);
                    startActivity(intent);
                }


            }
        });

the error code (click)

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)