How To Change Androidmanifest In Runtime?
Is it possible to change AndroidManifest.xml in runtime programatically? If it is possible, how can I change the following programatically int he AndroidManifest while running app?
Solution 1:
No - it's not possible to change the Android AndroidManifest.xml
in runtime.
But, you CAN do changes in runtime programatically - see here (look for onConfigurationChanged
).
Solution 2:
There is no way to set the configChanges attribute programmatically
Post a Comment for "How To Change Androidmanifest In Runtime?"