0
votes
1answer
103 views

Link to Google Play doesn't work Android 2.2

I'm linking from my app to another app in Google Play. The link works fine on my Nexus tablet and my ICS HTC One X, but the link gets an error on an HTC Inspire 4G Android 2.2, it says "The ...
0
votes
1answer
123 views

“market://details?id=” says item not found

I am trying to add rating feature in my app https://github.com/codechimp-org/AppRater but, the every time I click on the rate now it says The item you requested could not be found. How do I get out of ...
0
votes
0answers
40 views

Prompt users to rate your app in the Android market [duplicate]

Possible Duplicate: how to show the rate dialog for my application in android There is any way to show the Google rate dialog in the play market not my dialog to direct the user to my app ...
0
votes
2answers
137 views

Link to share app in the play store

On an app page in the play store there is a button which allows the user to share the app he/she is looking at, with fx facebook and google+. Is there a way i can create a shortcut from my app to this ...
2
votes
0answers
321 views

How to let users see & play songs on Android to which they already have access (e.g., via Google Play)?

I'm running into a roadblock integrating music into my Android app. The goal is just to let users see & play songs to which they already have access, via Google Play Music (or any other player ...
1
vote
1answer
121 views

Open Google play as a new application

I'm currently opening Google Play the way that is described many places: by starting a new intent pointing at the market, as described here: open link of google play store in mobile version android ...
0
votes
1answer
202 views

Intent to modify INSTALL_NON_MARKET_APPS setting

I have an app that should self-update for this I need INSTALL_NON_MARKET_APPS to be enabled, so I guide the user to a settings page to enable this option. Problem is that this option seems to be in ...
0
votes
0answers
85 views

Intent to Launch Google Play Content (Not Apps, but Books, Music, Magazines, Movies/TV etc)

I know how to use an intent to open an application and open the market page for that application if it is not installed, but what about for other play store content? Is there an intent I can use to, ...
1
vote
3answers
302 views

Can you search Google Play using Intent?

Here's the situation: I want to open another app via implicit intent, but the user doesn't have adequate app. Can I open for him "Google Play Search Activity" with results including apps that contain ...
0
votes
1answer
217 views

Starting an Spotify intent

I want my app to open spotify links and send people to the app. If the app is installed, this works wonders: final Intent intent = new Intent(Intent.ACTION_VIEW, ...
0
votes
0answers
44 views

Play Store - any intent I could send to it so that the reurned data would be a list of purchased .apk files?

I am trying to deploy app resource plugins as described here under the "The way I WANT to do it:" section. What worries me though is the possibility of the .apk plugins to be redistributed once ...
2
votes
0answers
339 views

Android Google Play intent referrer

I'm launching Google Play like this: Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=com.example")); ...
1
vote
1answer
231 views

Getting “Activity not found exception” while using “market://details?id=my_package_name”

I am using this method on a button click. My app is not yet launched in google play so I tried using some other app's package name in the URI. I tried many different packages but always I am getting ...
0
votes
1answer
634 views

Opening my application from Google Play App crashes on exit

I have option to open my app Google Play page inside my app. When clicking open button in Google Play My app launches again. (From Splash screen) When I am exiting my app it crashed. I tried put ...
0
votes
3answers
297 views

How to launch android music store from ap?

Right now I'm using Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://music")); startActivity(intent); to launch the music store in the android market which seems to crash. Also ...