Fixed platform settings not using unique values for Android and iOS (#7198)
* Fixed platform settings not using unique values for Android and iOS Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com> * Removed unnecessary comment Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com> * Changes from PR Signed-off-by: John Jones-Steele <82226755+jjjoness@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
3a0edd2dd1
commit
b34a955c3d
@@ -262,27 +262,22 @@ namespace ProjectSettingsTool
|
||||
->Attribute(AZ::Edit::Attributes::AutoExpand, true)
|
||||
->Attribute(AZ::Edit::Attributes::Visibility, AZ::Edit::PropertyVisibility::ShowChildrenOnly)
|
||||
->DataElement(Handlers::LinkedLineEdit, &IosSettings::m_bundleName, "Bundle Name", "The name of the bundle.")
|
||||
->Attribute(Attributes::FuncValidator, ConvertFunctorToVoid(&Validators::FileName))
|
||||
->Attribute(Attributes::FuncValidator, ConvertFunctorToVoid(&Validators::IOSFileName))
|
||||
->Attribute(Attributes::PropertyIdentfier, Identfiers::IosBundleName)
|
||||
->Attribute(Attributes::LinkedProperty, Identfiers::ProjectName)
|
||||
->DataElement(Handlers::LinkedLineEdit, &IosSettings::m_bundleDisplayName, "Display Name", "The user visible name of the bundle.")
|
||||
->Attribute(Attributes::FuncValidator, ConvertFunctorToVoid(&Validators::IsNotEmpty))
|
||||
->Attribute(Attributes::PropertyIdentfier, Identfiers::IosDisplayName)
|
||||
->Attribute(Attributes::LinkedProperty, Identfiers::ProductName)
|
||||
->DataElement(Handlers::LinkedLineEdit, &IosSettings::m_executableName, "Executable Name", "Name of the bundle's executable file.")
|
||||
->Attribute(Attributes::FuncValidator, ConvertFunctorToVoid(&Validators::FileName))
|
||||
->Attribute(Attributes::FuncValidator, ConvertFunctorToVoid(&Validators::IOSFileName))
|
||||
->Attribute(Attributes::PropertyIdentfier, Identfiers::IosExecutableName)
|
||||
->Attribute(Attributes::LinkedProperty, Identfiers::ExecutableName)
|
||||
->DataElement(Handlers::LinkedLineEdit, &IosSettings::m_bundleIdentifier, "Bundle Identifier", "Uniquely identifies the bundle. Should be in reverse-DNS format.")
|
||||
->Attribute(Attributes::FuncValidator, ConvertFunctorToVoid(&Validators::PackageName))
|
||||
->Attribute(Attributes::LinkOptional, true)
|
||||
->Attribute(Attributes::PropertyIdentfier, Identfiers::IosBundleIdentifer)
|
||||
->Attribute(Attributes::LinkedProperty, Identfiers::AndroidPackageName)
|
||||
->DataElement(Handlers::LinkedLineEdit, &IosSettings::m_versionName, "Version Name", "The release version number string for the app. Displayed in the app store.")
|
||||
->Attribute(Attributes::FuncValidator, ConvertFunctorToVoid(&Validators::IOSVersionNumber))
|
||||
->Attribute(Attributes::LinkOptional, true)
|
||||
->Attribute(Attributes::PropertyIdentfier, Identfiers::IosVersionName)
|
||||
->Attribute(Attributes::LinkedProperty, Identfiers::AndroidVersionName)
|
||||
->DataElement(Handlers::QValidatedLineEdit, &IosSettings::m_versionNumber, "Version Number", "The build version number string for the bundle.")
|
||||
->Attribute(Attributes::FuncValidator, ConvertFunctorToVoid(&Validators::IOSVersionNumber))
|
||||
->DataElement(AZ::Edit::UIHandlers::ComboBox, &IosSettings::m_developmentRegion, "Development Region", "The default language and region for the app.")
|
||||
|
||||
Reference in New Issue
Block a user