I have a problem with Delphi 11. I can’t register any of my components, I get the attached error when i right click on the package and select Install
unit MyNewComponent;
interface
uses
System.Classes,
FMX.Objects;
type
TMyComp = class(TShape)
end;
procedure Register;
implementation
procedure Register;
begin
RegisterComponents(‘BRTesting’, [TMyComp]);
end;
end.
There is allready registered a bug at embarcadero (https://quality.embarcadero.com/browse/RSP-36334) but I was hoping that I could get help here, because I fear that embarcadero is not going to fix this in the near future. And maybe they have changed something in the way we now have to register own components?