localization - Android app supporting different languages through locale folders vs making stand-alone apps, which is better? -


what advantages (or disadvantages) of having android app supporting different languages using local folders vs releasing same app in different languages (other takes little time)?

there countless reasons use android's built-in localization features. here's small sampling:

  • users can change language @ will. app automatically choose correct language without user downloading app again
  • you single codebase. simplifies code organization.
  • you need 1 apk. don't waste time exporting , uploading 1 apk every language support
  • integration development tools. android lint warn if missed translating string.

going own method of localizing app naive way localize. ignoring android's powerful tools supporting different devices , localization settings create more work yourself.


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -