zoukankan      html  css  js  c++  java
  • Android : Your APK does not seem to be designed for tablets.

    1. 解决办法:

    Add these config in AndroidManifest.xml

    <supports-screens android:smallScreens="true"
    
    android:normalScreens="true"
    
    android:largeScreens="true"
    
    android:xlargeScreens="true"
    
    android:anyDensity="true"/>
    
    <uses-feature android:name="android.hardware.camera" android:required="false" />
    
    <uses-feature android:name="android.hardware.wifi" android:required="false" />
    
    <uses-feature android:name="android.hardware.telephony" android:required="false" />
    
    <uses-feature android:name="android.hardware.touchscreen" android:required="false" />
    
    <uses-feature android:name="android.hardware.screen.portrait" android:required="false" />
    
    <uses-feature android:name="android.hardware.screen.landscape" android:required="false" />

    2. 官方解释

    About uses-feature

    Google Play uses the <uses-feature>elements declared in your app manifest to filter your app from devices that do not meet it's hardware and software feature requirements.

    Declared <uses-feature> elements are informational only, meaning that the Android system itself does not check for matching feature support on the device before installing an application. However, other services (such as Google Play) or applications may check your application's <uses-feature> declarations as part of handling or interacting with your application. For this reason, it's very important that you declare all of the features (from the list below) that your application uses.

    http://developer.android.com/guide/topics/manifest/uses-feature-element.html

    About supports-screens

    Lets you specify the screen sizes your application supports and enable screen compatibility mode for screens larger than what your application supports. It's important that you always use this element in your application to specify the screen sizes your application supports.

    http://developer.android.com/guide/topics/manifest/supports-screens-element.html

    有几个默认就是true,另外几个根据不同的版本默认true或者flase。

  • 相关阅读:
    《机电传动控制》学习笔记08-1
    《机电传动控制》学习笔记-07
    《机电传动控制》学习笔记-06
    《机电传动控制》学习笔记05-2
    《机电传动控制》学习笔记05-1
    《团队项目》日志一
    《实时控制软件》第四周作业
    《实时控制软件》第三周作业
    《实时控制软件》第二周作业
    《机电传动控制》PLC仿真
  • 原文地址:https://www.cnblogs.com/xiaokang088/p/3547595.html
Copyright © 2011-2022 走看看