android-market-filtering

publishing android app for specific country

|▌冷眼眸甩不掉的悲伤 提交于 2020-03-18 09:21:25
问题 I have some doubts regarding android market developer console ,if anybody could help me on this it will be greatly appreciated. I have published my first free app into the market before some days.I have selected all countries from the publishing option. Now my customer wants that it should be visible only for Australia. I have deselect all countries and select only Australia and save that.but my app is still visible in android market for India and Germany.I haven't do any changes in the apk

Filter the device screen size on the Android Market

和自甴很熟 提交于 2020-01-03 04:21:47
问题 I want my app available on 7 inches tablets and bigger, the following code exclude lot of tablets like the Galaxy tab 7, HTC Flyer, etc. <supports-screens android:smallScreens="false" android:normalScreens="false" android:largeScreens="true" android:xlargeScreens="true" /> and if i set android:normalScreens to true, all the phones (and of course the 7 inch tablets) can see the app. Is there a way to do what I need? 回答1: You can directly filter devices in publisher console. Just allow any

Android Market filters app - Telephony?

醉酒当歌 提交于 2019-12-28 13:53:32
问题 I have the following Manifest: <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.myapp.MainActivity" android:versionCode="1" android:versionName="1.0.0" > <supports-screens android:anyDensity="false" android:largeScreens="true" android:normalScreens="true" android:resizeable="false" android:smallScreens="true" android:xlargeScreens="true" > </supports-screens> <uses-permission android:name="android.permission.RECEIVE_SMS" android:required="false" > </uses

Android Market filters app - Telephony?

余生长醉 提交于 2019-12-28 13:53:06
问题 I have the following Manifest: <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.myapp.MainActivity" android:versionCode="1" android:versionName="1.0.0" > <supports-screens android:anyDensity="false" android:largeScreens="true" android:normalScreens="true" android:resizeable="false" android:smallScreens="true" android:xlargeScreens="true" > </supports-screens> <uses-permission android:name="android.permission.RECEIVE_SMS" android:required="false" > </uses

Multiple apks, single listing of app for Google TV and Android Phone/Tablet on Play Store

那年仲夏 提交于 2019-12-22 17:45:36
问题 I have an Android phone/tablet apk which is currently in Play store and has these settings in its manifest file: package="com.company.xyz" android:versionCode="0803010008" android:versionName="01.00.08" > <uses-sdk android:minSdkVersion="8" android:targetSdkVersion="8" /> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> <uses

Android app not showing up in play store on some devices

好久不见. 提交于 2019-12-21 16:53:20
问题 So I published my first app to the play store a few days ago. It shows up here and when I search on the website shows up in the search result result Even says it is compatible with my phone on that page. However when I search in the store on my phone it does not show up. Someone with a Galaxy S2 says it shows up and someone with a galaxy S3 says it doesn't. So mixed results there. Manifest.xml is here I used mono-droid to build the app, is it possible that that has anything to do with it?

Android app not showing up in play store on some devices

微笑、不失礼 提交于 2019-12-21 16:52:52
问题 So I published my first app to the play store a few days ago. It shows up here and when I search on the website shows up in the search result result Even says it is compatible with my phone on that page. However when I search in the store on my phone it does not show up. Someone with a Galaxy S2 says it shows up and someone with a galaxy S3 says it doesn't. So mixed results there. Manifest.xml is here I used mono-droid to build the app, is it possible that that has anything to do with it?

Google Play shows - Your device isn't compatible with this version for Samsung Galaxy tab 2 and Google Nexus 7

岁酱吖の 提交于 2019-12-21 05:20:13
问题 When I published my app to Google play store and I tried downloading it on my Google Nexus 7 , I get the message "Your device isn't compatible with this version". My Manifest file is declared like this:- <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="16" /> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses

Specifying Android Market RAM in the Manifest

余生长醉 提交于 2019-12-21 03:47:28
问题 some people continue to download and install our HD game on phones that have 100MB of RAM and give us a bad rating... :) Is there a way to limit app download to only smartphones with much ram, or maybe to limit to new models/CPUs. 回答1: My final solution came from following the tip from Raghav Sood.. After a little research I found out that limiting to screens bellow will limit to devices with 512Mb+ of RAM. It's not 100% secure but it's best solution I found out there :) Just add those

App not available for Nexus 7 on Google Play

十年热恋 提交于 2019-12-17 18:54:28
问题 I am aware of the camera availability on Nexus 7 so I changed my manifest making the permission not required as follow: <uses-permission android:name="android.permission.CAMERA" android:required="false"/> The app is still not available. At this point I am confused from the doc which talks about uses-feature rather than user-permission : Be aware of which system features that you declare (or imply) are required to run your application or the Play Store will not make your application available