Skip to content

Commit

Permalink
Merge pull request #17559 from unoplatform/mergify/bp/release/stable/…
Browse files Browse the repository at this point in the history
…5.3/pr-17556

fix: Use XAML reader hot reload for android (backport #17556)
  • Loading branch information
jeromelaban authored Jul 16, 2024
2 parents 8f9b00f + 1698dc2 commit cbe1f2b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,10 @@ private bool IsIssue93860Fixed()

if (assembly.GetCustomAttribute<AssemblyInformationalVersionAttribute>() is AssemblyInformationalVersionAttribute aiva)
{
#if __IOS__ || __CATALYST__
#if __IOS__ || __CATALYST__ || __ANDROID__
if (this.Log().IsEnabled(LogLevel.Trace))
{
this.Log().Trace($"iOS/Catalyst do not support C# based XAML hot reload: https://github.com/unoplatform/uno/issues/15918");
this.Log().Trace($"iOS/Catalyst/Android do not support C# based XAML hot reload: https://github.com/unoplatform/uno/issues/15918");
}

_isIssue93860Fixed = false;
Expand Down

0 comments on commit cbe1f2b

Please sign in to comment.