forked from jmpessoa/lazandroidmodulewizard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmartdesigner.pas
4269 lines (3721 loc) · 157 KB
/
smartdesigner.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
unit SmartDesigner;
{$mode objfpc}{$H+}
interface
uses
Classes,
SysUtils,
Controls,
ProjectIntf,
Forms,
AndroidWidget,
process,
SourceChanger,
propedits,
LCLClasses,
createfiles,
createdirectories,
rawjnihelper;
//tk min and max API versions for build.xml
const
cMinAPI = 14;
cMaxAPI = 35;
// end tk
type
{ TLamwSmartDesigner }
TLamwSmartDesigner = class
private
FLazProjectMainFile: TLazProjectFile;
FPackageName: string;
FStartModuleVarName: string;
// all Paths have trailing PathDelim
FPathToJavaSource: string; //Included Path Delimiter!
FPathToAndroidProject: string; //Included Path Delimiter!
FPathToAndroidSDK: string; //Included Path Delimiter!
FPathToAndroidNDK: string; //Included Path Delimiter!
FPathToJavaJDK: string; //Included Path Delimiter!
FSmallProjName: string;
FGradleVersion: string;
FPrebuildOSYS: string;
FCandidateSdkPlatform: integer;
FPathToGradle: string;
FPathToSmartDesigner: string;
FChipArchitecture: string;
FNDKIndex: string;
FMaxNdk: integer;
FNDKVersion: integer;
FMinSdkControl: integer;
FNdkApi: string;
FAndroidTheme: string;
FIsKotlinSupported: boolean;
FKeepMyBuildGradleWhenReopen: string;
FJavaBigVersion: string;
FJavaMainVersion: string;
procedure CleanupAllJControlsSource;
procedure GetAllJControlsFromForms(jControlsList: TStrings);
procedure AddSupportToFCLControls(chipArch: string);
procedure UpdateProjectLpr(oldModuleName: string; newModuleName: string);
procedure UpdateProjectLpr4RawJniLibrary();
procedure InitSmartDesignerHelpers;
procedure UpdateStartModuleVarName;
procedure UpdateAllJControls(AProject: TLazProject);
procedure TryUpdateMipmap();
procedure UpdateBuildModes();
procedure KeepBuildUpdated(targetApi: integer);
procedure TryChangeDemoProjecPaths;
procedure TryChangeDemoProjecAntBuildScripts();
function GetMaxNdkPlatform(ndkVer: integer): integer;
function HasBuildTools(platform: integer; out outBuildTool: string): boolean;
function GetMaxSdkPlatform(): integer;
function GetVesionCodeFromBuilGradle(): string;
function GetVesionNameFromBuilGradle(): string;
function TryProduceGradleVersion(pathToGradle: string): string;
function GetGradleVersion(pathToGradle: string): string;
function IsDemoProject: boolean;
function GetEventSignature(const nativeMethod: string): string;
function GetPackageNameFromAndroidManifest(pathToAndroidManifest: string): string;
function GetCorrectTemplateFileName(const Path, FileName: String): String; //by kordal
function TryAddJControl(ControlsJava: TStringList; jclassname: string; out nativeAdded: boolean): boolean;
function GetLprStartModuleVarName: string;
function TryChangePrebuildOSY(path: string): string;
function TryChangeTo49x(path: string): string;
function TryChangeTo49(path: string): string;
function TryChangeNdkPlatformsApi(path: string; newNdkApi: integer): string;
function IsSdkToolsAntEnable(path: string): boolean;
function GetPathToSmartDesigner(): string;
function TryGetNDKRelease(pathNDK: string): string;
function GetNDKVersion(ndkRelease: string): integer;
function GetVerAsString(aVers: integer): string; //?? android
protected
function OnProjectOpened(Sender: TObject; AProject: TLazProject): TModalResult;
function OnProjectSavingAll(Sender: TObject): TModalResult;
function AddClicked(ADesigner: TIDesigner;
MouseDownComponent: TComponent; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer;
var AComponentClass: TComponentClass;
var NewParent: TComponent): boolean;
public
destructor Destroy; override;
procedure Init;
// calleds from Designer/TAndroidWidgetMediator ::: TAndroidWidgetMediator.UpdateJControlsList;
procedure UpdateJControls(ProjFile: TLazProjectFile; AndroidForm: TAndroidForm);
procedure Init4Project(AProject: TLazProject);
procedure Init4RawJniProject(AProject: TLazProject);
//calleds from Designer/TAndroidWidgetMediator ::: TAndroidWidgetMediator.UpdateJControlsList;
procedure UpdateFCLControls(ProjFile: TLazProjectFile; AndroidForm: TAndroidForm);
procedure UpdateProjectStartModule(const NewName: string; moduleType: integer);
procedure DoBuildGradle(minSdkApi: string; targetApi: string);
procedure TryProduceJavaVersion(pathToJDKRelease: string);
function IsLaz4Android(): boolean;
function GetAndroidPluginVersion(gradleVersion: string; mainJavaVersion: string): string; //new!
function GetGradleVersionAsBigNumber(gradleVersionAsString: string): integer;
function GetAndroidPluginVersionAsBigNumber(androidPluginVersionAsString: string): integer;
end;
function ReplaceChar(const query: string; oldchar, newchar: char): string;
function IsAllCharNumber(pcString: PChar): Boolean;
function TrimChar(query: string; delimiter: char): string;
function NextPos(delimiter: char; initialPos: integer; str: string): integer;
var
LamwSmartDesigner: TLamwSmartDesigner;
implementation
uses
{$ifdef unix}BaseUnix,{$endif}
{Controls,}
Dialogs,
{SrcEditorIntf,}
LazIDEIntf,
IDEMsgIntf,
IDEExternToolIntf,
CodeToolManager,
CodeTree,
CodeCache,
{SourceChanger,}
LinkScanner,
Laz2_DOM,
laz2_XMLRead,
FileUtil,
LazFileUtils,
LamwSettings,
uJavaParser,
strutils,
AndroidWizard_intf,
PackageIntf;
procedure SaveShellScript(script: TStringList; const AFileName: string);
begin
script.SaveToFile(AFileName);
{$ifdef UNIX}
FpChmod(AFileName, &751);
{$endif}
end;
procedure TryRunProcessChmod(path: string);
var
proc: TProcess; //don't delete it!
begin
{$ifdef UNIX}
try
proc := TProcess.Create(nil);
proc.Parameters.Add('777');
proc.Parameters.Add('-R');
Proc.Parameters.Add(path);
proc.Options:= proc.Options + [poWaitOnExit,poUsePipes];
proc.Executable:='chmod';
proc.Execute;
finally
Proc.Free;
end;
ShowMessage('Warning: Project files permissions changed to "R" and "W" !'+
sLineBreak+
'Maybe, You will need close and re-open the Lazurus IDE'+
sLineBreak+ 'to build/run your modified project [sorry...]'+
sLineBreak+ '[hint: when prompt to save project, choice "yes"]');
{$endif}
end;
function ReplaceChar(const query: string; oldchar, newchar: char): string;
var
i: Integer;
begin
Result := query;
for i := 1 to Length(Result) do
if Result[i] = oldchar then Result[i] := newchar;
end;
function IsAllCharNumber(pcString: PChar): Boolean;
begin
Result := False;
if StrLen(pcString)=0 then exit;
while pcString^ <> #0 do // 0 indicates the end of a PChar string
begin
if not (pcString^ in ['0'..'9']) then Exit;
Inc(pcString);
end;
Result := True;
end;
function GetPathToSDKFromBuildXML(fullPathToBuildXML: string): string;
var
i, pk: integer;
strAux: string;
packList: TStringList;
begin
Result:= '';
if FileExists(fullPathToBuildXML) then
begin
packList:= TStringList.Create;
packList.LoadFromFile(fullPathToBuildXML);
pk:= Pos('location="',packList.Text); //ex. location="C:\adt32\sdk"
strAux:= Copy(packList.Text, pk+Length('location="'), MaxInt);
i := PosEx('"', strAux, 2);
Result:= Trim(Copy(strAux, 1, i-1));
packList.Free;
end;
end;
{ TLamwSmartDesigner }
//http://wiki.freepascal.org/Extending_the_IDE#Event_handlers
function TLamwSmartDesigner.AddClicked(ADesigner: TIDesigner;
MouseDownComponent: TComponent; Button: TMouseButton;
Shift: TShiftState; X, Y: Integer;
var AComponentClass: TComponentClass;
var NewParent: TComponent): boolean;
begin
Result:= True;
if LazarusIDE.ActiveProject.CustomData.Contains('LAMW') then
begin
if AComponentClass.InheritsFrom(TWinControl) then
begin
MessageDlg('Error: TWinControl Component',
'"'+AComponentClass.ClassName+'"'+sLineBreak+'not supported by LAMW project...',
mtError, [mbOK], 0);
Exit;
end;
if AComponentClass.InheritsFrom(TLCLComponent) then
begin
case QuestionDlg ('Warning: LCL Component',
'"'+AComponentClass.ClassName+'"'+sLineBreak+'does not seem to be a LAMW component...',
mtCustom,[mrYes,'Continue', mrNo, 'Exit'],'') of
mrNo:
begin
Result := False;
Exit;
end;
end;
end;
if Pos('AppCompat.',LazarusIDE.ActiveProject.CustomData['Theme']) > 0 then
Exit;
if AComponentClass.ClassNameIs('jsFloatingButton') or
AComponentClass.ClassNameIs('jsTextInput') or
AComponentClass.ClassNameIs('jsRecyclerView') or
AComponentClass.ClassNameIs('jsCardView') or
AComponentClass.ClassNameIs('jsViewPager') or
AComponentClass.ClassNameIs('jsDrawerLayout') or
AComponentClass.ClassNameIs('jsNavigationView') or
AComponentClass.ClassNameIs('jsAppBarLayout') or
AComponentClass.ClassNameIs('jsTabLayout') or
AComponentClass.ClassNameIs('jsToolBar') or
AComponentClass.ClassNameIs('jsCoordenatorLayout') or
AComponentClass.ClassNameIs('jsCollapsingToolbarLayout') or
AComponentClass.ClassNameIs('jsNestedScrollView') or
AComponentClass.ClassNameIs('jsBottomNavigationView') or
AComponentClass.ClassNameIs('jsContinuousScrollableImageView') or
AComponentClass.ClassNameIs('jsAdMod') or
AComponentClass.ClassNameIs('jsFirebasePushNotificationListener') or
AComponentClass.ClassNameIs('jsEscPosThermalPrinter') or
AComponentClass.ClassNameIs('jsArduinoAflakSerial') or
AComponentClass.ClassNameIs('KToyButton') then
begin
ShowMessage('[Undoing..] "'+AComponentClass.ClassName+'" need AppCompat theme...' +sLIneBreak+
'Hint: You can convert the project to AppCompat theme:' +sLIneBreak+
' menu "Tools" --> "[LAMW]..." --> "Convert..."');
Result:= False;
end;
end;
end;
procedure TLamwSmartDesigner.Init4RawJniProject(AProject: TLazProject);
begin
if not AProject.CustomData.Contains('LAMW') then Exit;
if AProject.CustomData['LAMW'] <> 'RawJniLibrary' then Exit;
end;
function TLamwSmartDesigner.OnProjectOpened(Sender: TObject; AProject: TLazProject): TModalResult;
var
tempStr, ext: string;
p: integer;
strList: TStringList;
begin
if AProject.CustomData.Contains('LAMW') then
begin
//warning: Lazarus 2.0.12 dont read anymore *.lpi from Lazarus 2.2!
tempStr := ExtractFilePath(AProject.MainFile.Filename);
//C:\android\workspace\AppLAMWProject20\jni\ <---
FPathToAndroidProject := Copy(tempStr, 1, RPosEX(PathDelim, tempStr, Length(tempStr) - 1));
//C:\android\workspace\AppLAMWProject20\ <---
ext:= 'bat';
{$ifdef unix}
ext:= 'sh';
{$endif}
if not FileExists(tempStr + 'before_build.'+ ext) then
begin
strList:= TStringList.Create;
strList.Add('@echo off');
strList.Add('echo before build...');
strList.SaveToFile(tempStr+'before_build.bat');
strList.Clear;
strList.Add('#!/bin/bash');
strList.Add('echo "before build..."');
strList.SaveToFile(tempStr+'before_build.sh');
{$ifdef unix}
FpChmod(tempStr+'before_build.sh', &751);
{$endif}
strList.Free;
end;
if not FileExists(tempStr + 'after_build.'+ext) then
begin
strList:= TStringList.Create;
strList.Clear;
strList.Add('@echo off');
strList.Add('echo after build...');
strList.SaveToFile(tempStr+'after_build.bat');
strList.Clear;
strList.Add('#!/bin/bash');
strList.Add('echo "after build..."');
strList.SaveToFile(tempStr+'after_build.sh');
{$ifdef unix}
FpChmod(tempStr+'after_build.sh', &751);
{$endif}
strList.Free;
end;
AProject.LazCompilerOptions.ExecuteBefore.Command:='before_build.bat';
AProject.LazCompilerOptions.ExecuteAfter.Command:= 'after_build.bat';
{$ifdef unix}
AProject.LazCompilerOptions.ExecuteBefore.Command:= 'before_build.sh';
AProject.LazCompilerOptions.ExecuteAfter.Command:= 'after_build.sh';
{$endif}
AProject.Modified:= True;
tempStr:= Copy(FPathToAndroidProject, 1, Length(FPathToAndroidProject)-1);
p:= LastDelimiter(PathDelim, tempStr) + 1;
FSmallProjName:= Copy(tempStr, p, Length(tempStr));
FLazProjectMainFile := AProject.MainFile; //save ...
//ShowMessage(AProject.MainFile.Filename); //C:\android\workspace\AppLAMWProject24\jni\controls.lpr
if AProject.CustomData.Values['LAMW'] = 'GUI' then
Init4Project(AProject)
else if AProject.CustomData.Values['LAMW'] = 'RawJniLibrary' then
Init4RawJniProject(AProject);
end;
Result := mrOK;
end;
function TLamwSmartDesigner.GetPackageNameFromAndroidManifest(pathToAndroidManifest: string): string;
var
str: string;
xml: TXMLDocument;
begin
str := pathToAndroidManifest + 'AndroidManifest.xml';
if not FileExists(str) then Exit('');
ReadXMLFile(xml, str);
try
Result := xml.DocumentElement.AttribStrings['package'];
finally
xml.Free
end;
end;
function TLamwSmartDesigner.GetNDKVersion(ndkRelease: string): integer;
var
strNdkVersion: string;
begin
if Pos('.',ndkRelease) > 0 then // //18.1.506304
begin
strNdkVersion:= SplitStr(ndkRelease, '.'); //strNdkVersion:='18'
if strNdkVersion <> '' then
begin
Result:= StrToInt(Trim(strNdkVersion));
end;
end
else Result:= 10; //r10e
end;
procedure TLamwSmartDesigner.TryUpdateMipmap();
var
pathToJavaTemplates: string;
begin
if DirectoryExists(FPathToAndroidProject +'res'+DirectorySeparator+'mipmap-mdpi') then Exit;
if LazarusIDE.ActiveProject.CustomData['CanCreateResMipmapFolder'] = 'NO' then Exit;
if MessageDlg('Question', 'Do you wish to Create res/mipmap folders?',
mtConfirmation, [mbYes, mbNo], 0) = mrYes then
begin
pathToJavaTemplates := LamwGlobalSettings.PathToJavaTemplates; //included path delimiter
if ForceDirectories(FPathToAndroidProject +'res'+DirectorySeparator+'mipmap-xxxhdpi') then
begin
if ((not FileExists(FPathToAndroidProject + 'res' + DirectorySeparator + 'mipmap-xxxhdpi' +DirectorySeparator + 'ic_launcher.webp')) and
(not FileExists(FPathToAndroidProject + 'res' + DirectorySeparator + 'mipmap-xxxhdpi' +DirectorySeparator + 'ic_launcher.png'))) then
begin
CopyFile(pathToJavaTemplates +'mipmap-xxxhdpi'+DirectorySeparator+'ic_launcher.webp',
FPathToAndroidProject + 'res'+DirectorySeparator+'mipmap-xxxhdpi'+DirectorySeparator+'ic_launcher.webp');
CopyFile(pathToJavaTemplates +'mipmap-xxxhdpi'+DirectorySeparator+'ic_launcher_round.webp',
FPathToAndroidProject + 'res'+DirectorySeparator+'mipmap-xxxhdpi'+DirectorySeparator+'ic_launcher_round.webp');
end;
end;
if ForceDirectories(FPathToAndroidProject +'res'+DirectorySeparator+'mipmap-xxhdpi') then
begin
if ((not FileExists(FPathToAndroidProject + 'res' + DirectorySeparator + 'mipmap-xxhdpi' +DirectorySeparator + 'ic_launcher.webp')) and
(not FileExists(FPathToAndroidProject + 'res' + DirectorySeparator + 'mipmap-xxhdpi' +DirectorySeparator + 'ic_launcher.png'))) then
begin
CopyFile(pathToJavaTemplates +'mipmap-xxhdpi'+DirectorySeparator+'ic_launcher.webp',
FPathToAndroidProject + 'res'+DirectorySeparator+'mipmap-xxhdpi'+DirectorySeparator+'ic_launcher.webp');
CopyFile(pathToJavaTemplates +'mipmap-xxhdpi'+DirectorySeparator+'ic_launcher_round.webp',
FPathToAndroidProject + 'res'+DirectorySeparator+'mipmap-xxhdpi'+DirectorySeparator+'ic_launcher_round.webp');
end;
end;
if ForceDirectories(FPathToAndroidProject +'res'+DirectorySeparator+'mipmap-xhdpi') then
begin
if ((not FileExists(FPathToAndroidProject + 'res' + DirectorySeparator + 'mipmap-xhdpi' +DirectorySeparator + 'ic_launcher.webp')) and
(not FileExists(FPathToAndroidProject + 'res' + DirectorySeparator + 'mipmap-xhdpi' +DirectorySeparator + 'ic_launcher.png'))) then
begin
CopyFile(pathToJavaTemplates +'mipmap-xhdpi'+DirectorySeparator+'ic_launcher.webp',
FPathToAndroidProject + 'res'+DirectorySeparator+'mipmap-xhdpi'+DirectorySeparator+'ic_launcher.webp');
CopyFile(pathToJavaTemplates +'mipmap-xhdpi'+DirectorySeparator+'ic_launcher_round.webp',
FPathToAndroidProject + 'res'+DirectorySeparator+'mipmap-xhdpi'+DirectorySeparator+'ic_launcher_round.webp');
end;
end;
if ForceDirectories(FPathToAndroidProject +'res'+DirectorySeparator+'mipmap-hdpi') then
begin
if ((not FileExists(FPathToAndroidProject + 'res' + DirectorySeparator + 'mipmap-hdpi' +DirectorySeparator + 'ic_launcher.webp')) and
(not FileExists(FPathToAndroidProject + 'res' + DirectorySeparator + 'mipmap-hdpi' +DirectorySeparator + 'ic_launcher.png'))) then
begin
CopyFile(pathToJavaTemplates +'mipmap-hdpi'+DirectorySeparator+'ic_launcher.webp',
FPathToAndroidProject + 'res'+DirectorySeparator+'mipmap-hdpi'+DirectorySeparator+'ic_launcher.webp');
CopyFile(pathToJavaTemplates +'mipmap-hdpi'+DirectorySeparator+'ic_launcher_round.webp',
FPathToAndroidProject + 'res'+DirectorySeparator+'mipmap-hdpi'+DirectorySeparator+'ic_launcher_round.webp');
end;
end;
if ForceDirectories(FPathToAndroidProject +'res'+DirectorySeparator+'mipmap-mdpi') then
begin
if ((not FileExists(FPathToAndroidProject + 'res' + DirectorySeparator + 'mipmap-mdpi' +DirectorySeparator + 'ic_launcher.webp')) and
(not FileExists(FPathToAndroidProject + 'res' + DirectorySeparator + 'mipmap-mdpi' +DirectorySeparator + 'ic_launcher.png'))) then
begin
CopyFile(pathToJavaTemplates +'mipmap-mdpi'+DirectorySeparator+'ic_launcher.webp',
FPathToAndroidProject + 'res'+DirectorySeparator+'mipmap-mdpi'+DirectorySeparator+'ic_launcher.webp');
CopyFile(pathToJavaTemplates +'mipmap-mdpi'+DirectorySeparator+'ic_launcher_round.webp',
FPathToAndroidProject + 'res'+DirectorySeparator+'mipmap-mdpi'+DirectorySeparator+'ic_launcher_round.webp');
end;
end;
end
else LazarusIDE.ActiveProject.CustomData['CanCreateResMipmapFolder']:= 'NO';
end;
function TLamwSmartDesigner.TryGetNDKRelease(pathNDK: string): string;
var
list: TStringList;
aux, strNdkVersion: string;
begin
list:= TStringList.Create;
if FileExists(pathNDK+'source.properties') then
begin
list.LoadFromFile(pathNDK+'source.properties');
{
Pkg.Desc = Android NDK
Pkg.Revision = 18.1.5063045
}
strNdkVersion:= list.Strings[1]; //Pkg.Revision = 18.1.5063045
aux:= SplitStr(strNdkVersion, '='); //aux:= 'Pkg.Revision ' ...strNdkVersion:=' 18.1.506304'
aux:=Trim(strNdkVersion); //18.1.506304
Result:= aux;
end
else
begin
if FileExists(pathNDK+'RELEASE.TXT') then //r10e
begin
list.LoadFromFile(pathNDK+'RELEASE.TXT');
if Trim(list.Strings[0]) = 'r10e' then
Result:= 'r10e'
else Result:= 'unknown';
end;
end;
list.Free;
end;
function TLamwSmartDesigner.GetMaxNdkPlatform(ndkVer: integer): integer;
begin
Result:= 22;
case ndkVer of
10: Result:= 21;
11: Result:= 24;
12: Result:= 24;
13: Result:= 24;
14: Result:= 24;
15: Result:= 26;
16: Result:= 27;
17: Result:= 28;
18: Result:= 28;
19: Result:= 28;
20: Result:= 29;
21: Result:= 30;
22: Result:= 30; //The deprecated "platforms" directories have been removed....
23: Result:= 30;
end;
end;
function TLamwSmartDesigner.GetMaxSdkPlatform(): integer;
var
lisDir: TStringList;
strApi: string;
i, intApi: integer;
tempOutBuildTool: string;
begin
Result:= 0;
FCandidateSdkPlatform:= 0;
lisDir:= TStringList.Create;
FindAllDirectories(lisDir, IncludeTrailingPathDelimiter(FPathToAndroidSDK)+'platforms', False);
if lisDir.Count > 0 then
begin
for i:=0 to lisDir.Count-1 do
begin
strApi:= ExtractFileName(lisDir.Strings[i]); //android-21
if strApi <> '' then
begin
strApi:= Copy(strApi, LastDelimiter('-', strApi) + 1, MaxInt);
if IsAllCharNumber(PChar(strApi)) then //skip android-P
begin
intApi:= StrToInt(strApi);
if FCandidateSdkPlatform < intApi then FCandidateSdkPlatform:= intApi;
if Result < intApi then
begin
if HasBuildTools(intApi, tempOutBuildTool) then
begin
Result:= intApi;
end;
end;
end;
end;
end;
end;
lisDir.free;
end;
function TLamwSmartDesigner.HasBuildTools(platform: integer; out outBuildTool: string): boolean;
begin
Result:= True;
if platform < 30 then
outBuildTool:= '29.0.3'
else
outBuildTool:= '30.0.3';
end;
function TLamwSmartDesigner.GetVesionCodeFromBuilGradle(): string;
var
list: TStringList;
p: integer;
aux: string;
begin
Result:= '1';
if FileExists(FPathToAndroidProject + 'build.gradle') then
begin
list:= TStringList.Create;
list.LoadFromFile(FPathToAndroidProject + 'build.gradle');
p:= Pos('versionCode', list.Text);
aux:= Copy(list.Text, p + Length('versionCode') + 1, 10);
aux:= Trim(aux);
aux:= ReplaceChar(aux, #10, ' ');
aux:= ReplaceChar(aux, #13, ' ');
aux:= Trim(aux);
Result:=aux;
end;
end;
function TLamwSmartDesigner.GetVesionNameFromBuilGradle(): string;
var
list: TStringList;
p: integer;
aux: string;
begin
Result:= '"1.0"';
if FileExists(FPathToAndroidProject + 'build.gradle') then
begin
list:= TStringList.Create;
list.LoadFromFile(FPathToAndroidProject + 'build.gradle');
p:= Pos('versionName', list.Text);
aux:= Copy(list.Text, p + Length('versionName') + 1, 10);
aux:= Trim(aux);
aux:= ReplaceChar(aux, #10, ' ');
aux:= ReplaceChar(aux, #13, ' ');
aux:= Trim(aux);
Result:=aux;
end;
end;
function TLamwSmartDesigner.GetVerAsString(aVers: integer): string;
begin
Result:= '';
case aVers of
34: Result:= 'android-UpsideDownCake';
end;
end;
function TLamwSmartDesigner.GetAndroidPluginVersionAsBigNumber(androidPluginVersionAsString: string): integer;
var
auxStr: string;
lenAuxStr: integer;
begin
auxStr:= StringReplace(androidPluginVersionAsString,'.', '', [rfReplaceAll]); //8.1.1
lenAuxStr:= Length(auxStr);
if lenAuxStr < 3 then auxStr:= auxStr + '0'; //8.4 -> 840
Result:= StrToInt(Trim(auxStr)); //811
end;
function TLamwSmartDesigner.GetGradleVersionAsBigNumber(gradleVersionAsString: string): integer;
var
auxStr: string;
lenAuxStr: integer;
begin
auxStr:= StringReplace(gradleVersionAsString,'.', '', [rfReplaceAll]); //6.6.1
lenAuxStr:= Length(auxStr);
if lenAuxStr < 3 then auxStr:= auxStr + '0'; //6.8 -> 680
Result:= StrToInt(Trim(auxStr)); //661
end;
{
//https://developer.android.com/studio/releases/gradle-plugin?hl=pt-br
Android
plug-in
8.2.0 <--> Android Gradle plugin requiresJava 21 //Gradle versão 8.5
8.1.4 <--> Android Gradle plugin requiresJava 17 //Gradle versão 8.4
8.0.2 <--> Android Gradle plugin requires Java 17. //Gradle versão 8.3
8.0.0 <--> Android Gradle plugin requires Java 17. //Gradle versão 8.3
7.4.2 <--> Android Gradle plugin requires Java 11 //Gradle versão 8.1.1
7.3.1 <--> Gradle versão 8.1.1 //https://docs.gradle.org/8.1.1/userguide/compatibility.html
7.2.2 <--> Gradle versão 7.6.3
7.1.3 <--> Gradle versão 7.6.3 //https://docs.gradle.org/7.6.3/userguide/compatibility.html
7.0.4 <--> Gradle versão 7.6.2 //7.0, 7.1, 7.2, 7.3 and 7.4
4.2.2 <--> Gradle versão 6.9.4
4.1.3 <--> Gradle versão 6.6.1 //3.4, 3.5, 3.6 and 4.0
}
(*About Android Studio "Hedgehog")
JDK 17
Nível da API 34
Versão mínima do "Android Plugin" 8.1.1 (requiresJava 17)
*)
//https://docs.gradle.org/8.4/userguide/compatibility.html#java
function TLamwSmartDesigner.GetAndroidPluginVersion(gradleVersion: string; mainJavaVersion: string): string;
var
strGV, auxGrVer: string;
intGV: integer;
bigNumber: integer;
begin
bigNumber:= GetGradleVersionAsBigNumber(gradleVersion);
auxGrVer:= gradleVersion;
strGV:= SplitStr(auxGrVer, '.');
intGV:= StrToInt(strGV);
if intGV = 8 then //JDK 11 - need Gradle version >= 6.7.1 -- targetApi 33
begin //JDK 17 - need Gradle version >= 8.2 -- targetApi 34
if mainJavaVersion = '11' then //targetApi 33
Result:= '7.4.2' //JDK 11
else
Result:= '8.2.0'; //targetApi 34
end;
if intGV = 7 then //JDK 11
begin
Result:= '7.2.2'; //Tested Gradle 7.6.3
end;
if intGV = 6 then //JDK 1.8 need Gradle version <= 6.7 .... and JDK 11 >= 6.7.1
begin
if bigNumber >= 671 then //JDK 11 //Tested Gradle 6.7.1
begin
Result:= '4.2.2';
end
else //JDK 1.8
begin
Result:= '4.1.3'
end;
end;
if intGV < 6 then //JDK 1.8
begin
Result:= '3.4.1';
end;
end;
procedure TLamwSmartDesigner.TryProduceJavaVersion(pathToJDKRelease: string); //
var
list: TStringList;
i, p, len: integer;
version, aux, mainVersion: string;
begin
list:= TStringList.Create;
//list.LoadFromFile('C:\Program Files\Eclipse Adoptium\jdk-11.0.21.9-hotspot\release');
//list.LoadFromFile('C:\Program Files\Java\jdk1.8.0_151\release');
if FileExists(pathToJDKRelease) then
begin
list.LoadFromFile(pathToJDKRelease);
aux:='';
i:= 0;
while (aux = '') and (i < list.Count) do
begin
p:= Pos('JAVA_VERSION=', list.Strings[i]);
if p > 0 then
begin
aux:= list.Strings[i];
i:= list.Count; //exit while
end;
i:= i + 1;
end;
if p > 0 then
begin
len:= Length('JAVA_VERSION=');
version:= Trim(Copy(aux, p+len, 15));
aux:= TrimChar(version, '"');
FJavaBigVersion:= aux; //11.0.21 or 1.8.0_151
mainVersion:= SplitStr(aux, '.'); //main number: 11 or 17 or 21 or 1 (ex.: 1.8)
FJavaMainVersion:=Trim(mainVersion);
end;
end;
list.Free;
end;
procedure TLamwSmartDesigner.DoBuildGradle(minSdkApi: string; targetApi: string);
var
strList, includeList: TStringList;
directive, buildSystem, listInstructionChip: string;
aAppCompatLib: TAppCompatLib;
aSupportLib: TSupportLib;
androidPluginVersion, targetBuildFileName: string;
isAppCompatTheme, isGradleBuildSystem, isUniversalApk, isSignatureFound: boolean;
versionCode, versionName: string;
gradleVersionBigNumber: integer;
begin
if FGradleVersion = '' then
begin
if FPathToGradle <> '' then
FGradleVersion:= GetGradleVersion(FPathToGradle);
end;
gradleVersionBigNumber:= GetGradleVersionAsBigNumber(FGradleVersion);
TryProduceJavaVersion(FPathToJavaJDK + 'release'); //FPathToJavaJDK Included Path Delimiter!
androidPluginVersion:= GetAndroidPluginVersion(FGradleVersion, FJavaMainVersion); //'7.1.3';
isAppCompatTheme:= False;
if Pos('AppCompat', FAndroidTheme) > 0 then isAppCompatTheme:= True;
buildSystem:= LazarusIDE.ActiveProject.CustomData['BuildSystem'];
isGradleBuildSystem:= False;
if Pos('Gradle', buildSystem) > 0 then isGradleBuildSystem:= True;
targetBuildFileName := ExtractFileName(LazarusIDE.ActiveProject.LazCompilerOptions.CreateTargetFilename);
includeList:= TStringList.Create;
includeList.Delimiter:= ',';
includeList.StrictDelimiter:= True;
includeList.Sorted:= True;
includeList.Duplicates:= dupIgnore;
if FileExists(FPathToAndroidProject + 'libs\armeabi\' + TargetBuildFileName ) then
begin
includeList.Add('''armeabi''');
end;
if FileExists(FPathToAndroidProject + 'libs\armeabi-v7a\' + TargetBuildFileName ) then
begin
includeList.Add('''armeabi-v7a''');
end;
if FileExists(FPathToAndroidProject + 'libs\arm64-v8a\' + TargetBuildFileName ) then
begin
includeList.Add('''arm64-v8a''');
end;
if FileExists(FPathToAndroidProject + 'libs\x86_64\' + TargetBuildFileName ) then
begin
includeList.Add('''x86_64''');
end;
if FileExists(FPathToAndroidProject + 'libs\x86\' + TargetBuildFileName ) then
begin
includeList.Add('''x86''');
end;
if FileExists(FPathToAndroidProject + 'libs\mips\' + TargetBuildFileName ) then
begin
includeList.Add('''mips''');
end;
listInstructionChip:= includeList.DelimitedText;
isUniversalApk:= False;
if includeList.Count > 1 then
isUniversalApk:= True;
versionCode := GetVesionCodeFromBuilGradle();
versionName := GetVesionNameFromBuilGradle();
strList:= TStringList.Create;
isSignatureFound := false;
if fileExists(FPathToAndroidProject+'gradle.properties') then
begin
strList.LoadFromFile(FPathToAndroidProject+'gradle.properties');
if Pos('RELEASE_STORE_FILE', strList.Text) > 0 then
isSignatureFound := True;
end;
//try update build.gradle
strList.Clear;
strList.Add('buildscript {');
if FisKotlinSupported then
strList.Add(' ext.kotlin_version = ''2.0.0''');
strList.Add(' repositories {');
strList.Add(' mavenCentral()');
strList.Add(' google()');
strList.Add(' }');
strList.Add(' dependencies {');
strList.Add(' classpath ''com.android.tools.build:gradle:'+androidPluginVersion+''' '); //7.1.3
if FisKotlinSupported then
strList.Add(' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"');
strList.Add(' }');
strList.Add('}');
strList.Add('allprojects {');
strList.Add(' repositories {');
strList.Add(' jcenter()');
strList.Add(' google()');
strList.Add(' mavenCentral()');
strList.Add(' maven {url ''https://jitpack.io''}');
strList.Add(' }');
strList.Add('}');
strList.Add('apply plugin: ''com.android.application''');
if FisKotlinSupported then
strList.Add('apply plugin: ''org.jetbrains.kotlin.android''');
strList.Add('android {');
if FJavaMainVersion <> '' then
begin
if StrToInt(FJavaMainVersion) >= 17 then
if GetAndroidPluginVersionAsBigNumber(androidPluginVersion) >= 820 then
strList.Add(' namespace "'+FPackageName+'"'); //org.lamw.applamwproject1
end;
strList.Add(' splits {');
strList.Add(' abi {');
strList.Add(' enable true');
strList.Add(' reset()');
strList.Add(' include '+listInstructionChip);
if not isUniversalApk then
strList.Add(' universalApk false')
else
strList.Add(' universalApk true');
strList.Add(' }');
strList.Add(' }');
strList.Add(' compileOptions {');
if FisKotlinSupported then
begin
strList.Add(' sourceCompatibility = JavaVersion.VERSION_17');
strList.Add(' targetCompatibility = JavaVersion.VERSION_17');
end
else
begin
strList.Add(' sourceCompatibility 1.8');
strList.Add(' targetCompatibility 1.8');
end;
strList.Add(' }');
strList.Add(' compileSdk '+targetApi+'');
strList.Add(' defaultConfig {');
strList.Add(' minSdkVersion '+minSdkApi+'');
strList.Add(' targetSdkVersion '+targetApi+'');
strList.Add(' versionCode '+versionCode+'');
strList.Add(' versionName '+versionName+''); // " -> already included!
strList.Add(' multiDexEnabled true');
strList.Add(' ndk { debugSymbolLevel ''FULL'' }');
strList.Add(' }');
if isSignatureFound then
begin
strList.Add(' signingConfigs {');
strList.Add(' release {');
strList.Add(' storeFile file(RELEASE_STORE_FILE)');
strList.Add(' storePassword RELEASE_STORE_PASSWORD');
strList.Add(' keyAlias RELEASE_KEY_ALIAS');
strList.Add(' keyPassword RELEASE_KEY_PASSWORD');
strList.Add(' }');
strList.Add(' }');
strList.Add(' buildTypes {');
strList.Add(' release {');
strList.Add(' signingConfig signingConfigs.release');
strList.Add(' }');
strList.Add(' }');
end;
strList.Add(' sourceSets {');
strList.Add(' main {');
strList.Add(' manifest.srcFile ''AndroidManifest.xml''');
strList.Add(' java.srcDirs = [''src'']');
strList.Add(' resources.srcDirs = [''src'']');
strList.Add(' aidl.srcDirs = [''src'']');
strList.Add(' renderscript.srcDirs = [''src'']');
strList.Add(' res.srcDirs = [''res'']');
strList.Add(' assets.srcDirs = [''assets'']');
strList.Add(' jniLibs.srcDirs = [''libs'']');
strList.Add(' }');
strList.Add(' debug.setRoot(''build-types/debug'')');
strList.Add(' release.setRoot(''build-types/release'')');
strList.Add(' }');
strList.Add(' buildTypes {');
strList.Add(' debug {');
strList.Add(' minifyEnabled false');
strList.Add(' debuggable true');
strList.Add(' jniDebuggable true');
strList.Add(' }');
strList.Add(' release {');
strList.Add(' minifyEnabled false');
strList.Add(' debuggable false');
strList.Add(' jniDebuggable false');
strList.Add(' }');
strList.Add(' }');
if gradleVersionBigNumber >= 820 then
begin
strList.Add(' buildFeatures {');
strList.Add(' aidl true');
strList.Add(' }');
strList.Add(' lint {');
strList.Add(' abortOnError false');
strList.Add(' }');
end
else
begin
strList.Add(' lintOptions {');
strList.Add(' abortOnError false');
strList.Add(' }');
end;
if FisKotlinSupported then
begin
strList.Add(' kotlinOptions {');
strList.Add(' jvmTarget = ''17''');
strList.Add(' }');
end;
strList.Add('}');
strList.Add('dependencies {');
strList.Add(' implementation fileTree(include: [''*.jar''], dir: ''libs'')');
directive:= 'implementation';
if isAppCompatTheme then