Skip to content Skip to sidebar Skip to footer

Build Error After Migrating From Crashlytics Sdk To Fabric

Recently, we've upgraded our organization's Crashlytics account to Fabric, and I'm trying to replace the old Crashlytics SDK with the new Fabric SDK in our existing apps. I've foll

Solution 1:

It turns out that the old Crashlytics JAR was still hiding in my libs folder somehow, and after removing it, this error no longer persists.

I feel a little boneheaded, but I'll leave this up to help any future Googlers who run into the same issue. :)

Solution 2:

I found exactly what @TreKing mentioned in his comment. The upgrade/migration failed to remove the previous dependency from my app/build.gradle file. Look for an old entry like compile 'com.crashlytics.android:crashlytics:1.1.13' and remove it.

Post a Comment for "Build Error After Migrating From Crashlytics Sdk To Fabric"