I can not see My android applicatio in google play from Samsung Galaxy s3 -


i uploaded android application in google play. after uploading on google play, can't see samsung galaxy s3 in list of available devices.

i tried find answer everywhere can't solve it.

i posted android menifiest file below:

 <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.eliteplatinum.budgetplanner" android:versioncode="12" 

 android:versionname="2.1" >

<!-- android:installlocation="auto" --> <uses-sdk android:minsdkversion="4" /> <supports-screens android:anydensity="true" android:largescreens="true" android:normalscreens="true" android:smallscreens="true" /> <uses-permission android:name="android.permission.internet" /> <uses-permission android:name="android.permission.vibrate" /> <uses-permission android:name="android.permission.write_external_storage" /> <uses-permission android:name="com.android.vending.billing" /> <application android:icon="@drawable/app_icon" android:label="@string/app_name" > <activity android:label="@string/app_name" android:name=".splash" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > <intent-filter > <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> </activity> <receiver android:name="alarmreceiver" android:process=":remote" > </receiver> <activity android:name=".notificationdialog" android:theme="@android:style/theme.translucent.notitlebar" > </activity> <activity android:name=".login" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > </activity> <activity android:name=".signup" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > </activity> <activity android:name=".forecast" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > </activity> <activity android:name=".search" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > </activity> <activity android:name=".plot" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > </activity> <activity android:name=".piechart" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > </activity> <activity android:name="com.bargraph.bargraph" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > </activity> <activity android:name=".bargraph" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > </activity> <activity android:name=".reports" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > </activity> <activity android:name=".summary" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > </activity> <activity android:name=".calc" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > </activity> <activity android:name=".settings" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > </activity> <activity android:name=".accounts" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > </activity> <activity android:name=".addaccount" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > </activity> <activity android:name=".editaccount" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > </activity> <activity android:name=".faqs" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > </activity> <activity android:name=".syncnrestore" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > </activity> <activity android:name="com.dignizant.inappbilling.plans" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > </activity> <activity android:name=".categories" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > </activity> <activity android:name=".addcategory" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > </activity> <activity android:name=".editsubcategories" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > </activity> <activity android:name="com.wheel.main" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > </activity> <activity android:name="com.horizontal.wheel.defaultdateslider" android:screenorientation="portrait" android:theme="@android:style/theme.notitlebar.fullscreen" > </activity> <service android:name="com.dignizant.inappbilling.billingservice" /> <receiver android:name="com.dignizant.inappbilling.billingreceiver" > <intent-filter > <action android:name="com.android.vending.billing.in_app_notify" /> <action android:name="com.android.vending.billing.response_code" /> <action android:name="com.android.vending.billing.purchase_state_changed" /> </intent-filter> </receiver> </application> 

googly play using filtering while user searching app in google play.

there many things consider while search app in google play.

please visit following link getting idea.

filtering app in google play

let me know have query!


Comments

Popular posts from this blog

javascript - backbone.js Collection.add() doesn't `construct` (`initialize`) an object -

php - Get uncommon values from two or more arrays -

Adding duplicate array rows in Php -