Android Studio 4.0 shortcuts changed
It happened to me too after upgrading to Android Studio 4.0, it was fixed after I went to Android Studio > Preferences > Keymap then choice MacOS:
It happened to me too after upgrading to Android Studio 4.0, it was fixed after I went to Android Studio > Preferences > Keymap then choice MacOS:
To fix : in Android studio, from top menu tap on Android studio then Preferences… and type keymap then in the drop-down on the right screen select Mac and apply. all sorted now, all the shortcuts are aligned with the Mac keyboard.
In the tools->SDK Manager window, please verify that Layout Inspector Image Server for API 29-30 is installed. In case you still face the issue, take a look at the Run window and if you see a dlopen error for a library, add android:extractNativeLibs=”true” in your AndroidManifest.xml file.
Check this issue: https://issuetracker.google.com/issues/147802433 `If you right-click on error, there is option “suppress for statement”, after that AS adds a comment such as: noinspection ShrinkerUnresolvedReference -keep class not.existing And with this comment there is no error for “not.existing”.`
I faced this error. so I added the line below to build.gradle(project) file ,dependency part: classpath ‘com.android.tools.build:gradle:3.6.0’ and I changed distributionUrl in gradle-wrapper.properties file to : https\://services.gradle.org/distributions/gradle-5.6.4-all.zip It solved my problem I hope solve yours too. Update 09/21/2020 Finally, I upgrade all of my plugins and libraries and It works perfectly by gradle-6.6.1-all.zip in gradle-wrapper.properties … Read more