For Upgrading Version Of Application From Application Properties >> Maui Shared >> Application Display Version (1.3.0) {we change 1 as major -- 3 as minor} BUT We do not change Application Version ========================================================================================================== For Language And Decimals Conflactes we need to add this function in App.xaml.cs void SetLocale() { CultureInfo ci = new CultureInfo("en-US"); Thread.CurrentThread.CurrentCulture = ci; Thread.CurrentThread.CurrentUICulture = ci; } And Run After InitializeComponent(); ===========================================================================================================