When I build with what is on the main branch, I get an error about invalid CFBundleShortVersionString, which appears to come from here:

ios/App/App/Info.plist

    <key>CFBundleShortVersionString</key>
    <string>$(MARKETING_VERSION)</string>

I can workaround / hack a fix by modifying the Info.plist file with something like:

    <key>CFBundleShortVersionString</key>
    <string>1.0.0</string>

But I assume that’s not the right thing to do. What is the correct way to set CFBundleShortVersionString or $(MARKETING_VERSION) ?