Reputation: 3495
Trying to add plugin into Intellij IDEA 14 but it's not appeared in tools panel(Plugin was downloaded from Crashlytics-site today). I tried to add hot-key for this then in logs got:
NullPointerException: update failed for AnAction with ID=Actions.Crashlytics.CrashlyticsAction
Any ideas how to fix this problem?
Upvotes: 2
Views: 1677
Reputation: 29434
I didn't clear the cache or removed the Android Studio, I've reinstalled Crashlytics plugin again (File -> Settings -> Plugins -> Install plugin from disk...
) and the issue disappeared.
Upvotes: 0
Reputation: 12103
If you can't solve this issue, I found a way that worked (Android Studio 1.1 on OSX).
Uninstall AS.
Delete the following (~ is home directory of user who runs AS):
~/.android*
~/.Android*
~/Library/Preferences/AndroidStudio*
~/Library/Preferences/com.google.android*
~/Library/Caches/Android*
~/Library/Android*
~/Library/Caches/com.crashlytics*
~/Library/Application Support/AndroidStudio*
~/Library//Saved Application State/com.google.android.studio.savedState
Then re-install Android Studio and the Fabric plugin, and it should work now.
I don't know if all the above deletes are necessary, but I could not narrow it down any further, and deleting all the above after uninstalling, then re-installing, worked for me.
Upvotes: 1