You've already forked lazarus-ccr
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2161 8e941d3f-bd1b-0410-a28a-d453659cc2b4
24 lines
373 B
ObjectPascal
24 lines
373 B
ObjectPascal
library androidlcltest;
|
|
|
|
{$mode objfpc}{$H+}
|
|
{$define Android}
|
|
|
|
uses
|
|
{$ifdef Android}
|
|
cmem,
|
|
android_native_app_glue,
|
|
{$endif}
|
|
Interfaces,
|
|
Forms,
|
|
mainform;
|
|
|
|
exports //android_main name 'android_main',
|
|
ANativeActivity_onCreate name 'ANativeActivity_onCreate';
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TForm1, Form1);
|
|
Application.Run;
|
|
end.
|
|
|