Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Configuration is still incorrect. Do you want to edit it again? in android studio while running app

While running my android app it shows the above error. I tried to change AVD manager "Use Host GPU" but could not found that. Android emulator opened but still it showing black screen and Not even show that android words. I am using Mac OS.

like image 943
Smile Sri Avatar asked Mar 04 '15 07:03

Smile Sri


1 Answers

First of all, check the window "Edit Configuration" that opens when you click in "Run" or "Debug" button.
Then, check the bottom section "Before launch: Gradle-aware Make". Click on that small triangle to hide it. An error message should appear. This message should give you a clue about your problem. In my case this message says: "Error: Default Activity not found", that's because I was changed my
<category android:name="android.intent.category.LAUNCHER" />
for
<category android:name="android.intent.category.DEFAULT" />

Hope this help you or somebody. Sorry for the english. ;)

like image 88
Alberto Alegria Avatar answered Sep 21 '22 09:09

Alberto Alegria