Reputation: 53
I have error like this picture on today. Me already restart and invalid cache, build again. So i'm still don't why like that.
Upvotes: 5
Views: 1950
Reputation:
Try to set disable offline mode, then re-sync -> re,build
https://i.sstatic.net/UhVBN.png
Upvotes: 0
Reputation: 1
This means that one of your dependencies has an issue with the version, go to your app gradle and check if there is a .+ on any of your dependencies and just update it to the latest version, this should solve it
Upvotes: 0
Reputation: 1
I also have same issues too. My friend sent me a solution like below.
If you using OneSignal on your project I think it may be help you.
implementation ('com.onesignal:OneSignal:3.15.3') {
exclude group: 'com.google.android.gms'
}
edit it on gradle app.
Upvotes: 0
Reputation: 66
Yes..i thought im the only person who keep searching for this..i also have same issues..happened today..not sure whether its IDE issue or gradle issue since gradle cannot update..i can only proceed using offline mode..hopefully someone can check on this..
UPDATE:
checked the issue, im not sure how but on my build.gradle i just change this:
Before:
dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
After:
dependencies {
classpath 'io.fabric.tools:gradle:1.31.2'
}
Upvotes: 5