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.
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.
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.
For plugins installed inside the Studio just go to File-Settings-Plugins and uninstall
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