Different configChanges for different android os version for single activity
<activity
android:name=".Activity_JoinMeeting"
android:configChanges="orientation|screenSize|layoutDirection|locale"
android:screenOrientation="landscape"
android:launchMode="singleTop"
android:windowSoftInputMode="adjustPan|stateHidden"/>
configChanges for android OS 23 I want set set 4 properties and configChanges for android OS above 23 I want set 2 properties how can I achive it