Reputation: 959
Opened up Android Studio after about 2 weeks from the last usage. Android Studio itself was up-to-date. It offered to update Android Tools and Flutter plugins. After the usual install, it offered to restart AS. And now this is what I see when I try to run my AS:
Internal error. Please report to https://code.google.com/p/android/issues
java.lang.IllegalStateException: exceptionDir.listFiles() must not be null
at wu.seal.jsontokotlin.feedback.PersistCache.readAllCachedExceptionInfo(PersistCache.kt:58)
at wu.seal.jsontokotlin.feedback.NetWorkKt$sendHistoryExceptionInfo$1.run(NetWork.kt:33)
at java.lang.Thread.run(Thread.java:745)
Does anyone know what is it? Thank you.
Upvotes: 0
Views: 126
Reputation: 231
I met the same problem as you after upgrading Android Studio to 3.5. Base on the error log, I think the problem is out from JsonToKotlinClass plugin. I remove the plugin and Android Studio is back!
You can find the plugin under ~/Library/Application Support/AndroidStudio3.5
. Make a backup and try to remove it.
Upvotes: 1