4

I have samsung device s7 edge. Application not installed for live build. Please help me, what is an exactly problem. See this error throw, on Android N os in device.

enter image description here

Najib.Nj
  • 3,706
  • 1
  • 25
  • 39

2 Answers2

4

In your manifest file, add the element and specify the android:xlargeScreens attribute to "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"

Read android:resizeableActivity

FYI

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">
IntelliJ Amiya
  • 74,896
  • 15
  • 165
  • 198
1

try this it may work for you

In your manifest file, add the <supports-screens> element and specify the android:xlargeScreens attribute to "true":

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

In your manifest's <uses-sdk> element, set android:targetSdkVersion to "11" or higher:

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

for more assistance please look into this page HERE

cpt. Sparrow
  • 415
  • 8
  • 22