Could not find com.github.GrenderG:Toasty:1.5.0.
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
Same issue
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 } }
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
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.
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
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