this post was submitted on 02 Mar 2025
4 points (100.0% liked)

Voyager

6039 readers
1 users here now

The official lemmy community for Voyager, an open source, mobile-first client for lemmy.

Download on App Store

Download on Play Store

Use as a Web App

Download on F-Droid

Rules

  1. Be nice.
  2. lemmy.world instance policy

Sponsor development! ๐Ÿ‘‡

Number of sponsors badge

๐Ÿ’™

founded 2 years ago
MODERATORS
 

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) ?

no comments (yet)
sorted by: hot top controversial new old
there doesn't seem to be anything here