Nicky Mirfallah
Nicky Mirfallah

Reputation: 1054

Android Studio doesn't run

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:

enter image description here

Upvotes: 1

Views: 134

Answers (2)

Dineshkumar
Dineshkumar

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
  • Environment variable $ANDROID_HOME must be available and added to path (whatever your sdk location)
  • adb is available in $ANDROID_HOME/platfrom-tools (you can add that to path too)

Upvotes: 0

SUTHANSEE
SUTHANSEE

Reputation: 332

Make sure that your project has it's file structure. this normally happens when importing other projects

Upvotes: 1

Related Questions