Android market not showing my published apps? What to change in my app manifest to help filtering? -


i published android app market , seemed fine.

i tried download on particular phone (samsung epic 4g (sph-d700)) , not available. looks being filtered, along other samsung galaxy s phones.

should change in manifest doesn't become filtered?

im trying search on computer , doesnt show when that. mean didnt upload market?

<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="send.text.fast" android:versioncode="1" android:versionname="1.0" > <uses-sdk android:minsdkversion="5" /> <uses-permission android:name="android.permission.send_sms"> </uses-permission> <uses-permission android:name="android.permission.read_contacts"> </uses-permission> <application     android:icon="@drawable/ic_launcher"     android:label="@string/app_name" >   <supports-screens android:smallscreens="true"      android:normalscreens="true" android:largescreens="true"      android:anydensity="true">  </supports-screens>      <activity         android:name=".main"         android:label="@string/app_name"   android:screenorientation="portrait">           <intent-filter>             <action android:name="android.intent.action.main" />             <category android:name="android.intent.category.launcher" />         </intent-filter>     </activity> </application> 

i'm having same problem too. market (now goes different name) has new (long awaited, claim) feature filter out apps not compatible device.

did try setting minsdkversion phone's particular version? try lowering it. 1 thing did not know can set minsdkversion down still target higher version.

my app works on android phone upon side-loading. since i've published app, still can't find on phone when using market app. when go app's webpage, little message saying app not compatible device, wrong. of course, phone has been rooted among other things (i.e. non-stock kernel/roms/launchers/etc...).

the joy of fragmentation.


Comments

Popular posts from this blog

jasper reports - Fixed header in Excel using JasperReports -

media player - Android: mediaplayer went away with unhandled events -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -