The application does not install any Android os N android device

I have ssung edge s7. The application is not installed for live assembly. Please help me what the problem is. Check out this error on Android N os on your device.

enter image description here

+4
source share
2 answers

In your manifest file, add an element and specify the attribute "true" : android:xlargeScreens

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

API 24 , . . .

android:resizeableActivity="true"

android: resizeableActivity

FYI

, API 23 , , . , . ; , .

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

,

<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" />

, ,

+1

Source: https://habr.com/ru/post/1680870/


All Articles