Note that there are some explanatory texts on larger screens.

plurals
  1. POApp is incompatible with all devices after publishing to the Market but same was working when moved directly to the device
    primarykey
    data
    text
    <p>I have developed an app using PhoneGap and tested the same in different version of emulator and also in my Motorola Photon. I have not faced any problem in testing. </p> <p>But when I published the same in the market it says "This app is incompatible with all of your devices.". My devices are with different screen size, different OS version ranging from 2.1 to 2.4.</p> <p>In publish home page, it says "This application is available to over 679 devices." It includes Motorola Photon 4g and all other devices which I have registered in the market download.</p> <p>I have republished the code many times by updating manifest file and java file based on all the answers given through out the stackoverflow for this kind of issues. To list it,</p> <ul> <li>Removing user-permission</li> <li>Updating all combinations of supports-screens</li> <li>Refreshing the save button in the publish page several times</li> <li>Uninstalling the apps in my mobile (But I have few more devices where I have not tested my apps but still says incompatible)</li> <li>Running aapt tool</li> <li>Removing the jar files from lib folder and referring that externally in Eclipse</li> <li>Few more changes that I cant recall</li> </ul> <p>below is the manifest file</p> <pre><code>&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.test.myapps" android:versionCode="5" android:versionName="1.4"&gt; &lt;uses-sdk android:minSdkVersion="7" /&gt; &lt;supports-screens android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" android:resizeable="true" android:anyDensity="true" /&gt; &lt;uses-permission android:name="android.permission.CAMERA" /&gt; &lt;uses-permission android:name="android.permission.READ_PHONE_STATE" /&gt; &lt;uses-permission android:name="android.permission.INTERNET" /&gt; &lt;uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /&gt; &lt;uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /&gt; &lt;uses-permission android:name="android.permission.SET_WALLPAPER" /&gt; &lt;uses-permission android:name="android.permission.SEND_SMS"/&gt; &lt;application android:icon="@drawable/app_icon" android:label="@string/app_name"&gt; &lt;activity android:name="com.test.myapps.HomePage" android:label="@string/app_name"&gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.MAIN" /&gt; &lt;category android:name="android.intent.category.LAUNCHER" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;activity android:name="com.google.ads.AdActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"&gt; &lt;/activity&gt; &lt;/application&gt; &lt;/manifest&gt; </code></pre> <p><strong>Please, help me in fixing the same. Thanks in advance....</strong></p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload