ActionBar-PullToRefresh
ActionBar-PullToRefresh copied to clipboard
Fix problems with appcompat for Android L
With the lastest appcompat library, the minimum SDK is too high. With this change, we prevent using that version and keep us on version 20+.
Meanwhile, this problem can be solve on our apps excluding the appcompat-v7 library:
compile ('com.github.chrisbanes.actionbarpulltorefresh:extra-abc:0.9.9') {
exclude group: 'com.android.support', module: 'appcompat-v7'
}
On README.md:
PLEASE NOTE, THIS PROJECT IS NO LONGER BEING MAINTAINED
So... The pull request will not be merged
It helps me a lot
JFYI https://twitter.com/chrisbanes/status/460799199941230593
This is why the library is deprecated. Basically we should use SwipeRefreshLayout;)