应用程序未安装某些设备 Android os N android

Application not installing some device Android os N android

我有三星设备 s7 edge。未为实时构建安装应用程序。请帮助我,究竟是什么问题。在设备中的 Android N os 上看到此错误抛出。

在清单文件中,添加元素并将 android:xlargeScreens 属性指定为 "true":

<supports-screens android:xlargeScreens="true" />

If your app targets API level 24 or higher, you can configure how and whether your app's activities support multi-window display. You can set attributes in your manifest to control both size and layout. A root activity's attribute settings apply to all activities within its task stack.

android:resizeableActivity="true"

阅读android:resizeableActivity

仅供参考

If you build a multi-orientation app that targets API level 23 or lower, and the user uses the app in multi-window mode, the system forcibly resizes the app. The system presents a dialog box warning the user that the app may behave unexpectedly. The system does not resize fixed-orientation apps; if the user attempts to open a fixed-orientation app under multi-window mode, the app takes over the whole screen.

<application
....
 android:resizeableActivity="true">

试试这个,它可能对你有用

在清单文件中,添加 <supports-screens> 元素并指定 android:xlargeScreens attribute to "true":

<supports-screens android:xlargeScreens="true" />

在清单的 <uses-sdk> 元素中,将 android:targetSdkVersion 设置为 "11" 或更高:

<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="11" />

如需更多帮助,请查看此页面 HERE