I added in the Xcode project:
<my App>/
Resources/
<my App>.help/
Content/
Info.plist
Resources/
search.helpindex /*localized */
index.html /*localized */
Page1.html /*localized */
And, in the Project's Info.plist:
<key>CFBundleHelpBookFolder</key>
<string><my App>.help</string>
<key>CFBundleHelpBookName</key>
<string><project' bundle id>.help</string>
But when I archive it, the book help has been moved:
<my App>/
Content/
Resources/
Info.plist
en.lproj/
search.helpindex
index.html
Page1.htm
So the help book, as is, is missing.
If I manually move the files and folders in the Package to reconstruct the help book structure, it works.
What I have to do in Xcode to let it archive the Help book?