You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For iOS, Tauri synchronizes both CFBundleVersion and CFBundleShortVersionString with the version property in tauri.conf.json. A similiar issue exists for Android builds.
This means we cannot distinguish between the user-facing version visible in stores and the developer-facing build version. Expo for React Native handles this well by defining the following configuration properties:
Property
Description
version
The user-facing version visible in stores. On Android, it represents versionName name in android/app/build.gradle. On iOS, it represents CFBundleShortVersionString in Info.plist.
android.versionCode
The developer-facing build version for Android. It represents versionCode in android/app/build.gradle.
ios.buildNumber
The developer-facing build version for iOS. It represents CFBundleVersion in Info.plist.
Describe the solution you'd like
Implement a similiar approach in tauri.config.json for defining the developer-facing build version for Android/iOS.
Describe the problem
For iOS, Tauri synchronizes both
CFBundleVersion
andCFBundleShortVersionString
with the version property intauri.conf.json
. A similiar issue exists for Android builds.This means we cannot distinguish between the user-facing version visible in stores and the developer-facing build version. Expo for React Native handles this well by defining the following configuration properties:
version
versionName
name in android/app/build.gradle. On iOS, it representsCFBundleShortVersionString
in Info.plist.android.versionCode
versionCode
in android/app/build.gradle.ios.buildNumber
CFBundleVersion
in Info.plist.Describe the solution you'd like
Implement a similiar approach in
tauri.config.json
for defining the developer-facing build version for Android/iOS.Alternatives considered
N/A
Additional context
#10944.
The text was updated successfully, but these errors were encountered: