google-play

Google Play Developer Console error: The version code of your APK is high and you risk not being able to update your APK

ε祈祈猫儿з 提交于 2019-12-18 20:13:33
问题 I'm trying to update my app to the Google Play Store. I have the current version number of the app set to 2000000000 and would like to update it to 2000000001. Please don't ask my why there are such version numbers chosen. I got this error message when I try to push the new version: "Upload failed The version code of your APK is high and you risk not being able to update your APK.". The one thing I don't understand is that according to official google documentations the max version number is

Google play distribute app for specific (test) users only

旧时模样 提交于 2019-12-18 19:14:06
问题 Simple question, as i can remember there was an option at the developers console in the Play Store to make an app only visible to a set of email addresses. Or at least the app would be free for that set of emails. So is there an option to make an app only visible to a specific set of email addresses on the Play Store? I'm asking this because i want to test my app, therefor i have to email it to like 50 people (not a problem). But when i update the app in the "beta" stage i don't want to

Admob account showing big difference in matched requests and impression due to ad preloading

眉间皱痕 提交于 2019-12-18 18:38:11
问题 Admob account showing big difference in matched requests and impression in interstitial ads as shown in the picture. (The last two rows). I think this happens due to ad preloading. My question is, this big difference cause any black mark to my admob account? And is there any possible ways to decrease this gap due to preloading. 回答1: This is normal and you are right: it happens because you are preloading interstitials. A good benchmark for impressions is something near 50% of the requests. The

How do I prepare my app for the 64 bit version for React Native?

烈酒焚心 提交于 2019-12-18 17:00:54
问题 Here is my build.gradle: apply plugin: "com.android.application" import com.android.build.OutputFile /** * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets * and bundleReleaseJsAndAssets). * These basically call `react-native bundle` with the correct arguments during the Android build * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the * bundle directly from the development server. Below you can see all

How to fix “Issue: Violation of Families Policy Requirements”

被刻印的时光 ゝ 提交于 2019-12-18 16:52:18
问题 I've tried to publish an app on Play store but it's rejected and I've received an email titled: "Issue: Violation of Families Policy Requirements" And it also followed by: "Apps that contain elements that appeal to children must comply with all Families Policy Requirements. We found the following issue(s) with your app: Eligibility Issue <> In order to review your app for “Designed for Families” eligibility, we will need you to provide a test login account. Please provide login credentials to

How to fix “Issue: Violation of Families Policy Requirements”

你。 提交于 2019-12-18 16:52:13
问题 I've tried to publish an app on Play store but it's rejected and I've received an email titled: "Issue: Violation of Families Policy Requirements" And it also followed by: "Apps that contain elements that appeal to children must comply with all Families Policy Requirements. We found the following issue(s) with your app: Eligibility Issue <> In order to review your app for “Designed for Families” eligibility, we will need you to provide a test login account. Please provide login credentials to

android app published, but not found in google play

北城余情 提交于 2019-12-18 15:53:36
问题 I published my app at 14-04-2014 on playstore. But I didn't find it on playstore. And when I tried following solution to find that. https://play.google.com/store/apps/details?id=yourpackagename and status of app is "published" and "in Prod" 回答1: You may have incorrect package name as your application is already published. The package name is defined in your android manifest file as - package="yourpackagename" Make sure that for your application, it is defined as-- package="vn.pp.block.minion"

How can I test In-app updates in Android?

痞子三分冷 提交于 2019-12-18 14:54:30
问题 Recently, Google introduced 'in-app updates' in Google I/O 2019. So I am trying to use it. val appUpdateManager = AppUpdateManagerFactory.create(this) val appUpdateInfo = appUpdateManager.appUpdateInfo appUpdateInfo.addOnCompleteListener { val result = it.result if (result.updateAvailability() == UpdateAvailability.UPDATE_AVAILABLE && result.isUpdateTypeAllowed(AppUpdateType.FLEXIBLE)) { info("should show update") appUpdateManager.startUpdateFlowForResult( result, AppUpdateType.FLEXIBLE, this

Gerrit googleplay publisher plugin credentials has not been configured correctly

跟風遠走 提交于 2019-12-18 13:29:30
问题 I use gerrit with Google Play Android Publisher Plugin the way it described in plugin tutorial on the plugin page. .apk is signed and if I upload it via google play gui it uploads well. When I try to upload it using gerrit i get en error. Log below: Upload failed: The Google Service Account credential 'GooglePlayAPICredentials' has not been configured correctly. Update the credential, ensuring that the required data have been entered, then try again - No changes have been applied to the

Finding a list of all the android apps on the market

╄→尐↘猪︶ㄣ 提交于 2019-12-18 13:01:33
问题 is there a way of getting access to the details of each one programatically? 回答1: There is an open source project called Android Market API which allows you to do the following: You can browse market with any carrier or locale you want. Search for apps using keywords or package name. Retrieve an app info using an app ID. Retrieve comments using an app ID. Get PNG screenshots and icon It is located here: http://code.google.com/p/android-market-api/ Hope this helps you out. =) 回答2: As a