google-play

How to declare webview ownership in google play console?

时光毁灭记忆、已成空白 提交于 2019-12-13 08:12:11
问题 My android app is build by adding whole webview of my web application which I want to mainly launch for android users not for browser based users. But I get my app suspended from google play store review team. Reason being that they have no proper information about ownership of my webview content. I just want to know that how to prove that my webview content is under my ownership. 回答1: I've never had success with webview. I've did some investigation a long time ago and I found that RSS,

Google play says “your device isn't compatible with this version” in all devices but works fine from eclipse adb

跟風遠走 提交于 2019-12-13 08:02:13
问题 This is my android manifest file.I worked fine from the eclipse. I have uploaded my apk in google play store. It says the message "your device isn't compatible with this version" in all devices.But it is listed in the supporting devices. Please help me. I am testing with the device android 4.4.4 <uses-feature android:name="android.hardware.camera" android:required="false" /> <uses-feature android:name="android.hardware.telephony" android:required="false" /> <uses-permission android:name=

Android Publication Steps

白昼怎懂夜的黑 提交于 2019-12-13 07:32:17
问题 I have some doubts in steps of preparing the application to be published. I have reached step on Preparing for Release guide. So I only need to do these remaining steps? I use Eclipse, export the Application using Export Wizard. But then, in Building with Eclipse section: The Export Wizard compiles your application for release, signs your application with your private key, and optimizes your application with the zipalign tool. Do I need to zipalign again? Obfuscate the application. Feel free

Android app cannot be updated on new version of Play Store due to configuration errors

让人想犯罪 __ 提交于 2019-12-13 07:20:52
问题 Apologies for the wall of text. My company uses a single listing for multiple apks on the play store as mentioned in this question. The package name used for both apks is com.company.xyz. Our GTV app's current version is 1203010007 and phone/tablet app's current version is 1714010016. We want to release an update (1714010017) to our Android phone app. I am able to upload the phone apk on the old version of the play store but when I try to submit the same on the new version of the play store,

Android: “configuration cannot be published” while Uploading APK to Play Store

天大地大妈咪最大 提交于 2019-12-13 07:17:47
问题 Need help with an Android Play Store issue I've seen while trying to update our app. The problem appears when the apk upload is done, and the following message shows up: This configuration cannot be published for the following reason(s): It is forbidden that a device upgrading from API levels in range 14-18 to API levels in range 19+ should downgrade from version 10 to version 9, which would occur when Screen layouts containing any of [small, normal, large, xlarge] and Features containing all

App not visible on certain devices

走远了吗. 提交于 2019-12-13 07:14:50
问题 I've published an app on Google Play Store but it is unsupported for a number of devices such Sony Xperia Z2, OnePlus2 etc. The manifest file for my app is: <supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" /> <compatible-screens> <!-- small size screens --> <screen android:screenDensity="ldpi" android:screenSize="small" /> <screen android:screenDensity="mdpi" android:screenSize="small" />

Targeting Different Specs in Android App Submission

感情迁移 提交于 2019-12-13 07:12:16
问题 We're working on a port of an iPhone game to Android. One of the additional hurdles with this is all the different device resolutions Android has. We're having our art team rework the art for each target resolution (we're only picking a few for now with more later.) My question is, can we (and how best to do it) submit separate packages for each resolution to the Google Market under a single title so that when someone purchases it they get a specific resolution? UPDATE 7/21/2011 Although we

Android app showing in Google Play for Phone but not for Google Play for Tablets

梦想的初衷 提交于 2019-12-13 06:52:43
问题 The app is showing for Phones but not for Google Play for Tablets. Here is the Manifest code. package="com.samplecode.app" android:versionCode="1" android:versionName="1.1" > <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="21" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.READ_PHONE_STATE" /> 回答1: Add 7" and 10" screenshots to your

Lost original keystore android app eclipse [duplicate]

不打扰是莪最后的温柔 提交于 2019-12-13 05:41:20
问题 This question already has answers here : Closed 8 years ago . Possible Duplicate: I lost my .keystore file! I have an app on the android market for 5 months now. I haven't updated it in probably 2 months, so yesterday I went to work coding it. I finish my coding, go to export the app and it asks for my Keystore. The only problem is that when I try the use existing keystore option, THERE ARE NONE!!! So, I go through the long process of creating a new keystore and get the application exported

How to preview which devices a requiresSmallestWidthDp config matches?

和自甴很熟 提交于 2019-12-13 05:37:28
问题 As is well-known, to limit Google Play distribution to devices with certain dimensions, you'd use <supports-screens> or <compatible-screens> , depending on your needs. For example, to allow installation only on 7" tablets or larger, you'd set requiresSmallestWidthDp to 600: <supports-screens android:smallScreens="false" android:normalScreens="false" android:largeScreens="true" android:xlargeScreens="true" android:requiresSmallestWidthDp="600" /> My question is, is there any way to check, in