简体   繁体   中英

how to update the strings.xml from the server

Our App supports different languages, some of the translations contain mistakes. The translations on the server are correct.

What is the recommended way to update the strings.xml from the server and how it could be done? Which technologies would be involved?

You cannot update your app's resources without deploying a new APK.

If you want to continue keeping the translations in XML resources, you will need to update them appropriately then deploy a new version of your application.

If you would like those strings to come only from the server in the future, you will need to set up an API service to expose the strings, and consume that API in your app instead of loading the strings from resource files.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM