我最近在谷歌游戏商店发布了我的第一个应用程序,当我想在我的手机上下载它时,我开发了它,该商店表示该设备不受支持。当我查看支持的设备列表时,所有设备都是平板电脑,没有手机。
这是我的清单:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
package="com.thejuanandonly.schoolapp">
<supports-screens android:requiresSmallestWidthDp="480" />
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:theme="@style/Widget.AppCompat.PopupWindow">
</uses-permission>
<uses-permission android:name="android.permission.VIBRATE"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_pls"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/DefaultTheme"
android:hardwareAccelerated="true"
android:largeHeap="true">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".ScheduleActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:theme="@style/AppTheme"
android:label="@string/app_name"
android:excludeFromRecents="true">
</activity>
<activity
android:name=".TaskAdder"
app:theme="@style/ToolBarStyle"
android:label="@string/app_name"
android:excludeFromRecents="true">
</activity>
<activity android:name=".SubjectDetailActivity"
android:label="@string/app_name"
android:excludeFromRecents="true"
android:screenOrientation="portrait">
</activity>
<activity android:name=".PictureGroupActivity"
android:label="@string/app_name"
android:excludeFromRecents="true">
</activity>
<activity android:name=".NotesDetailActivity"
android:label="@string/app_name"
android:excludeFromRecents="true">
</activity>
<receiver android:process=":remote" android:name=".NotificationRecieverActivity"></receiver>
<activity android:name=".LoginActivity"
android:label="@string/app_name"
android:excludeFromRecents="true">
</activity>
<activity android:name=".GridViewPager"
android:configChanges="orientation|keyboardHidden|screenSize"
android:theme="@style/Theme.Transparent"
android:label="@string/app_name"
android:excludeFromRecents="true">
</activity>
</application>
</manifest>
答案 0 :(得分:4)
<supports-screens android:requiresSmallestWidthDp="480" />
当然在这种设置中看起来并不好看。
以下是Android文档对此的评价:
从HONEYCOMB_MR2开始,这是指定的新方法 应用程序兼容的最小屏幕尺寸。这个属性 提供所需的最小&#34;最小屏幕宽度&#34; (根据 -swNNNdp资源配置)应用程序可以运行。例如,典型的手机屏幕是320,一个7&#34;平板电脑600和10&#34; 平板电脑720.如果设备的最小屏幕宽度低于 这里提供的值,然后应用程序被认为是不兼容的 用那个设备。如果没有提供,那么任何旧的小屏幕, 将使用normalScreens,largeScreens或xlargeScreens属性 代替。
必须是整数值,例如&#34; 100&#34;。
这也可能是对资源的引用(在表单中) &#34; @ [package:] type:name&#34;)或theme属性(在表单中 &#34;?[package:] [type:] name&#34;)包含此类型的值。
常数值:16843620(0x01010364)
如果您也想支持手机,则应删除此行。