I have designed the app for handling the Locale change during the app life cycle.
The entry in manifest
android:configChanges="locale"
works well & call the onConfigurationChanged
in activity, which handles the locale related code.
But the same logic not working for 4.2 JellyBean
devices.
The activity onDestroy
is called instead of onConfigurationChanged
when locale
is changed.
Is this something specific to 4.2 & how to handle this scenario.