Translate

Monday, August 6, 2018

Logcat not working Please configure Android SDK in AndroidStudio 3.1.2


Following is the fix for AndroidStudio 3.1.2 OR Newer Versions :
We have faced the same issue on AS 3.1.2, but a simple Sync didn't help us. For us the solution was a bit different:
  1. File -> Invalidate Caches -> Invalidate
  2. File -> Close Project.
  3. Remove the project from the AS project selector window.
  4. Quit from Android Studio
  5. Start AndroidStudio and open project again
EXTRA ADVICE IF YOU ARE FACING THIS ISSUE CONSTANTLY
Some of you are constantly facing this issue, and this "solution" fixes it only temporarily. At the time we started getting this error, we used gradle wrapper 4.6 and Android gradle plugin 3.1.0, but since then we went back to gradle 4.4 and we use it with the latest Android gradle plugin, and we haven't seen this issue since then.

Could not identify launch activity: Default activity not found : Error while Launching activity

Problem : I got this Error , When I tried to create an application without any Activity . Basically like to develop an Android Headless appl...