链接已复制
If your app runs on Android-x86 that will be a pretty clear indicator it will run on an Intel CPU. You can simply install it with VirtualBox or other VM host. :)
You can install intel SDK on your IDE, and test your app with it, and ther you will be sure that the app will perfom well on phones with intel architecture !
Google it for more informatiosn ;)
Note: There you will find the steps to install intel SDK on your laptop :
http://www.developer.com/ws/android/development-tools/haxm-speeds-up-the-android-emulator.html
hi anouar *
you can install HAXM
for more information and how to install visit this link: http://software.intel.com/en-us/articles/installation-instructions-for-intel-hardware-accelerated-execution-manager-microsoft
Hello,
Have a look at the Android SDK Manager's AVD creation options
In the android SDK Manager there is an option for creating an AVD with your own configuration, so lookup the configuration you are trying to test your application upon and set the the settings exactly.
It also includes the option for changing the Hardware features like GPU and CPU emulated versions in it's features, which gives you the option for Intel Atom x86 CPU if and only if you have downloaded the Intel x86 Atom System Image of your respective Android sdk version.
The CPU options are available to those devices for which you have the Android images for i.e. the items enlisted under each Android versions.
Hope this answers some part of your query.
Hi,
Install x86 emulator. Refer following link
Create AVD for x86 and run apk on this AVD. If app runs on this emulator then it will run on intel phone
I hope everyone answer his questions correctly but I am thinking what if his question is,
Assuming his app is deployed from Play Store to a device, what are the steps to decide if the device is a x86 device?
Mark Liu (Intel) wrote:
I hope everyone answer his questions correctly but I am thinking what if his question is,
Assuming his app is deployed from Play Store to a device, what are the steps to decide if the device is a x86 device?
For developing NDK based applications I wrote an article some time ago: http://software.intel.com/en-us/articles/getting-started-on-optimizing-ndk-project-for-multiple-cpu-architectures
If you want to check it for some reasons on Java you can use the following code:
[java]String arch = System.getProperty("os.arch");[/java]
The Android OS itself queries the architecture a little bit different as you can see for example in the Build.java file:
[java]
/** The name of the instruction set (CPU type + ABI convention) of native code. */
public static final String CPU_ABI = getString("ro.product.cpu.abi");
/** The name of the second instruction set (CPU type + ABI convention) of native code. */
public static final String CPU_ABI2 = getString("ro.product.cpu.abi2");
[/java]
Hope this answers your question!
Alex
