it worked before I don't change anything but today I got this error, here my gradle
buildscript { repositories { mavenCentral() maven { url 'https://maven.fabric.io/public' } jcenter() } dependencies { classpath 'io.fabric.tools:gradle:1.+' }}
Looks like jcenter is reporting that it has fabric and crashlytics but they don't.
What fixed it for me is to move the fabric maven up before jcenter like this:
repositories { mavenLocal() maven { url "https://maven.fabric.io/public" } jcenter() google() }
There is some change in fabric please check this:- https://docs.fabric.io/android/changelog.html#fabric-dependency-to-1-4-3
Add this to your gradle:-
compile group: 'io.fabric.sdk.android', name: 'fabric', version: '1.4.3'
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With