Note that there are some explanatory texts on larger screens.

plurals
  1. POApp works fine on tablet, but not found on google play
    text
    copied!<p>I have an app that I am now on version 1.4 of it. I test on an android <code>tablet</code> as well as an android <code>phone</code>. </p> <p>In this most recent update, the app shows up on my <code>phone</code> when I search for "vforum"</p> <p>When I do the same thing on my <code>tablet</code>, it doesn't show up. I was curious as to why it wasn't showing up so I got a direct link to the app page and opened that in google play. I can see the app is there, however, there is an alert that says "Your device isn't compatible with this version." The <code>tablet</code> is even listed under the "approved devices" in the googe play dashboard.</p> <p>I find that odd because I used the <code>tablet</code> to test the app on. </p> <p>So I am using </p> <ul> <li>Ti SDK 3.1.0</li> <li>Android 4.0.3 w/ google apis sdk</li> <li>The <code>phone</code> (which works from google play) is running android 4.1.2</li> <li>The <code>tablet</code> (which doesn't show up in google play) is running android 4.0.3</li> </ul> <p>Can anyone shed some light on this as to why I can't see my app on my <code>tablet</code> from google play? After this release of my app, I am unable to see it on the <code>tablet</code>. My previous versions have worked fine.</p> <p><strong>EDIT</strong></p> <p>results of <code>aapt dump badging appname.apk</code></p> <pre><code>package: name='com.dop.vforummobile' versionCode='6' versionName='1.4.0' sdkVersion:'8' application-label:'Vforum Mobile' application-icon-120:'res/drawable/appicon.png' application-icon-160:'res/drawable/appicon.png' application-icon-240:'res/drawable/appicon.png' application: label='Vforum Mobile' icon='res/drawable/appicon.png' launchable-activity: name='com.dop.vforummobile.VforumMobileActivity' label='Vforum Mobile' icon='' uses-permission:'android.permission.ACCESS_WIFI_STATE' uses-permission:'android.permission.ACCESS_NETWORK_STATE' uses-permission:'android.permission.WRITE_EXTERNAL_STORAGE' uses-permission:'android.permission.INTERNET' uses-permission:'android.permission.READ_EXTERNAL_STORAGE' uses-implied-permission:'android.permission.READ_EXTERNAL_STORAGE','requested WRITE_EXTERNAL_STORAGE' uses-feature:'android.hardware.wifi' uses-implied-feature:'android.hardware.wifi','requested android.permission.ACCESS_WIFI_STATE, android.permission.CHANGE_WIFI_STATE, or android.permission.CHANGE_WIFI_MULTICAST_STATE permission' uses-feature:'android.hardware.touchscreen' uses-implied-feature:'android.hardware.touchscreen','assumed you require a touch screen unless explicitly made optional' main other-activities other-services supports-screens: 'small' 'normal' 'large' supports-any-density: 'true' locales: '--_--' densities: '120' '160' '240' native-code: 'armeabi' 'armeabi-v7a' ronnimac:platform-tools ronnie$ </code></pre> <p><strong>SOLUTION (Using Titanium mobile, tiapp.xml)</strong></p> <pre><code>&lt;android xmlns:android="http://schemas.android.com/apk/res/android"&gt; &lt;tool-api-level&gt;9&lt;/tool-api-level&gt; //-- Added this line because xlarge wasn't supported until android sdk version 9+ &lt;manifest android:versionCode="7" android:versionName="1.4.1"&gt; &lt;supports-screens android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" //-- Added xlargeScreen android:anyDensity="true" /&gt; &lt;/manifest&gt; &lt;/android&gt; </code></pre>
 

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