Issue
I'm using Android Studio 1.0.2.
Due to some reason i have to uninstall the Crashlytics plugin/SDK from my Android studio.
I have tried going to File>Settings>Plugins to remove Crashlytics, but this has not helped me, as i cannot find it in the plugin list.
Request if someone can provide a solution for this issue.
Solution
You need to delete crashlytics in app/build.gradle
.
buildscript {
repositories {
maven { url 'http://download.crashlytics.com/maven' }
}
dependencies {
classpath 'com.crashlytics.tools.gradle:crashlytics-gradle:1.+'
}
}
compile 'com.crashlytics.android:crashlytics:1.+'
Delete line that show crashlytics in repositories and dependencies.
Delete file app/crashlytics.properties
and app/main/assets/crashlytics-build.properties
Then build gradle again.
Answered By - Faizal
Answer Checked By - Timothy Miller (JavaFixing Admin)