Skip to content

2.30.6

Compare
Choose a tag to compare
@ariefnurputranto ariefnurputranto released this 26 Mar 07:33
· 335 commits to master since this release
  • Improve handling mqtt connection
  • Implement getUsers feature,
    for example :
QiscusApi.getInstance().getUsers(1, 20, "")
                .subscribeOn(Schedulers.io())
                .observeOn(AndroidSchedulers.mainThread())
                .subscribe(new Action1<List<QiscusAccount>>() {
                    @Override
                    public void call(List<QiscusAccount> qiscusAccounts) {
                    
                    }
                }, new Action1<Throwable>() {
                    @Override
                    public void call(Throwable throwable) {
                        throwable.printStackTrace();
                    }
                })