Reputation: 1054
In my android studio, AVD Manager button is grey (disabled) and also in my build dropdown I do not see "make project". at the same time
ow can I build my android project?
Here's a screenshot of my app:
Upvotes: 1
Views: 134
Reputation: 4245
Make Sure that the android sdk location is properly set in Project Structure Settings. (looking at the files in red probably error)
if you want to create avd then probably you can do
android create avd -n AvdName
adb list devices # to list devices
$ANDROID_HOME
must be available and added to path (whatever your sdk location)$ANDROID_HOME/platfrom-tools
(you can add that to path too)Upvotes: 0
Reputation: 332
Make sure that your project has it's file structure. this normally happens when importing other projects
Upvotes: 1