我的应用程序未在超大型平板电脑上显示 [英] My app not showing on Very Large Tablet

查看:58
本文介绍了我的应用程序未在超大型平板电脑上显示的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我开发的应用程序之一未显示在这款平板电脑.以下是我的清单文件.任何帮助将不胜感激.

One of the apps I've developed is not showing on THIS tablet. Below is my manifest file. Any help will be highly appreciated.

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.my.app.package">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.Write_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" />

<application
    android:name="MyApplication"
    android:allowBackup="true"
    android:hardwareAccelerated="false"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:largeHeap="true"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:screenOrientation="landscape"
    android:theme="@style/AppTheme">
   -------

</application>

推荐答案

在您的应用中,您正在请求对硬件要求的许可.如果设备不具备该硬件功能,则Play商店不允许将应用程序安装在设备上.

In your app you are requesting for permission for hardware requirement. If device doesn't have that hardware capability play store doesn't allow app to install on device.

使用 uses-feature (使用 uses-feature )https://developer.android.com/guide/topics/manifest/uses-feature-element.html ,并根据您的项目要求将值设置为false.

Use uses-feature https://developer.android.com/guide/topics/manifest/uses-feature-element.html and set value to false based on your project requirement.

声明的目的是通知任何外部您可以在其上使用的一组硬件和软件功能的实体应用程序取决于.元素提供了必需的属性,该属性可以您指定您的应用程序是否需要并且不能运行没有声明的功能,或者是否希望拥有功能,但没有它就可以运行.由于功能支持可能会有所不同在Android设备上,该元素起着重要的作用让应用程序描述设备可变功能的角色它使用的.

The purpose of a declaration is to inform any external entity of the set of hardware and software features on which your application depends. The element offers a required attribute that lets you specify whether your application requires and cannot function without the declared feature, or whether it prefers to have the feature but can function without it. Because feature support can vary across Android devices, the element serves an important role in letting an application describe the device-variable features that it uses.

这篇关于我的应用程序未在超大型平板电脑上显示的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆