Skip to content

Commit 466eabd

Browse files
committed
chore: (droid) adjust classes for generators
1 parent ff04a98 commit 466eabd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Uno.UI.Runtime.Skia.Android/ApplicationActivity.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
namespace Microsoft.UI.Xaml
3131
{
3232
[Activity(ConfigurationChanges = ConfigChanges.Orientation | ConfigChanges.ScreenSize | ConfigChanges.UiMode, WindowSoftInputMode = SoftInput.AdjustPan | SoftInput.StateHidden)]
33-
public class ApplicationActivity : Controls.NativePage
33+
public partial class ApplicationActivity : Controls.NativePage
3434
{
3535
private static UnoSKCanvasView? _skCanvasView;
3636
private static ClippedRelativeLayout? _nativeLayerHost;
@@ -450,7 +450,7 @@ public static string GetTypeAssemblyFullName(string type) =>
450450
public static string GetTypeAssemblyFullName(string type) => Type.GetType(type)?.Assembly.FullName!;
451451
#endif // !NET10_0_OR_GREATER
452452

453-
internal class ClippedRelativeLayout : RelativeLayout
453+
internal partial class ClippedRelativeLayout : RelativeLayout
454454
{
455455
private SKPath _path = new SKPath();
456456
private Path _androidPath = new Path();

src/Uno.UI.Runtime.Skia.Android/Rendering/UnoSKCanvasView.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
namespace Uno.UI.Runtime.Skia.Android;
2424

25-
internal sealed class UnoSKCanvasView : GLSurfaceView
25+
internal sealed partial class UnoSKCanvasView : GLSurfaceView
2626
{
2727
private readonly SkiaRenderHelper.FpsHelper _fpsHelper = new();
2828
private SKPicture? _picture;

0 commit comments

Comments
 (0)