I've restarted Android Studio (version 1.1.0
built on 18 Feb) & now Crashlytics can't be initialized with this error:
NullPointerException: update failed for AnAction with ID=Actions.Crashlytics.CrashlyticsAction
What should I do to fix it?
I have the following in my build.gradle
(I'm writing here only crashlytics related configurations):
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'io.fabric'
repositories {
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
compile('com.crashlytics.sdk.android:crashlytics:2.2.2@aar') {
transitive = true;
}
}