Software Archive
Read-only legacy content
Announcements
FPGA community forums and blogs have moved to the Altera Community. Existing Intel Community members can sign in with their current credentials.
17060 Discussions

How to Access Play from Emulator?

Sunil_V_
Beginner
1,750 Views

We have a situation to access google play. Is there a way to install google play in an emulator?

0 Kudos
10 Replies
Prince_Joseph
Beginner
1,750 Views

I believe you need get apk of googleplay from internet.

0 Kudos
William_H_2
Beginner
1,750 Views

As Joseph said, you'd need an apk of google play. Android Police has the newest builds usually.

0 Kudos
JLuna5
New Contributor I
1,750 Views

Hi Sunil, perhaps this information will be util for you. https://play.google.com/store/apps/details?id=jackpal.androidterm&hl=es

0 Kudos
Ashwin_S_Ashok
Beginner
1,750 Views

u can dowload playstore apk from www.androidpolice.com

and install it to the emulator.

0 Kudos
Ashwin_S_Ashok
Beginner
1,750 Views

u can install it by using terminal..

su -c "pm install /mnt/sdcard/app.apk" root

0 Kudos
Ashwin_S_Ashok
Beginner
1,750 Views

Another Metod is..

Intent intent=newIntent(Intent.ACTION_VIEW); intent.setDataAndType(Uri.fromFile(newFile(path+"/<application_name>.apk")),"application/vnd.android.package-archive");

startActivity(intent);

And this is the permissions..

<uses-permission android:name="android.permission.INSTALL_PACKAGES" />

0 Kudos
JLuna5
New Contributor I
1,750 Views

Good input!!!

0 Kudos
Catalin_P_
Beginner
1,750 Views

hi guys! can you please tell me where I can find an emulator so I can start working on AppUp applications? thx

0 Kudos
JLuna5
New Contributor I
1,750 Views

Hi Catalin P, you can emulate with wmware software

0 Kudos
Reply