Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error:Could not find fabric.aar (io.fabric.sdk.android:fabric:1.3.17)

Tags:

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.+' }} 
like image 350
hugerde Avatar asked May 28 '18 10:05

hugerde


2 Answers

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() } 
like image 163
MobileSam Avatar answered Oct 04 '22 00:10

MobileSam


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' 
like image 30
Aris_choice Avatar answered Oct 04 '22 00:10

Aris_choice