AshleyScirra opened a new issue, #1922: URL: https://github.com/apache/cordova-android/issues/1922
# Bug Report In #1818 (*feat!: add partial night & day theme support*) the commit included a change to rename `strings.xml` in the generated Android Studio project to `cdv_strings.xml`. This appears to be an undocumented breaking change going from [email protected] to [email protected] and has broken one of our Cordova plugins. We have the following in our plugin.xml: ```xml <config-file target="res/values/strings.xml" parent="/resources"> <string translatable="false" name="game_services_project_id">$APP_ID</string> </config-file> ``` This appears to refer to a file named strings.xml specifically rather than `cdv_strings.xml`. To support cordova-android@15, we have to change the file name. To support both I guess we need to have the tag twice to specify both names. Presumably any other Cordova plugins that similarly target strings.xml, themes.xml or colors.xml will also be broken for the same reason. ## Problem ### What is expected to happen? Preserve filenames of strings.xml et al. for backwards compatibility, or clearly document a breaking change. ### What does actually happen? Undocumented breaking change in [email protected]. ## Checklist <!-- Please check the boxes by putting an x in the [ ] like so: [x] --> - [ ] I searched for existing GitHub issues - [ ] I updated all Cordova tooling to most recent version - [ ] I included all the necessary information above -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
