google-play

GooglePlay - wrong signing key for app bundle

白昼怎懂夜的黑 提交于 2019-12-30 17:28:08
问题 I've just now started using app bundles. I've set the two certificates in the App signing section of the dashboard (signing certificate and upload certificate). I've built an app bundle and signed it with the upload certificate, but when I upload the bundle under Android Instant Apps (which is in fact the reason I switched to app bundles) it says that: Your Android App Bundle is signed with the wrong key. Ensure that your app bundle is signed with the correct signing key and try again: xx:xx

Android app not available for some tablets in Google Play

淺唱寂寞╮ 提交于 2019-12-30 13:43:34
问题 I have published an Android app in Google Play Store. I have developed it and tested it on some emulators, my mobile tel and my 7" tablet. No problem at all. I have detected that when trying to install the app from the store to my tablet, it says that it is not compatible with my device. I have searched for the reason, and I have added some lines to the manifest, like these: <supports-screens android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" android

Google play is not displaying my app for tablets?

Deadly 提交于 2019-12-30 13:01:27
问题 I would like to display my app for tablets as well,what are the necessary steps needed to be followed so that my app do get listed for tablet as well.Already my app is been listed for mobile phones.Am I missing something here,please do provide your help.Thanks. 回答1: Write Below Code into your Androidmanifest.xml file <supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" /> 回答2: see the step given Address compatibility

can't upload apk: READ_EXTERNAL_STORAGE with different maxSdkVersions

☆樱花仙子☆ 提交于 2019-12-30 10:33:30
问题 This is the first time I ask a question here. Anyway, as the title says, I'm trying to put my application on the market. When I try to upload the signed apk, I get the error: Upload failed Duplicate declarations of permission android.permission.READ_EXTERNAL_STORAGE with different maxSdkVersions. I tried searching through the existent questions, but I can't find a solution. ... <uses-permission android:name="android.permission.CAMERA" /> <uses-permission android:name="android.permission

Crashes in Google Play Developer console vs Crashlytics Console

点点圈 提交于 2019-12-30 06:46:34
问题 We have an Android App on Google play store . The Crashes & ANR section of the app lists only a handful of top crashes where as our Crashlytics console lists a total different set of crashes - I mean that only few of the top crashes in Crashlytics are same as one in Playstore. One of the reasons can be that our App is also distributed via an Enterprise store private to our customer's setup. 1. Do these crashes also get shown up in Google Play Dev Console ? 2. Also if I can get all the crashes

Google Play, screenshots for tablets and image order

坚强是说给别人听的谎言 提交于 2019-12-30 06:12:11
问题 In Google Play it's now possible to have screenshots for phones, 7- and 10-inch tablets. I was trying to upload screenshots from an tablet on one of my applications. All my current screenshots where listed for phones. After I uploaded one screenshots for both 7- and 10-inch tablets I get the following the result: On my phone first the phone-images are listed first, and then the tablets images. On my 7-inch tablet I first see the tablet images and then the phone images. The documentation doesn

Android Market application Url?

早过忘川 提交于 2019-12-30 05:54:08
问题 Is there right way to get Url to android market app ? I read some answer here but I did not success to get any ? 回答1: For phones: market://search?q=pname:[name of your package here] For example: market://search?q=pname:net.mandaria.tippytipper For non-phones: You'll need to link to an Android Market aggregator such as appbrain: http://www.appbrain.com/app/net.mandaria.tippytipper 回答2: Bryan's market url will work, but I prefer: market://details?id=com.example.your.package since it will take

Changing from free app to paid app on Google Play

。_饼干妹妹 提交于 2019-12-30 05:47:09
问题 This question might be off topic, but I wanted to ask the fellow developers. Is there a way on Google play I could change my free app to a paid app? What would happen to the existing users if it is allowed? Would they be asked to pay when the new update is available? 回答1: You could add in-app payment processing to your free app and charge for enhanced features. Per http://support.google.com/googleplay/android-developer/bin/answer.py?hl=en&answer=1153479 "By using the in-app billing feature

Requesting user to rate/review/comment on Android Market

和自甴很熟 提交于 2019-12-30 02:57:06
问题 Is there a way I can request user for a rating/review/comment for the application from within the application (Activity). One option I can think is to create a link in the application to Android market where user can enter review/rating/comment. What I am looking is to allow the user to do this without leaving the application. Also, I need to find out if the user has already reviewed. (Which case, I may choose to change the link to 'Revise the review' instead of 'Add a review'). Is this

How can I check if the Android Market is installed on my user's device?

和自甴很熟 提交于 2019-12-30 02:30:11
问题 How could I write a code which can tell me that android market is installed on your android phone? 回答1: There are two ways. You can use the already mentioned getPackageManager() and getApplicationInfo() (if the package is not found, a PacketManager.NameNotFoundException will be thrown - see here). Android Market's package name is com.android.vending . However, you can also create a dummy intent for searching the market and check how it is handled. If the resulting list has at least one entry,