apk - no devices compatible with my android app -


i facing same problem. mentioned in many places issue answered many times nothing helps me app remove 0 device compatibility issue. please check below attached manifest , tell me problem. thankfull if moderator not delete it.here attaching android manifest file may debug issue.

    //manifest file       <manifest xmlns:android="http://schemas.android.com/apk/res/android"     package="com.acharkera.jinactor"     android:versioncode="3"     android:versionname="1.2" >      <uses-sdk         android:minsdkversion="10"         android:targetsdkversion="17" />     <supports-screens     android:smallscreens="true"     android:normalscreens="true"     android:largescreens="true"     android:anydensity="true"     android:resizeable="true"/>     <uses-permission android:name="android.permission.camera"/>     <uses-permission android:name="android.permission.write_external_storage"/>     <uses-permission android:name="android.permission.internet"/>     <uses-permission android:name="android.permission.access_network_state"/>"     <application          android:allowbackup="true"          android:icon="@drawable/fs_logo"          android:logo="@drawable/fs_logo"          android:label="@string/app_name"          android:theme="@style/apptheme" >          <activity          android:name="com.acharkera.jinactor.splash"          android:label="jinactor" >          <intent-filter>                 <action android:name="android.intent.action.main" />                 <category android:name="android.intent.category.launcher" />          </intent-filter>          </activity>            </application>           </manifest> 

i have tried many methods resolve. difficult part waiting 2-3 hours know whether worked or not. there way check whether app shows more devices before publishing?


Comments

Popular posts from this blog

php - mySql Join with 4 tables -

css - Text drops down with smaller window -

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -