Error Compile target Android

Hi,
after installing and making a project with the following code, targeting the compilation of Android phones. but it contains errors like the following. Please help.

procedure TFrmTest.Button1Click(Sender: TObject);
var
  AES: TAESEncryption;
begin
  AES := TAESEncryption.Create;
  AES.AType := atOFB;
  AES.KeyLength := kl256;
  AES.OutputFormat := hexa;
  AES.Key := 'F6D722D90D99B601AF6C86EA1E426775';
  Edit1.Text := AES.Decrypt('AA80D424D2501B71E0BC5BD899DDEB2A2CE47EA7A5838BE6DCB16925B8A856C5');
  AES.Free;
end;

error message:
[DCC Error] E2597 C:\Users\Public\Documents\Embarcadero\Studio\19.0\PlatformSDKs\android-ndk-r9c\toolchains\arm-linux-androideabi-4.8\prebuilt\windows\bin\arm-linux-androideabi-ld.exe: error: cannot find -lTMSCPLib
  F:\Project\AesTest\Client\Android\Debug\MiscObj.o:MiscObj:function Miscobj::CharToHexa(unsigned char*, int, unsigned char*): error: undefined reference to 'CharToHexa'...etc....

i have follow this : https://www.tmssoftware.com/Site/forum/forum_posts.asp?TID=11317&PID=41276&title=android-compile-error#41276


but still not fix.

thank you
Hi,

The path you put in the search path field is not the right one. You have to put the path to "libAndroid" folder of your TMS Cryptography Pack installation folder. 

Best regards,
Marion


I don't see the libAndroid folder, it turns out I chose the wrong path,

Thanks you,