android-market-filtering

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,

Can I Query the Android Market to Return Apps with Specific Permissions?

无人久伴 提交于 2019-12-11 13:45:50
问题 Is it possible to query the Android Market to return apps with a specific set of permissions? This would be a HUGE help to me. I've heard of an open-source API project in the works (http://groups.google.com/group/android-market-api), but I'm not sure if it will provide the exact functionality for what I'm looking for. Any information is greatly appreciated, thank you. 回答1: You got it right.. http://groups.google.com/group/android-market-api helps you to get the set of permission. The

Android app not appearing in Market for 1.5&1.6 devices, Bluetooth is android:required=“false”

喜你入骨 提交于 2019-12-07 14:15:26
问题 Our Android app can now use Bluetooth if available, but it is not required. So I added these lines to the manifest: <uses-permission android:name="android.permission.BLUETOOTH" android:required="false" /> <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" android:required="false"/> PROBLEM : After publication, most people can download the app, but the app does not show up in the Market for: Android 1.5 HTC Magic Android 1.6 G1 What should I change so that it appears in the

Android: uses-sdk minSdkVersion being ignored by Play Store?

谁都会走 提交于 2019-12-07 04:23:20
问题 I built a very simple app that consists of about six activities for showing the details of events at a conference. There's not much to it. However, I know that the app doesn't work well on devices running anything lower than Android 4.0.3. I set the minSdkVersion to "15" and the targetSdkVersion to "18", but when I upload the apk to the Play Store, it tells me that it will run on anything above 7. Is there something that I'm missing to restrict the app to run only on 4.0.3 and above? 回答1:

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

廉价感情. 提交于 2019-12-06 08:57:12
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-permission android:name="android.permission.WAKE_LOCK" /> <uses-library android:name="com.adobe

Android app not appearing in Market for 1.5&1.6 devices, Bluetooth is android:required=“false”

不问归期 提交于 2019-12-05 22:20:44
Our Android app can now use Bluetooth if available, but it is not required. So I added these lines to the manifest: <uses-permission android:name="android.permission.BLUETOOTH" android:required="false" /> <uses-permission android:name="android.permission.BLUETOOTH_ADMIN" android:required="false"/> PROBLEM : After publication, most people can download the app, but the app does not show up in the Market for: Android 1.5 HTC Magic Android 1.6 G1 What should I change so that it appears in the Market with those devices too? Please note that we allow SDK level 3, which includes Android 1.5: <uses

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

。_饼干妹妹 提交于 2019-12-03 20:21:23
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-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name=

Specifying Android Market RAM in the Manifest

ⅰ亾dé卋堺 提交于 2019-12-03 11:27:15
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. 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 filters in manifest file.. <compatible-screens> <!-- some normal size screens --> <screen android:screenSize=

How to license my Android application?

拥有回忆 提交于 2019-11-28 17:07:16
I am just about to complete my Android application. Now I want to upload my application to the Android market for paid application. For that I have read the document from the Android site: android licensing But I want to see any demo or project that has done such licensing. I have seen the demo on the android developer site of mainactivity. But there the handler is given and I want to implement that code into mymainactivity of the project. In mymainactivity there is a splash screen in the start of the application, and I have set one handler for it. So that's why I need an example, to see how

Android Market filters app - Telephony?

◇◆丶佛笑我妖孽 提交于 2019-11-28 09:21:42
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-permission> <uses-permission android:name="android.permission.SEND_SMS" android:required="false" > </uses