The application is not compatible with Samsung Galaxy Tab 10.1

I recently posted an update for the app. Starting with the update, I received several emails asking why it is not compatible with the Samsung Galaxy Tab 10.1.

The only addition to the manifest is the following line:

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> 

and the following is added to the application tag in the manifest:

 android:theme="@android:style/Theme.NoTitleBar.Fullscreen" 

The developer console says that the Galaxy Tab 10.1 is supported, so why is the issue related to incompatibility?

+4
source share
2 answers

Try enabling android: xlargeScreens support by pasting this into your manifest

 <supports-screens android:resizeable="true" android:smallScreens="true" android:normalScreens="true" android:largeScreens="true" android:xlargeScreens="true" /> 

For more information, see the Android documentation.

+1
source

I'm not too familiar with the lines you added, but they can be functions with a minimal API, which is too high for the Galaxy Tab 10.1.

0
source

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


All Articles