4
From time to time I’ve been updating the application, some devices do not find, I tried on my tablet positive 10 inches, and did not find. I have already configured the manifest to receive support for screens of various types, and can not find. targetVersion ta in 14, someone knows what can be?
manifest:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="br.com.insideweb.multpesquisa.view"
android:versionCode="11"
android:versionName="3.0" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="14" />
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true"
/>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.CALL_PHONE"/>
<application
android:allowBackup="true"
android:icon="@drawable/iconefinal"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="br.com.insideweb.multpesquisa.view.Splash"
android:screenOrientation="portrait"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="br.com.insideweb.multpesquisa.view.SegmentoView"
android:screenOrientation="portrait"
/>
<activity android:name="br.com.insideweb.multpesquisa.view.DescontoView"
android:screenOrientation="portrait"
/>
<activity android:name="br.com.insideweb.multpesquisa.view.UtilView"
android:screenOrientation="portrait"
/>
<activity android:name="br.com.insideweb.multpesquisa.view.ServicoView"
android:screenOrientation="portrait"
/>
<activity android:name="br.com.insideweb.multpesquisa.view.EmpresaView"
android:screenOrientation="portrait"
/>
<activity android:name="br.com.insideweb.multpesquisa.view.ViewWeb"
android:configChanges="orientation|screenSize"
/>
<activity android:name="br.com.insideweb.multpesquisa.view.MenuActivity"
android:screenOrientation="portrait"
/>
<activity android:name="br.com.insideweb.multpesquisa.view.ContatoWebView"
android:configChanges="orientation|screenSize"
/>
<activity android:name="br.com.insideweb.multpesquisa.view.RedeSocialView"
android:screenOrientation="portrait"
/>
<activity android:name="br.com.insideweb.multpesquisa.view.RegiaoView"
android:screenOrientation="portrait"
/>
/>
</application>
</manifest>
See how it appears in the playstore:
"Your APK in production must meet the following criteria: Your APK should only require hardware features that are normally available on tablets. Learn more Upload screenshots from tablet. Upload at least one screenshot to 10" tablets to the store listing. Learn more." However I have 2 app published with these warnings, which usually find on any device.
I’m sorry but without code we have no way to discover the problem, after all only all become soothsayers (sorry to joke.. see?)... Edit the question and put the "manifest".
– Guilherme Nascimento
Even put images for 7" and 10" devices in Store Listing? If so, are there too many blanks? He had the same problem as this question: http://answall.com/questions/39028/meu-app-n%C3%A3o-aparece-no-google-play-em-tablets?
– Wakim
@Warlock, use the
@username
when you want to answer someone, if you don’t get to my box, I wouldn’t even remember your question anymore... Post the whole manifest please.– Guilherme Nascimento
@Wakim not put images 7 and 10 not the problem is exactly the same, but in optimization tips appears there q the app was not designed for tablets, but already marked there. I already posted the manifest.
– War Lock
@Guillhermenascimento posted.
– War Lock
There is a wrong markup in your XML, see:
<activity android:name="br.com.insideweb.multpesquisa.view.RegiaoView" 
 android:screenOrientation="portrait"
 />
 /></application>
this is leftover/>
, this would be correct:<activity android:name="br.com.insideweb.multpesquisa.view.RegiaoView" 
 android:screenOrientation="portrait"
 />
 </application>
– Guilherme Nascimento
Voce thinks it might be this?
– War Lock
Test, if this is it confirm me so I can "officialize" as answer
– Guilherme Nascimento
Uses sdk limits the android versions covered by its application. http://developer.android.com/guide/topics/manifest/uses-sdk-element.html
– franM
@Warlock edited the answer. Could test without the
<uses-permission android:name="android.permission.CALL_PHONE"/>
?– Guilherme Nascimento