How to set up orientation in manifest for tablets as landscape and portrait for phones?
I want:
<application
android:name=".App"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:installLocation="preferExternal"
android:label="@string/app_name"
android:largeHeap="true"
<!--for phones-->
android:screenOrientation="portrait"
<!--for tablets-->
android:screenOrientation="landscape"
....
In one manifest. Is it possible?
0 comments:
Post a Comment