- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
can you tell me What steps should I take to make sure my app runs fine on such Intel-powered devices?
Note:I don't have such a phone to perform tests.
コピーされたリンク
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
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. :)
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
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
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
All you need is Intel processor and Intel x86 Emulator Accelerator (HAXM). you can install later from your SDK Manager
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
and offcourse you need Intel andriod USB driver.
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
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
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
If your app is working on emulator then it should be working on device.
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
@ Hyrulia
We cant gurantee that...i am an android developer some times there are problems with emulator and devices.
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
better try bluestacks it will give...output like in real device..
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Hi, you might to use android eclipse plugin for emulate android os.
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
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.
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
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
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
try to run your app on intel x86 emulator...
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
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?
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
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
