Built.io upload progress - android

122 Views Asked by At

I want to show progress of my file upload. I use built.io to store my files, but really don't know how I can show progress, because I think built.io does not support this.

This is how I send file:

 final BuiltFile builtFileObject = new BuiltFile();
    builtFileObject.setFile(tempFile.getPath());
    builtFileObject.save(new BuiltResultCallBack() {
        @Override
        public void onSuccess() {
        }

        @Override
        public void onError(BuiltError builtError) {
            Toast.makeText(getContext(),"blad zapisu pliku",Toast.LENGTH_SHORT).show();
        }

        @Override
        public void onAlways() {

        }
    });
1

There are 1 best solutions below

0
On BEST ANSWER

This is not possible using the current SDK provided by built.io. There is a plan to support this in the future.

A workaround is to call built.io using the REST APIs (check out the REST section on https://docs.built.io/guide#uploads). The regular HTTP upload call can then be tracked to get the progress detail.

Please mail us at [email protected] if you have any more queries with this! Glad to help.