IOException: Failed to find byte code when upgrade to Android Studio 3.1

There is an issue, which they promise to fix in 3.2. Until then you probably have to roll back to Android Studio 3.0 if you don’t want to turn off instant run. Why they don’t want to release a hotfix for this, I don’t know. Seems to be a pretty important bug. See: I suggest … Read more

Android Studio fails to generate databinding after 3.1.0 update

Following the update to Android Studio 3.2, this line works for me. I have both Java and Kotlin code (compiler) running in my project. Add the following to your gradle.properties: android.databinding.enableV2=false Reason: Data Binding V2 Data Binding V2 is now enabled by default and is compatible with V1. This means that, if you have library … Read more