Temporary fix for broken developer preview of Support Library

This commit is contained in:
str4d
2014-06-28 03:37:23 +00:00
parent 06917a7189
commit a37284d4df

View File

@@ -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'
}
}