Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android studio: How to delete crashlytics plugin

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.

like image 909
Zax Avatar asked Jan 20 '15 12:01

Zax


People also ask

What is a plugin in Android?

The Android Gradle plugin (AGP) is the official build system for Android applications. It includes support for compiling many different types of sources and linking them together into an application that you can run on a physical Android device or an emulator.


2 Answers

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.

like image 133
Faizal Avatar answered Oct 03 '22 04:10

Faizal


For plugins installed inside the Studio just go to File-Settings-Plugins and uninstall enter image description here

like image 38
David A Avatar answered Oct 03 '22 05:10

David A