The iOS app is now configured to automatically use centralized configuration values, similar to how Android works.
To change the app display name that appears on the iOS home screen:
ios/Runner/app_config.xcconfig
APP_DISPLAY_NAME
valueExample:
APP_DISPLAY_NAME = LGKA+
Version and build numbers are automatically pulled from pubspec.yaml
:
CFBundleShortVersionString
uses $(FLUTTER_BUILD_NAME)
from pubspec.yaml versionCFBundleVersion
uses $(FLUTTER_BUILD_NUMBER)
from pubspec.yaml versionThe bundle identifier is set to com.lgka
to match the Android version.
app_config.xcconfig
defines the app display nameDebug.xcconfig
and Release.xcconfig
Info.plist
references $(APP_DISPLAY_NAME)
which gets the value from the xcconfigpubspec.yaml
This ensures consistency between iOS and Android platforms and makes updates easier.