Thank you, that's works. Normal compile. Truly, when i'm writing next code:
procedure TForm1.Button1Click(Sender: TObject);
var
I : Integer;
SoName : THandle;
ExportFunc : function(X, Y : Integer) : Integer;
begin
SoName := LoadLibrary('/storage/emulated/0/Documents/libTestLibrary.so');
if SoName <> 0 then
begin
ExportFunc := GetProcAddress(SoName, 'Launch');
I := ExportFunc(3, 5);
Label1.Text := IntToStr(I);
end;
end;
Nothing not happens....Even when i writed wrong library name, app not fired out with error.