My Vulkan-based game is based on NativeActivity and needs to avoid ALL activity destroy/recreate configuration changes because of the massive amount of load time it takes to do that. I currently have this defined for the activity in AndroidManifest.xml.
android:configChanges="colorMode|density|fontScale|fontWeightAdjustment|grammaticalGender|keyboard|keyboardHidden|layoutDirection|locale|orientation|screenLayout|screenSize|smallestScreenSize|uiMode">
But when the user changes system language my activity is destroyed and re-created. Is there some other (undocumented?) config change I need to declare? How do I prevent activity destruction/recreation for system language changes?