5

How do I check if a user has evaluated your app on the Android Market?

 2 years ago
source link: https://www.codesd.com/item/how-do-i-check-if-a-user-has-evaluated-your-app-on-the-android-market.html
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

How do I check if a user has evaluated your app on the Android Market?

advertisements

I want to check to see if a user has rated my app on the android market, not how many stars, just if they have. And if they haven't I will prompt them with a dialog asking them to rate it with this code:

startActivity( new Intent( Intent.ACTION_VIEW,
       Uri.parse("market://details?id=packagename") ) );


No. You cannot do this. And this is a good thing too -- otherwise you will be able to influence rating by giving people who rated it rewards and such. Additionally, developers would be able to retaliate to negative reviews if such an API were available. This might also violate certain legal agreements between the User and Google if Google starts revealing this data.

However, this is what I personally do in my apps:

  1. Let the user use the app 5 times, to get a good feel of it.
  2. Prompt the user on the sixth run to rate it with options for Yes, Later and Never. Later delays it by two days.

Related Articles

How do I check if a user has granted a number of permissions to my PHP application?

Based on this question, is there a way to check if a user has granted a certain set of permissions to an app using PHP based Facebook SDK? I've browsed the API but couldn't find anything. $permissions = $facebook->api("/me/permissions"); then

How do I check if a user has entered the wrong value when browsing through a Terminal I / O?

Here is an example program that executes a terminal IO navigation technique. I am looking to try and check whether the user has entered a wrong value. // This program simply demonstrates nagivating through a Terminal I/O // whilst checking that the u

How do I check if a user has a role exactly in symfony2?

Suppose in my system there are four user roles- 1. ROLE_SUPER_ADMIN 2. ROLE_ADMIN 3. ROLE_EDITOR 4. ROLE_AUTHOR Now think, a user has role ROLE_AUTHOR. He can access a specific document but none other user can access it. So I want permit only user wh

How do I check if a user has clicked 'Ok' or 'Cancel' using the Confirm () function?

I am using a confirm() function for logging out. How can i check whether the user clicked Ok or Cancel. My confirm function is confirm('Are You Sure') But now, while clicking both Ok and Cancel the page redirects. How can I resolve it? if (confirm('A

How do I check if a user has selected a file to download?

on a page, i have : if (!empty($_FILES['logo']['name'])) { $dossier = 'upload/'; $fichier = basename($_FILES['logo']['name']); $taille_maxi = 100000; $taille = filesize($_FILES['logo']['tmp_name']); $extensions = array('.png', '.jpg', '.jpeg'); $exte

How do I check if a user has entered a scroll bar on a website?

Basically I want to see if a user has a hold of a scrollbar on my site. is there a Jquery function I can use to return a Boolean based on weather the user has a hold of the scrollbar or not? Edit: adding my site so you can see the problem. When you t

How do I check that this user has entered an empty string? in PHP

I need to know how to verify that the user entered empty string in a sentence if in a string with multiple spaces in blank Example " " if user entered a emṕty string, the program must show an alert as this echo "The username must not be emp

Is it possible to check if a user has a Twitter account in the integrated Twitter application of iOS 5?

iOS 5 has deep twitter integration. How can I check if the user has an account in the built-in twitter app (meaning he uses it), and then do a UIApplication openURL: to trigger following a user or pre-composing a tweet? One of the new features for de

How can I tell if a user has an iOS app installed?

How can I determine if the user of an iOS device has a specific application installed? If I know the name of the application can I use canOpenURL somehow?If the application supports a custom url scheme you can check UIApplication -canOpenURL:. That w

How do I check if an object has no property specified in the function parameter?

This question already has an answer here: How to check if object property exists with a variable holding the property name? 8 answers I want to check using function by passing variable into parameter whether that property exists in the object or not.

How to prevent some users from upgrading an application to the Android market?

We have an application, that can itself be downloaded for free, but works with paid, licensed data. Some users buy particular version of the data while others buy right to use latest data for some period of time. Now as the application evolves, it ev

How do I publish my Android app to the Android Market?

I have developed the android application, now the time is to release my app to android market. I have gone through many websites tutorial to know how to publish my app. But those things are confused me. So if anyone help me the step by step procedure

How do I check if a control has already been added to the view?

I add a label on to the view UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(10.0f, 320.0f, 300.0f, 75.0f)]; [titleLabel setText:[BusinessLogic instance].homeMessage]; then I move to another view and come back. This results in having

How can I detect if a user has accessed a page using the Back button?

This question is similar to Track when user hits back button on the browser, but not the same... I have a solution and am posting it here for reference and feedback. If anyone has any better options, I'm all ears! The situation is that I have a page

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK