google-play

Creating an Android save file on the local storage of the device?

谁说胖子不能爱 提交于 2019-12-25 08:13:53
问题 I'm using Libgdx for a game on Android, and i want to create a save file on the local storage of the user's phone, and i'm wondering how would i go about doing that. Some of the documents I have read such as here: https://developer.android.com/guide/topics/data/data-storage.html#filesInternal have been quiet vague, and I don't really understand what is going on, or can make the example work in my own game. Is there a feature for this in Libgdx itself? 回答1: in libgdx for storing the data we

Android LVL: ERROR_NOT_MARKET_MANAGED when uploaded a new version with public key of new acc

爱⌒轻易说出口 提交于 2019-12-25 07:38:56
问题 We're moving to another Google Play developer account, so I faced the following problem. App with LVL transferred to this new account returned LICENSE_ALLOW, until I've uploaded a new version with a new public key from our new Google Play account. Now it returns ERROR_NOT_MARKET_MANAGED. I hope it's because Google Play didn't register a new uploaded apk yet (while in Developer console I see a new version) - according to Android Market Doesn't Show My New Version, but usually you must only

How to put an update notification for your android app then the users will be directed to Google Playstore?

帅比萌擦擦* 提交于 2019-12-25 07:18:05
问题 For android mobile programmers I have a question. I want to put a notification for our mobile app, if the user click the update and agree to it. It will direct them to Google Playstore and then they will manually click the update button in playstore. I want to clarify if we need to make a web back end for the update notification or some methods or classes for the mobile itself to alert the users to update it manually without the help of the web back end. Thanks in advance. 回答1: Google Play

Google Play - Your device isn't compatible with this version

我只是一个虾纸丫 提交于 2019-12-25 07:04:08
问题 I'm not getting Google Play - Your device isn't compatible with this version for only one device - zen ultratab a700 3g ( This device does not have gps ) . All other devices are able to download the app( devices with gps ). Permissions I use in Android Manifest <uses-sdk android:minSdkVersion="10" /> <uses-feature android:name="android.hardware.location.gps" android:required="false" /> <uses-feature android:name="android.hardware.location" android:required="false" /> <uses-permission android

Google Play - Your device isn't compatible with this version

一个人想着一个人 提交于 2019-12-25 07:02:14
问题 I'm not getting Google Play - Your device isn't compatible with this version for only one device - zen ultratab a700 3g ( This device does not have gps ) . All other devices are able to download the app( devices with gps ). Permissions I use in Android Manifest <uses-sdk android:minSdkVersion="10" /> <uses-feature android:name="android.hardware.location.gps" android:required="false" /> <uses-feature android:name="android.hardware.location" android:required="false" /> <uses-permission android

Find URL for google play app before releasing it

旧城冷巷雨未停 提交于 2019-12-25 06:34:14
问题 I want to have a rate button for my app that will open up the google play store page of my app when clicked. The problem is I do not know the URL of my app on the Google Play Store since I have not released it yet. How can I find the URL? 回答1: I know this answer is bit late but your url would be: https://play.google.com/store/apps/details?id=YOUR_PACKAGE_NAME You can find the package name in AndroidMainfest.xml of your project. 来源: https://stackoverflow.com/questions/36830597/find-url-for

multiple Play Store Accounts sharing same android signing key

寵の児 提交于 2019-12-25 05:32:59
问题 as the title says, can a signed android apk be published/signed by multiple google play accounts? we have a possible new requirement where we will have to remove the existing play account and create a new one but we are keeping the same signed keys for our apps and do not want to upload a whole new app with new signing key. Is this possible? 回答1: You can add additional users to your applications and give them whatever permissions you feel are appropriate. To do so, follow the Add Developer

Redirect app from free app to paid app in other developer id

吃可爱长大的小学妹 提交于 2019-12-25 05:19:17
问题 I am living in country which is not supported google play merchant register, but I knew one of developer in country that supported google play merchant register. Let's say: Developer "A" for not support google play merchant and "B" for supported google play merchant So, I want to build 2 apps, Lite version for Developer "A" non google play merchant and I redirected from "A" to purchase a full version of app in Developer "B". So if we do this way, it's violation to Google Play Store or not?

What Intent Filter can I use to capture intent calls to the permissions screen on the Android Market?

一曲冷凌霜 提交于 2019-12-25 05:15:38
问题 I am creating an app that warns users about strange permission requests before they download an app from the Android Market (such as a wallpaper app that requests to read a user's contact information). Is there a way to capture the intent called when a user presses the install button and is shown the list of uses-permissions ? 回答1: There's no way of doing this that I know of. You can show the user your dialog right after the user installs the app instead (in most cases, before they run it):

Can you restrict a specific Android API version from running/downloading app from googlePlay store?

我只是一个虾纸丫 提交于 2019-12-25 04:56:24
问题 Alright so I'm having this one problem with an app I'm working on and planning on releasing, but the problem is only occurring on one version of the android SDK (Version 4.1.1 API 16). Can I restrict JUST android version 4.1.1 API 16 from downloading and running my app? I know googlePlay has a restrict certain device list, but the problem is occurring because of the OS version, NOT the device, at least it seems that way from debugging... I also know there's the uses-sdk attributes in the