diff --git a/app/build.gradle b/app/build.gradle index 2581555..56fd270 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -22,6 +22,12 @@ dependencies { compile fileTree(dir: 'libs', include: '*.jar') compile 'com.android.support:support-v4:19.+' compile 'com.android.support:appcompat-v7:19.+' - compile 'com.github.chrisbanes.actionbarpulltorefresh:extra-abc:+' - compile 'com.mcxiaoke.viewpagerindicator:library:2.4.1' + // TODO temporary fix for broken developer preview of Support Library + compile ('com.github.chrisbanes.actionbarpulltorefresh:extra-abc:+') { + exclude group: 'com.android.support', module: 'support-v4' + exclude group: 'com.android.support', module: 'appcompat-v7' + } + compile ('com.mcxiaoke.viewpagerindicator:library:2.4.1') { + exclude group: 'com.android.support', module: 'support-v4' + } }