mvn-repo
mvn-repo copied to clipboard
HoloEverywhere: Could not find com.google.android:support-v4:r13.
> Failed to notify project evaluation listener.
> Could not resolve all dependencies for configuration ':_DebugCompile'.
> Could not find com.google.android:support-v4:r13.
Required by:
:whi-weheartit-android:unspecified > com.actionbarsherlock:actionbarsherlock:4.4.0
> Could not find com.google.android:support-v4:r13.
Required by:
:whi-weheartit-android:unspecified > org.holoeverywhere:library:1.6.8
I think I know what is going on. Android SDK's m2 repo was recently modified, r13 is now located at com.android.support:support-v4:13.0.0
Thank you a lot!
I think I know what is going on. Android SDK's m2 repo was recently modified, r13 is now located at com.android.support:support-v4:13.0.0
....I use the support libs like this:
dependencies { compile 'com.android.support:support-v4:18.0.+' compile 'com.android.support:appcompat-v7:18.0.+' }
@derdoktor667 Yeah, me too. But the HE lib AAR in Goddchen's repo seems to be pointing to com.google.android:support-v4:r13
.
So how do we fix this issue ik got the same problem
Gradle: A problem occurred configuring project ':FBApp'.
Failed to notify project evaluation listener. Could not resolve all dependencies for configuration ':FBApp:_DebugCompile'. > Could not find com.google.android:support-v4:r13. Required by: HoloEverywhereTestProject:FBApp:unspecified > com.actionbarsherlock:actionbarsherlock:4.3.1 HoloEverywhereTestProject:FBApp:unspecified > com.github.manuelpeinado.multichoiceadapter:multichoiceadapter:2.2.5 HoloEverywhereTestProject:FBApp:unspecified > com.github.manuelpeinado.refreshactionitem-native:RefreshActionItem:1.0.3 > Could not find com.google.android:support-v4:r13. Required by: HoloEverywhereTestProject:FBApp:unspecified > org.holoeverywhere:addon-preferences:1.6.8 > org.holoeverywhere:library:1.6.8
buildscript { repositories { mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:0.5.+' } } apply plugin: 'android'
repositories { mavenCentral()
maven {
url 'https://github.com/Goddchen/mvn-repo/raw/master/'
}
}
android { compileSdkVersion 17 buildToolsVersion "17.0.0"
defaultConfig {
minSdkVersion 7
targetSdkVersion 17
}
}
dependencies { compile 'com.android.support:support-v4:18.0.+' compile 'com.android.support:appcompat-v7:18.0.+' compile 'com.actionbarsherlock:actionbarsherlock:4.3.1' // use this for ActionBarSherlock (org. MavenCentral): //compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar' compile 'com.android:volley:1.0' compile 'com.actionbarsherlock:viewpagerindicator:2.4.1' compile 'com.jeremyfeinstein.slidingmenu:slidingmenu:1.3-SNAPSHOT' compile 'org.holoeverywhere:holoeverywhere:1.6.8' compile 'org.holoeverywhere:addon-preferences:1.6.8' compile 'org.holoeverywhere:addon-slider:1.6.8' compile 'org.roboguice:roboguice:2.1-SNAPSHOT' compile 'com.sherlock:navigationdrawer:1.0-SNAPSHOT' compile 'com.facebook.android:facebook:3.0.2' compile 'com.mobeta.android.dslv:drag-sort-listview:0.6.1' compile 'com.doomonafireball.betterpickers:android-betterpickers:1.3.1' compile 'net.simonvt.menudrawer:menudrawer:3.0.3' compile 'com.emilsjolander:stickylistheaders:1.0.0-SNAPSHOT' compile 'org.jraf:android-switch-backport:1.0' compile 'com.github.manuelpeinado.multichoiceadapter:multichoiceadapter:2.2.5' compile 'com.github.manuelpeinado.glassactionbar:glassactionbar:0.2.1' compile 'com.github.chrisbanes.actionbarpulltorefresh:library:0.5' compile 'com.github.chrisbanes.actionbarpulltorefresh:extra-abs:0.5' compile 'com.github.manuelpeinado.refreshactionitem-native:RefreshActionItem:1.0.3' compile 'com.larswerkman:holo-color-picker:1.0-SNAPSHOT' compile 'com.fortysevendeg.swipelistview:swipelistview:1.0-SNAPSHOT'
}
....sorry, tanab but did you really copy&paste the whole read.me??? maybe try using just the libs you need may help