AVD Manager not starting when I try to run it

b4AMarkO

Member
Licensed User
Longtime User
AVD manager is not starting when I go to Tools "Run AVD Manager"

Nothing happens? From what I can tell my paths are right I think .... Whats up?
 

Theera

Well-Known Member
Licensed User
Longtime User
Have you re-installed it already? I've re-installed more than 20 times when I couldn't finish the problems.

AVD manager is not starting when I go to Tools "Run AVD Manager"

Nothing happens? From what I can tell my paths are right I think .... Whats up?
 
Upvote 0

b4AMarkO

Member
Licensed User
Longtime User
No, I finally ran it in Eclipse and followed the tutorial and the map works great now

But, I do not know why in B4A its not starting still

:(
 
Upvote 0

b4AMarkO

Member
Licensed User
Longtime User
Note that you can manually run AVD Manager program and then start an AVD.

I only ran it to download the Google Libs the tutorial asked for

But when I went to Tools and selected Run AVD Manager it wouldn't start so I opened Eclipse and ran it .... didn't think about running it Manually
 
Upvote 0

PopsHugo

New Member
Licensed User
Longtime User
AVD Manager opens and closes immediately - What's up?

I am having a similar problem, AVD Manager opens and closes immediately.

What's up.

How can I correct this?
 
Upvote 0

yttrium

Active Member
Licensed User
Longtime User
I am having a similar problem, AVD Manager opens and closes immediately.

What's up.

How can I correct this?

If you refer to the command window, that's normal. AVD should open shortly. If not, then report back.
 
Upvote 0

NicW

New Member
Licensed User
Longtime User
I had the same Problem; after Click on "Run AVD Manager" nothing happend
I installed the ADT by unpacking the ZIP without calling any Kind of Setup.

My Solution:

i had do append the Android adt\sdk\tools\ Directory to PATH and the "Run AVD Manager" Command worked fine.

(Dont forget to check that java\bin is in PATH and JAVA_HOME ist set)
 
Upvote 0

Richard Goh

Active Member
Licensed User
Longtime User
You can try this. But this is for microsoft base. I am running Windows7. You need to set the system environment variable.
Goto Computer properties -> Advance System setting -> Environment variable. Add below into your setting. Please follow your Java & Android SDK installation path.

JAVA_Home = C:\Java\jdk1.7.0_25 (Where java SDK is installed)
ANDROID_SDK_HOME = C:\Android\android-sdk
ANDROID_SWT = %ANDROID_SDK_HOME%\tools\lib\x86_64
PATH = %PATH%;%JAVA_HOME%\bin;%ANDROID_SDK_HOME%\platform-tools

Then at the B4A development tools (Tools -> Configure Path) set the path for javac.exe & android.jar.

Hope this will help.

I managed to run the AVD Manager. But not working very well due to some setting problem. So I always do a direct testing from my phone. But this very inconveniece.
 
Upvote 0

mrussell014

Member
Licensed User
Longtime User
The adb tool has moved to platform-tools/

If you don't see this directory in your SDK,
launch the SDK and AVD Manager (execute the android tool)
and install "Android SDK Platform-tools"

Please also update your PATH environment variable to
include the platform-tools/ directory, so you can
execute adb from any location.

when run the AVD I get;
the system cannot find the file specified

Parsing code. 0.04
Compiling code. 0.32
Compiling layouts code. 0.19
Generating R file. 1.38
Compiling debugger engine code. 2.42
Compiling generated Java code. 2.75
Convert byte code - optimized dex. 2.16
Packaging files. 1.92
Copying libraries resources 0.01
Signing package file (debug key). 2.52
ZipAlign file. Error
Cannot find:
Please configure paths (Tools - Configure Paths).

I have ZipAlign in many places and is not found

I am running phonetablelayout with no changes and it gets the same errors as my phone app.
Can someone give me a list of the paths in textbox javac.exe andriod.jar Additional library and Shared Modules to to compile this app.

running ver 3.82 and 4.0 both have the same result

JAVA_Home = C:\Java\jdk1.7.0_25 (Where java SDK is installed)
ANDROID_SDK_HOME = C:\Android\android-sdk
ANDROID_SWT = %ANDROID_SDK_HOME%\tools\lib\x86_64
PATH = %PATH%;%JAVA_HOME%\bin;%ANDROID_SDK_HOME%\platform-tools

I cannot relate the above info to where they go. I know when someone answer this I will feel stupid but being off for a year for 2 surgies I'm having trouble catching up. my last app won't run either. same problem.
 
Upvote 0
Top