I made an android app for ordering a cab. I uploaded it on goole play and everything was fine until i tried to find the app over a tablet. I cannot find the app on google play. I googled the problem and i put the screen size in the manifest but its still not working.
<uses-permission android:name="android.permission.CALL_PHONE" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true">
<activity
android:name=".splash"
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>
<activity
android:name=".MainActivity"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />
<activity
android:name=".order"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />
<activity
android:name=".personal"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />
<activity
android:name=".flight"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />
<activity android:name=".details"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"></activity>
</application>
<supports-screens
android:anyDensity="true"
android:xlargeScreens="true"
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true" />
答案 0 :(得分:2)
问题属于"android.permission.CALL_PHONE"
权限,可能不适用于平板电脑。您应该添加其他条目,以显示这不是绝对必需的功能,然后在访问这些功能时在代码中处理该方案。
<uses-feature android:name="android.hardware.telephony" android:required="false"/>
答案 1 :(得分:0)
您应该为平板电脑部分放置屏幕截图以及Google Play for Tablets所需的要求。
答案 2 :(得分:0)
您应该为平板电脑设置所有要求,并在应用布局文件夹中为平板电脑创建.xml文件,为平板电脑设置屏幕截图。从documentation
了解更多信息