Software Archive
Read-only legacy content
告知
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.
17060 ディスカッション

How to make sure my Android app runs on Intel phones?

med_anouar_hammami
ビギナー
4,249件の閲覧回数

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.

0 件の賞賛
18 返答(返信)
Mohamed_Ali_A_
ビギナー
4,249件の閲覧回数

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. :)

Ahmed_BH
ビギナー
4,249件の閲覧回数
Mohamed_Khalil_ZENDA
ビギナー
4,249件の閲覧回数

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

PONRAM
ビギナー
4,249件の閲覧回数

just test on emulator

Raghavendr_U_Intel
従業員
4,249件の閲覧回数

All you need is Intel processor and Intel x86 Emulator Accelerator (HAXM). you can install later from your SDK Manager

Raghavendr_U_Intel
従業員
4,249件の閲覧回数

and offcourse you need Intel andriod USB driver.

nakhli__m_
ビギナー
4,249件の閲覧回数

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

Hyrulia
ビギナー
4,249件の閲覧回数

If your app is working on emulator then it should be working on device.

Mohamed_helmi_b_
ビギナー
4,249件の閲覧回数

all you need it's intel x86 emulator

Sunil_V_
ビギナー
4,249件の閲覧回数

Prepare an imulator with config

Ashwin_S_Ashok
ビギナー
4,249件の閲覧回数

Hyrulia

We cant gurantee that...i am an android developer some times there are problems with emulator and devices.

Ashwin_S_Ashok
ビギナー
4,249件の閲覧回数

better try bluestacks it will give...output like in real device..

JLuna5
新規コントリビューター I
4,249件の閲覧回数

Hi, you might to use android eclipse plugin for emulate android os.

shadab_khatib
ビギナー
4,249件の閲覧回数

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.

Kishor_D_
新規コントリビューター I
4,249件の閲覧回数

Hi,

Install x86 emulator. Refer following link

http://software.intel.com/en-us/articles/intel-atom-x86-image-for-android-ice-cream-sandwich-installation-instructions-manually/.

Create AVD for x86 and run apk on this AVD. If app runs on this emulator then it will run on intel phone

Ashwin_S_Ashok
ビギナー
4,249件の閲覧回数

try to run your app  on intel x86 emulator...

Mark_L_Intel1
モデレーター
4,249件の閲覧回数

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?

Alexander_W_Intel
従業員
4,249件の閲覧回数

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

返信