kelvinhokk / cordova-plugin-localization-strings

Cordova Plugin for Localization of Strings on the App
MIT License
119 stars 106 forks source link

fix the android asynchronous hook #60

Closed mamillastre closed 3 years ago

mamillastre commented 3 years ago

The create_strings hook process the files asynchronously if the files already exist. It can cause some weird effects or errors if the strings files are accessed/updated by another process at the same time.

This PR intends to fix this bug by waiting for the end of the read/write process before ending the hook.

rodrigograca31 commented 3 years ago

looks good. merged