android-studio-3.1
Android Studio 3.1 does not showing ‘android’ option under Tools menu
If you’re looking for a way to fix the buggy connection to a physically connected USB device without restarting Android Studio, this might help: Preferences > Build, Execution & Deployment > Debugger Then check or uncheck the box Use libusb backend
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 3.1.2 : Failed to resolve: runtime
yes , If you are getting error like error run time you can change the position of google() in dependencies in build. gradle.. Like below: repositories { google() jcenter() }
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
Where is the Messages Window in Android Studio 3.1
After some poking around, I found this button on the left side of the Build window: Clicking this button toggles the view between the new “Build” view and a text output version which resembles the old Messages view – although it isn’t exactly the same. I hope this helps! UPDATE: In Android Studio 3.3 the … Read more
How to solve failed to find build tools revision 26.0.2?
Android Studio is looking for build tools 26.0.2, but build tools 27.0.3 is already released for Android Oreo 8.1 I am not totally sure why, but Android Studio doesn’t set the build tools in the gradle “app” file anymore. So here is how I fixed it. You get two options. Method 1 – Install the … Read more