<div dir="ltr">Hi all,<br><br>I'm trying Android development on Lazarus and it seems to works almost well (of course apps run very slowly) and I'm trying to get something trough web.<br><br>Both lnet and synapse can compile for arm-android, but no one can connect to the web.<br>
<br>On AndroidManifest.xml I have the line:<br>    <uses-permission android:name="android.permission.INTERNET" /><br><br>The same project compiles and runs well (also lnet or synapse connection) on x86_64-win64<br>
<br>This is the simple code that I run:<br><br>procedure TForm1.Button2Click(Sender: TObject);<br>var<br>  HTTP: THTTPSend;<br>begin<br>  HTTP := THTTPSend.Create;<br>  try<br>    HTTP.HTTPMethod('GET', Edit1.Text);<br>
    Memo1.Lines.Assign(HTTP.Headers);<br>    Memo2.Lines.LoadFromStream(HTTP.Document);<br>  finally<br>    HTTP.Free;<br>  end;<br>end;<br><br>There are "tricks" to use these components or it is just not possible at now?<br>
<br>Thank you,<br>Kjow</div>