Closed max02100 closed 9 years ago
Could you post your gradle file?
And where did you put
maven {
url "https://jitpack.io"
}
This is my gradle file with the import from in the repositories : buildscript { repositories { jcenter() maven { url "https://jitpack.io" } } dependencies { classpath 'com.android.tools.build:gradle:1.3.0' } } apply plugin: 'com.android.application'
repositories { jcenter() }
android { compileSdkVersion 21 buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.mvince.mytripeazzy.app"
minSdkVersion 16
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'com.google.android.gms:play-services:7.0.0' compile 'com.android.support:appcompat-v7:21.0.2' compile 'com.android.support:support-v4:21.0.2' compile 'com.android.support:cardview-v7:21.0.2' compile 'com.android.support:recyclerview-v7:21.0.2' compile 'com.getbase:floatingactionbutton:1.9.1' compile 'de.hdodenhof:circleimageview:1.2.1' compile 'com.android.support:recyclerview-v7:21.0.2' compile 'com.github.traex.rippleeffect:library:1.2.3' compile 'com.google.code.gson:gson:2.2.4' compile 'com.afollestad:material-dialogs:0.7.4.2' compile 'com.facebook.android:facebook-android-sdk:3.23.1' compile 'com.sothree.slidinguppanel:library:3.0.0' compile 'it.neokree:MaterialTabs:0.11' compile 'com.edmodo:rangebar:1.0.0' compile 'com.android.support:design:22.2.0' compile 'com.iangclifton.android:floatlabel:1.0.4' compile 'com.github.paolorotolo:appintro:3.2.0' compile 'com.github.kanytu:android-parallax-recyclerview:v1.3' }
Could you try following this tutorial?
https://jitpack.io/#kanytu/android-parallax-recyclerview/v1.3
I think you're putting maven {url "https://jitpack.io"} in the wrong repository place.
Indeed!! it was in the wrong repositories :/
Thanks for your help and for the lib, it will be helpfull!
Error:A problem occurred configuring project ':app'.