Is it possible to change AndroidManifest.xml at run time programmatically? If possible, how can I change the following code in AndroidManifest during application launch?
AndroidManifest.xml
android:configChanges="orientation|keyboardHidden"
No - it is not possible to change Android AndroidManifest.xml at run time.But you can programmatically change the changes at runtime - see here (look for onConfigurationChanged ).
onConfigurationChanged
Unable to set configChanges attribute programmatically