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 cordova-android@14.0.1 to cordova-android@15.0.0 and has broken one of our Cordova plugins. We have the following in our plugin.xml:
<config-file target="res/values/strings.xml" parent="/resources">
<string translatable="false" name="game_services_project_id">$APP_ID</string>
</config-file>
This refers 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 cordova-android@15.0.0.
Checklist
Bug Report
In #1818 (feat!: add partial night & day theme support) the commit included a change to rename
strings.xmlin the generated Android Studio project tocdv_strings.xml. This appears to be an undocumented breaking change going from cordova-android@14.0.1 to cordova-android@15.0.0 and has broken one of our Cordova plugins. We have the following in our plugin.xml:This refers to a file named
strings.xmlspecifically rather thancdv_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 cordova-android@15.0.0.
Checklist