Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Failed to resolve: com.yarolegovich:sliding-root-nav:1.1.1 #93

Open
jayantsadhu opened this issue Jan 23, 2022 · 13 comments
Open

Failed to resolve: com.yarolegovich:sliding-root-nav:1.1.1 #93

jayantsadhu opened this issue Jan 23, 2022 · 13 comments

Comments

@jayantsadhu
Copy link

jayantsadhu commented Jan 23, 2022

I'm trying to setup this dependency from last 24hrs but still no clue. A little help would be much appreciated.
Attaching my build.gradle files.
(project)

buildscript {
    repositories {
        google()
        mavenCentral()
    }
    dependencies {
        classpath "com.android.tools.build:gradle:7.0.4"
    }
}
allprojects {
    repositories {
        google()
        mavenCentral()
        def githubProperties = new Properties()
        githubProperties.load(new FileInputStream(rootProject.file("github.properties")))
        repositories {
            maven {
                name = "GitHubPackages"
                url = uri("https://maven.pkg.github.com/Cuberto/liquid-swipe-android")
                credentials {
                    username = githubProperties['gpr.usr'] ?: System.getenv("GPR_USER")
                    password = githubProperties['gpr.key'] ?: System.getenv("GPR_API_KEY")
                }
            }
        }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

(module)

plugins {
    id 'com.android.application'
}

android {
    compileSdk 31

    defaultConfig {
        applicationId "com.example.foodcurves"
        minSdk 21
        targetSdk 31
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
}

dependencies {

    implementation 'androidx.appcompat:appcompat:1.4.1'
    implementation 'com.google.android.material:material:1.5.0'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
    implementation 'androidx.recyclerview:recyclerview:1.3.0-alpha01'
    implementation 'androidx.cardview:cardview:1.0.0'
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'

    implementation 'com.airbnb.android:lottie:4.2.2'
    implementation fileTree(dir: "libs", include: ["*.jar"])
    implementation 'com.cuberto:liquid-swipe:1.0.0'
    implementation 'com.android.support:design:31.0.0'
    implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.5.31'
    implementation 'androidx.core:core:1.7.0'
    implementation 'androidx.core:core-ktx:1.7.0'
    
    implementation 'com.yarolegovich:sliding-root-nav:1.1.1'
}
@jayantsadhu
Copy link
Author

@yarolegovich If you could resolve this?

@FarooqKhattak
Copy link

I have the same problem. I added the dependency but my app doesn't load any class of this library.

@jasonllanes
Copy link

same issue here

@FarooqKhattak
Copy link

I solve my problem by adding jcenter beneath the maven over in setting file.

@jasonllanes
Copy link

Oww I see. I'll try

I solve my problem by adding jcenter beneath the maven over in setting file.

@NAVNEET72159
Copy link

I also have the same issue after adding this dependency.
Failed to resolve: com.yarolegovich:sliding-root-nav:1.1.1

@sami-shah
Copy link

pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
// i did this it works by just adding jcenter()
jcenter()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
// i did this it works by just adding jcenter()
jcenter()
}
}

@MaguruAlex
Copy link

it worked for me too after adding jcenter()

@ChAdilHussainGujjar
Copy link

pluginManagement { repositories { gradlePluginPortal() google() mavenCentral() // i did this it works by just adding jcenter() jcenter() } } dependencyResolutionManagement { repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() // i did this it works by just adding jcenter() jcenter() } }

It worked! Thanks

@sami-shah
Copy link

sami-shah commented Apr 26, 2022 via email

@Zakaryaef
Copy link

in settings gradle add jcenter()

@Gaurav-Suyall2025
Copy link

Thanks a lot
After adding jcenter(). It works fine.

@YashSharmaas
Copy link

Thanks alot it worked for me after adding jcenter()..
But I have a question not from this dependency I'm using Cuberto liquid flow library on my newer version of Android studio (Electric Eel) there is no all projects section under the build.gradle so where can I put the credentials of GitHub repository as mentioned in Cuberto Library....
If anyone knows please help me how to use that
Thanks alot.....

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

10 participants