google-play

Play Store app localization

廉价感情. 提交于 2020-01-10 01:03:09
问题 I'm about to upload my first app to the Google Play store and when I uploaded the APK to the Developer Console, it says under Localizations: default + 55 languages . I don't want my app listed as supporting any of these languages/localizations because it's in English only. What should I do in my app to let Google Play know that the there are no localizations and that the app is in English only? 回答1: This isn't a problem: Google Play does not let users know what languages are supported by your

pre-register app on google play [closed]

感情迁移 提交于 2020-01-09 19:04:33
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . I am working on a product, and have plans to launch in next 4-5 weeks, i have read so many blogs post about a new features of google play console i.e Pre-Register-App before launch.so i am also thinking to do the same, i dig google and found many blogs, which explain what is Pre-registering , but haven't found

APK signed with a certificate that is not yet valid

戏子无情 提交于 2020-01-09 04:38:11
问题 I'm trying to publish an app to google play, and it won't allow me, it says: You uploaded an APK signed with a certificate that is not valid. You need to sign tour APK with certificate that is currently valid. Screenshot: How do I remedy this error? 回答1: Solved it by changing the system date of my computer. I set it to today - 2 days and created a new keystore, tried to upload and it worked. 回答2: I ran into this gotcha but my solution was different. My system time was valid, but maybe it was

Remove app from production and use beta testing instead

╄→гoц情女王★ 提交于 2020-01-07 03:46:06
问题 I accendently uploaded a APK to Production instead Beta. Now i have unpublished the app und uploaded an APK to closed Beta testing and republished the app, but the other APK is still in production with the old version code. What can I do? 回答1: Even I made similar mistake before and then unpublished my app. Started again the publish process with different package name as Google remembers your app by the package definition. You won't be able to delete an unpublished app. That needs to be unique

How to change the Android in-app product local prices through Android publisher?

流过昼夜 提交于 2020-01-07 03:04:36
问题 The back end server of our system is supposed to update the prices of user-created in-app products for our Android app in Google Play store. The back end is written in C# and we use the "patch" service of Android Publisher to do that with the option "autoConvertMissingPrices" switched to "true". https://developers.google.com/android-publisher/api-ref/inappproducts/patch However, all it does is change the default price while the local prices stay unchanged. I guess we need something like the

Failed to upload apk to google play

爱⌒轻易说出口 提交于 2020-01-07 02:45:06
问题 I just got the following error report when attempting to upload my lastest version of an already published app: Upload failed Your APK cannot be analysed using 'aapt dump badging'. Error output: Failed to run aapt dump badging: W/ResourceType(12572): Failure getting entry for 0x7f020095 (t=1 e=149) in package 0 (error -75) W/ResourceType(12572): Failure getting entry for 0x7f020095 (t=1 e=149) in package 0 (error -75) W/ResourceType(12572): Failure getting entry for 0x7f020095 (t=1 e=149) in

How to programmatically get the list of permissions of an Android App from Play Store URL?

ε祈祈猫儿з 提交于 2020-01-06 19:41:13
问题 I would like to start with the package name (or google play store URL) of an existing Android app (e.g., https://play.google.com/store/apps/details?id=com.google.android.gm), and programmatically obtain the list of permissions it asks for. Before I go using JSoup on the HTML code on the "Permissions" tab on the above URL, I wanted to know if a cleaner way exists. Is there, for example, a JSON API for this? 回答1: There is no official API for Google Play that does what you're looking for. You

Android google-play-liked listview

谁都会走 提交于 2020-01-06 19:28:04
问题 Im new to android and practicing with an UI like googleplay apps, this is default view of the list : when i scroll the list view up , the action bar got scrolled up and disappeared , basically my English is too bad and i dont know how or which keyword i must use in google search to get the result like this (as you see it looks like the action bar is inside the listview ) please show me how or give me an example to learn, thank you ! 回答1: you can define your layout structure like following :

Google Api Client interface methods explanation?

夙愿已清 提交于 2020-01-06 18:33:50
问题 @Override public void getLeaderboardGPGS() { if (gameHelper.isSignedIn()) { startActivityForResult(Games.Leaderboards.getLeaderboardIntent(gameHelper.getApiClient(), getString(R.string.event_score)), 100); } else if (!gameHelper.isConnecting()) { loginGPGS(); } } @Override public void getAchievementsGPGS() { if (gameHelper.isSignedIn()) { startActivityForResult(Games.Achievements.getAchievementsIntent(gameHelper.getApiClient()), 101); } else if (!gameHelper.isConnecting()) { loginGPGS(); } }

Android - Detecting various cases of app installation

三世轮回 提交于 2020-01-06 13:56:08
问题 I'm currently working on an app which will be used for marketing purpose. This app has a feature to share a link to device contacts or social media, to let other people download this app from Google Play Store. But my company has made a rule for this app: If this app is downloaded from Google Play Store without clicking any shared link, it cannot be run ( or simply, display an Alert Dialog then close the app ). The only way to have this app running is to FIRSTLY click the link, then download.