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

Could not find com.github.GrenderG:Toasty:1.5.0. #174

Open
tinadanweb opened this issue Aug 7, 2021 · 6 comments
Open

Could not find com.github.GrenderG:Toasty:1.5.0. #174

tinadanweb opened this issue Aug 7, 2021 · 6 comments

Comments

@tinadanweb
Copy link

tinadanweb commented Aug 7, 2021

project gradle:

allprojects {
    repositories {
        jcenter()
        maven { url "https://jitpack.io" }
    }
}

added in build:

 implementation 'com.github.GrenderG:Toasty:1.5.0'

i've got:

Could not find com.github.GrenderG:Toasty:1.5.0.
Required by:
    project :app
Search in build.gradle files

my Studio is Arctic Fox 2020.3.1

@Gaurav-Joshi-31
Copy link

Same issue

@Gaurav-Joshi-31
Copy link

Found the solution:
I am using Android Studio Arctic Fox 2020.3.1

Instead of adding maven { url "https://jitpack.io" } in your project level gradle file add it in settings.gradle

In settings.gradle
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
jcenter() // Warning: this repository is going to shut down soon
}
}

@junki111
Copy link

Found the solution: I am using Android Studio Arctic Fox 2020.3.1

Instead of adding maven { url "https://jitpack.io" } in your project level gradle file add it in settings.gradle

In settings.gradle repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() maven { url "https://jitpack.io" } jcenter() // Warning: this repository is going to shut down soon } }

This is what finally worked for me after being stuck for over an hour. Thanks

@YashNishal
Copy link

Found the solution: I am using Android Studio Arctic Fox 2020.3.1

Instead of adding maven { url "https://jitpack.io" } in your project level gradle file add it in settings.gradle

In settings.gradle repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() maven { url "https://jitpack.io" } jcenter() // Warning: this repository is going to shut down soon } }

I think the Readme file should be updated.

@dinukapj
Copy link

dinukapj commented Dec 8, 2021

Found the solution: I am using Android Studio Arctic Fox 2020.3.1

Instead of adding maven { url "https://jitpack.io" } in your project level gradle file add it in settings.gradle

In settings.gradle repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() maven { url "https://jitpack.io" } jcenter() // Warning: this repository is going to shut down soon } }

This worked for me too! Cheers

@Loyreau
Copy link

Loyreau commented Jan 9, 2022

Found the solution: I am using Android Studio Arctic Fox 2020.3.1

Instead of adding maven { url "https://jitpack.io" } in your project level gradle file add it in settings.gradle

In settings.gradle repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) repositories { google() mavenCentral() maven { url "https://jitpack.io" } jcenter() // Warning: this repository is going to shut down soon } }

This finally worked! Thank you very much

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

6 participants