Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

App Language Changing don't work after publishing in play console?

This app has 4 languages. If I install it via android studio or create APK and then install it on any phone, then changing the language works perfectly. But, After publishing on Play Console and downloading from the store, the app changing language doesn't work. Only stays English default

I just added some extra translatable lines in strings of other languages ( string.kurdish, string.german). I do want not it works as changing the language after publishing in-store!

like image 553
Mahdin Abid Avatar asked Nov 03 '25 18:11

Mahdin Abid


1 Answers

When you upload bundle file (.aab) to publish app on Play Store then it will removes localization files based on the user's phone settings during installation.

To avoid this, you need to add below line in build.gradle file

android {

  bundle {

     language {
       enableSplit = false
     }
   }
}
like image 81
Niranj Patel Avatar answered Nov 05 '25 09:11

Niranj Patel