Toasty icon indicating copy to clipboard operation
Toasty copied to clipboard

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

Open tinadanweb opened this issue 4 years ago • 6 comments

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

tinadanweb avatar Aug 07 '21 04:08 tinadanweb

Same issue

Gaurav-Joshi-31 avatar Sep 14 '21 07:09 Gaurav-Joshi-31

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

Gaurav-Joshi-31 avatar Sep 14 '21 08:09 Gaurav-Joshi-31

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

junki111 avatar Oct 25 '21 11:10 junki111

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.

YashNishal avatar Nov 09 '21 06:11 YashNishal

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

dinukapj avatar Dec 08 '21 00:12 dinukapj

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

Loyreau avatar Jan 09 '22 09:01 Loyreau