HaMi
HaMi

Reputation: 539

ADT failed to run on windows 7 32bit

I have a problem with running "adt-bundle-windows-x86_64-20131030" software on my laptop. I have a 32bit version of windows 7 and of course 32bit version of jre. When I want to run eclipse under that program, it fails with message:

"The version of this file is not compatible with the version of windows you're running. Check your computer's system information to see whether you need an x86 (32-bit) or x64 (64-bit) version of the program, and then contact the software publisher."

Why this is happening? (In the download page of that software it said that can be used in both 32bit and 64bit environment!).

Upvotes: 0

Views: 1850

Answers (2)

LittleGirl
LittleGirl

Reputation: 658

Here is the link for 32bit version of adt-bundle-windows 7. [http://developer.android.com/sdk/index.html]

Upvotes: 1

rekire
rekire

Reputation: 47945

That package name contains x86_64 which points out that this is a x64 build and not a x86 as the name could been interpreted as.

From Wikipedia:

x86-64 (also known as x64, x86_64 andAMD64) is the 64-bit version of the x86instruction set.

You can download the latest version of the adt plugin from the Android homepage:
http://developer.android.com/sdk/index.html

Upvotes: 1

Related Questions