Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions config.json
Original file line number Diff line number Diff line change
Expand Up @@ -542,14 +542,14 @@
"groupId": "androidx.compose.ui",
"artifactId": "ui-graphics",
"version": "1.11.2",
"nugetVersion": "1.11.2",
"nugetVersion": "1.11.2.1",
"nugetId": "Xamarin.AndroidX.Compose.UI.Graphics"
},
{
"groupId": "androidx.compose.ui",
"artifactId": "ui-graphics-android",
"version": "1.11.2",
"nugetVersion": "1.11.2",
"nugetVersion": "1.11.2.1",
"nugetId": "Xamarin.AndroidX.Compose.UI.Graphics.Android"
},
{
Expand Down
6 changes: 6 additions & 0 deletions published-namespaces.txt
Original file line number Diff line number Diff line change
Expand Up @@ -436,6 +436,12 @@ AndroidX.Compose.UI.Draganddrop
AndroidX.Compose.UI.Draw
AndroidX.Compose.UI.Focus
AndroidX.Compose.UI.Graphics
AndroidX.Compose.UI.Graphics.Colorspace
AndroidX.Compose.UI.Graphics.Drawscope
AndroidX.Compose.UI.Graphics.Internal
AndroidX.Compose.UI.Graphics.Layer
AndroidX.Compose.UI.Graphics.Layer.View
AndroidX.Compose.UI.Graphics.Painter
AndroidX.Compose.UI.Graphics.Vector
AndroidX.Compose.UI.Graphics.Vector.Compat
AndroidX.Compose.UI.HapticFeedback
Expand Down
2 changes: 2 additions & 0 deletions source/AndroidXProject.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
"Xamarin.AndroidX.Compose.Foundation.Android",
"Xamarin.AndroidX.Compose.Foundation.Layout",
"Xamarin.AndroidX.Compose.Foundation.Layout.Android",
"Xamarin.AndroidX.Compose.UI.Graphics",
"Xamarin.AndroidX.Compose.UI.Graphics.Android",
};
}
<Project Sdk="Microsoft.NET.Sdk">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
signature and clash.
-->
<remove-node path="/api/package[@name='androidx.compose.foundation.shape']/class[@name='CornerSizeKt']/method[starts-with(@name,'CornerSize-')]" />
<remove-node path="/api/package[@name='androidx.compose.foundation.shape']/class[@name='RoundedCornerShapeKt']/method[starts-with(@name,'RoundedCornerShape-')]" />
<remove-node path="/api/package[@name='androidx.compose.foundation.shape']/class[@name='CutCornerShapeKt']/method[starts-with(@name,'CutCornerShape-')]" />
<remove-node path="/api/package[@name='androidx.compose.foundation.shape']/class[@name='AbsoluteRoundedCornerShapeKt']/method[starts-with(@name,'AbsoluteRoundedCornerShape-')]" />
<remove-node path="/api/package[@name='androidx.compose.foundation.shape']/class[@name='AbsoluteCutCornerShapeKt']/method[starts-with(@name,'AbsoluteCutCornerShape-')]" />
<remove-node path="/api/package[@name='androidx.compose.foundation.lazy.layout']/class[@name='LazyLayoutCacheWindowKt']/method[starts-with(@name,'LazyLayoutCacheWindow-')]" />

<!--
Expand Down Expand Up @@ -41,4 +45,18 @@
missing type. New in 1.11.x.
-->
<remove-node path="/api/package[@name='androidx.compose.foundation.text.selection']/class[@name='SelectionGestures_androidKt']" />

<!--
CornerBasedShape.copy(CornerSize,CornerSize,CornerSize,CornerSize) is abstract
and returns CornerBasedShape; every subclass (RoundedCornerShape,
CutCornerShape, AbsoluteRoundedCornerShape, AbsoluteCutCornerShape) overrides
it with a covariant (subclass-typed) return, which the binding generator emits
without the `override` keyword, leaving the abstract member unimplemented
(CS0534). Pin the managed return to the base type so the override is
recognized. New in 1.11.x (surfaced once UI.Graphics started binding).
-->
<attr path="/api/package[@name='androidx.compose.foundation.shape']/class[@name='RoundedCornerShape']/method[@name='copy' and count(parameter)=4]" name="managedReturn">AndroidX.Compose.Foundation.Shape.CornerBasedShape</attr>
<attr path="/api/package[@name='androidx.compose.foundation.shape']/class[@name='CutCornerShape']/method[@name='copy' and count(parameter)=4]" name="managedReturn">AndroidX.Compose.Foundation.Shape.CornerBasedShape</attr>
<attr path="/api/package[@name='androidx.compose.foundation.shape']/class[@name='AbsoluteRoundedCornerShape']/method[@name='copy' and count(parameter)=4]" name="managedReturn">AndroidX.Compose.Foundation.Shape.CornerBasedShape</attr>
<attr path="/api/package[@name='androidx.compose.foundation.shape']/class[@name='AbsoluteCutCornerShape']/method[@name='copy' and count(parameter)=4]" name="managedReturn">AndroidX.Compose.Foundation.Shape.CornerBasedShape</attr>
</metadata>
Loading