google play - I can not let my app available on market of honeycomb(xoom) -


i have app, , have changed app according tutorial of google http://developer.android.com/guide/practices/optimizing-for-3.0.html.

this mainfest xml:

 <uses-permission android:name="android.permission.internet" />    <!--uses-permission android:name="android.permission.read_phone_state"/-->    <uses-permission android:name="android.permission.read_contacts" / >    <uses-permission android:name="android.permission.write_external_storage" />    <uses-permission android:name="android.permission.wake_lock" />        <uses-permission android:name="android.permission.send_sms" />        <uses-permission android:name="android.permission.read_logs" />        <uses-permission android:name="android.permission.vibrate" />        <uses-permission android:name="android.permission.get_accounts" />        <uses-sdk android:minsdkversion="7" android:targetsdkversion="11"/>    <supports-screens        android:resizeable="true"        android:anydensity="true"        android:smallscreens="true"        android:normalscreens="true"        android:largescreens="true"        android:xlargescreens="true"    /> ............. ........... 

after upload google market. can see @ htc dream, magic, nexus one, desire-z, samsung galaxy tab. when borrow xoom install app. found can not see app, if name or similar words, result nothing.

and have searched long time, can not answer. answer appreciated much!

i'm not sure if you're having issue still, had same problem. had setup licensing instead of copy protection on market. need add licensing library , little code project it's pretty simple, step step guide in google's documentation: http://developer.android.com/guide/publishing/licensing.html

and check uses, phone options not work on xoom believe, had maybe 2 permissions , driving me nuts why wouldn't show on xoom. because xoom doesn't have sd card support yet relies on internal storage , because of permissions copy protection doesn't work must use licensing. hope helps.


Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -