We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It works well in version 0.3.0. Here is my code snippet:
feedService.getTopicFeedList(groupId, loadPage) .compose(this.bindToLifecycle()) .subscribe( feedDetails -> { BannerFeedsAdapter adapter = (BannerFeedsAdapter) recyclerView.getAdapter(); if (adapter == null) { adapter = new BannerFeedsAdapter(BannerFeedsActivity.this, feedDetails, bannerUrl, isContainBanner); recyclerView.setAdapter(adapter); } else { adapter.append(feedDetails); adapter.notifyDataSetChanged(); } bannerImg.setVisibility(View.GONE); }, throwable -> RxUtil.handleError(throwable, BannerFeedsActivity.this) );
The type of feedDetails is Object when I use the 0.3.1 version library.
feedDetails
Object
The text was updated successfully, but these errors were encountered:
+1. I reverted back to 0.3.0 because of this.
Sorry, something went wrong.
Duplicate of #58, it's been reverted for the next release (whenever that happens, probably soon).
Using 0.3.0 in the meantime fine, since the generics is all that changed.
No branches or pull requests
It works well in version 0.3.0.
Here is my code snippet:
The type of
feedDetails
isObject
when I use the 0.3.1 version library.The text was updated successfully, but these errors were encountered: