Skip to content

Commit f91d71e

Browse files
committed
Fix: look for correctly named info.plist when adding a plugin
Fix: correctly merge plugin content when merging its info.plist Fixes #797
1 parent 97e4eff commit f91d71e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

lib/services/ios-project-service.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,9 @@ class IOSProjectService extends projectServiceBaseLib.PlatformProjectServiceBase
5454
frameworkDirectoriesExtensions: [".framework"],
5555
frameworkDirectoriesNames: ["Metadata"],
5656
targetedOS: ['darwin'],
57-
configurationFileName: this.$projectData.projectName+"-Info.plist",
58-
configurationFilePath: path.join(projectRoot, this.$projectData.projectName, this.$projectData.projectName+"-Info.plist")
57+
configurationFileName: "Info.plist",
58+
configurationFilePath: path.join(projectRoot, this.$projectData.projectName, this.$projectData.projectName+"-Info.plist"),
59+
mergeXmlConfig: [{ "nodename": "plist", "attrname": "*" }, {"nodename": "dict", "attrname": "*"}]
5960
};
6061
}
6162

0 commit comments

Comments
 (0)