B4J Question WARNING: Illegal reflective access by anywheresoftware.b4a.objects.B4XCanvas ...

MarkusR

Well-Known Member
Licensed User
Longtime User
hello,
i try to use this command DrawPathRotated
B4X:
Private path As B4XPath
path.InitializeArc(width / 2.0,height / 2.0,radius,0,90)
Sub Paint(cvs As B4XCanvas)
cvs.DrawPathRotated(path,xui.Color_ARGB(alpha,red,green,blue),filled,strokewidth,degree,vx,vy)
my intent was to draw vector graphics

i got this warning:
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by anywheresoftware.b4a.objects.B4XCanvas (file:/D:/Basic4Java/Libraries/jXUI.jar) to field javafx.scene.canvas.GraphicsContext.path
WARNING: Please consider reporting this to the maintainers of anywheresoftware.b4a.objects.B4XCanvas
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
 
Top