forked from jmpessoa/lazandroidmodulewizard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlamwsettings.pas
408 lines (345 loc) · 12 KB
/
lamwsettings.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
unit LamwSettings;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, ProjectIntf, Forms, IniFiles;
type
TSupportLib = record
MinAPI:integer;
Name:string;
end;
TAppCompatLib = record
MinAPI:integer;
Name:string;
end;
TSupportLibs = array[0..1] of TSupportLib;
TAppCompatLibs = array[0..2] of TAppCompatLib;
{ TLamwGlobalSettings }
TLamwGlobalSettings = class
public const
Version = '0.8.6.4';
private const
IniFileName = 'LAMW.ini';
IniFileSection = 'NewProject';
private
FIniFile: TIniFile;
FQueryPaths: Boolean; // prompt dialog if path is empty
FPathToJavaTemplates: string;
FPathToSmartDesigner: string; //C:\laz4android18FPC304\components\androidmodulewizard\android_wizard\smartdesigner
FPathToAndroidNDK: string;
FPathToAndroidSDK: string;
FPathToJavaJDK: string;
FPathToAntBin: string;
FPathToGradle: string;
FInstructionSet: string;
FPrebuildOSYS: string;
FNDK: string;
FNDKRelease: string;
//function GetDefaultBuildSystem: string;
procedure ReloadIni;
function ReadIniString(const Key: string; const Def: string = ''): string; inline;
//procedure SetDefaultBuildSystem(AValue: string);
procedure SetGradleVersion(AValue: string);
procedure WriteIniString(const Key, Value: string);
function GetPath(var APath: string; const IniIdent, QueryPrompt: string): string;
function GetPathToAndroidNDK: string;
function GetPathToAndroidSDK: string;
function GetPathToJavaJDK: string;
function GetPathToJavaTemplates: string;
function GetPathToAntBin: string;
function GetPathToGradle: string;
function GetCanUpdateJavaTemplate: Boolean;
function GetInstructionSet: string;
function GetPrebuildOSYS: string;
function GetKeepManifestTargetApi: boolean;
function DoPathToSmartDesigner(): string;
function GetPathToSmartDesigner(): string;
public
constructor Create;
destructor Destroy; override;
procedure ReloadPaths; // loading paths from INI
function GetNDK: string;
function GetNDKRelease: string;
// if QueryPaths=True then retreiving paths through PathToXXX properties
// will invoke a path prompt dialog when FPathToXXX is empty
property QueryPaths: Boolean read FQueryPaths write FQueryPaths;
// volatile :: <> 'f'
property CanUpdateJavaTemplate: Boolean read GetCanUpdateJavaTemplate;
// all paths have trailing path delim
property PathToJavaTemplates: string read GetPathToJavaTemplates;
property PathToAndroidNDK: string read GetPathToAndroidNDK;
property PathToAndroidSDK: string read GetPathToAndroidSDK;
property PathToJavaJDK: string read GetPathToJavaJDK;
property PathToAntBin: string read GetPathToAntBin;
property PathToGradle: string read GetPathToGradle;
property InstructionSet: string read GetInstructionSet;
property PrebuildOSYS: string read GetPrebuildOSYS;
// volatile :: = 't'
property KeepManifestTargetApi: boolean read GetKeepManifestTargetApi;
property PathToSmartDesigner: string read GetPathToSmartDesigner;
end;
const
//ref. https://androidx.tech/artifacts/appcompat/appcompat/1.6.1
//androidx.appcompat:appcompat than 1.3.1 is available: 1.6.1
//ref https://github.com/material-components/material-components-android/releases
//com.google.android.material:material than 1.2.1 is available: 1.11.0
//ref https://android-developers.googleblog.com/2023/10/androidx-minsdkversion-19.html
AppCompatLibs: TAppCompatLibs = (
(MinAPI:28;Name:'androidx.appcompat:appcompat:1.6.1'), //1.3.1
(MinAPI:28;Name:'androidx.multidex:multidex:2.0.1'),
(MinAPI:28;Name:'com.google.android.material:material:1.11.0') //1.2.1
);
SupportLibs: TSupportLibs = (
(MinAPI:28;Name:'androidx.core:core:1.9.0'), //1.2.0
(MinAPI:28;Name:'androidx.multidex:multidex:2.0.1')
);
var
LamwGlobalSettings: TLamwGlobalSettings;
implementation
uses PackageIntf, LazIDEIntf, StdCtrls, EditBtn, Controls, ButtonPanel;
function QueryPath(APrompt: string; out Path: string;
ACaption: string = 'Android Wizard [LamwSettings]: Path Missing!'): Boolean;
var
f: TForm;
l: TLabel;
de: TDirectoryEdit;
begin
Result := False;
if LazarusIDE.ActiveProject.CustomData.Values['LAMW']= '' then Exit;
f := TForm.Create(nil);
with f do
try
Caption := ACaption;
Position := poScreenCenter;
AutoSize := True;
Constraints.MinWidth := 440;
BorderStyle := bsSingle;
BorderIcons := [biSystemMenu];
l := TLabel.Create(f);
with l do
begin
Parent := f;
Caption := APrompt;
AnchorSideLeft.Control := f;
AnchorSideTop.Control := f;
BorderSpacing.Around := 8;
end;
de := TDirectoryEdit.Create(f);
with de do
begin
Parent := f;
if Pos(':', APrompt) > 0 then
DialogTitle := Copy(APrompt, 1, Pos(':', APrompt) - 1)
else
DialogTitle := APrompt;
AnchorSideLeft.Control := f;
AnchorSideTop.Control := l;
AnchorSideTop.Side := asrBottom;
AnchorSideRight.Control := f;
AnchorSideRight.Side := asrRight;
Anchors := [akTop, akLeft, akRight];
BorderSpacing.Around := 8;
end;
with TButtonPanel.Create(f) do
begin
Parent := f;
ShowButtons := [pbOK, pbCancel];
AnchorSideTop.Control := de;
AnchorSideTop.Side := asrBottom;
Anchors := [akTop, akLeft, akRight];
ShowBevel := False;
end;
if ShowModal = mrOK then
begin
Path := de.Directory;
Result := True;
end;
finally
Free;
end;
end;
{ TLamwGlobalSettings }
function TLamwGlobalSettings.GetPathToJavaTemplates: string;
begin
Result := GetPath(FPathToJavaTemplates, 'PathToJavaTemplates',
'Path to Java templates: [ex. ..\LazAndroidWizard\android_wizard\smartdesigner\java]');
end;
function TLamwGlobalSettings.GetPath(var APath: string; const IniIdent, QueryPrompt: string): string;
begin
Result:= '';
if APath = '' then ReloadPaths;
if (APath = '') and FQueryPaths then
begin
QueryPath(QueryPrompt, APath);
end;
if APath <> '' then
begin
Result := IncludeTrailingPathDelimiter(APath);
WriteIniString(IniIdent, APath);
end
end;
function TLamwGlobalSettings.GetPathToSmartDesigner(): string;
begin
Result:= IncludeTrailingPathDelimiter(FPathToSmartDesigner);
end;
function TLamwGlobalSettings.DoPathToSmartDesigner(): string;
var
Pkg: TIDEPackage;
begin
Result:= '';
if FPathToSmartDesigner = '' then
begin
Pkg:=PackageEditingInterface.FindPackageWithName('lazandroidwizardpack');
if Pkg<>nil then
begin
FPathToSmartDesigner:= ExtractFilePath(Pkg.Filename);
FPathToSmartDesigner:= FPathToSmartDesigner + 'smartdesigner';
Result := FPathToSmartDesigner; //C:\laz4android18FPC304\components\androidmodulewizard\android_wizard\smartdesigner
end;
end
else Result:= FPathToSmartDesigner;
end;
procedure TLamwGlobalSettings.ReloadIni;
var
flag: boolean;
begin
flag:= False;
if not FileExists(IncludeTrailingPathDelimiter(LazarusIDE.GetPrimaryConfigPath) + 'LAMW.ini') then
begin
if FileExists(IncludeTrailingPathDelimiter(LazarusIDE.GetPrimaryConfigPath) + 'JNIAndroidProject.ini') then
begin
CopyFile(IncludeTrailingPathDelimiter(LazarusIDE.GetPrimaryConfigPath) + 'JNIAndroidProject.ini',
IncludeTrailingPathDelimiter(LazarusIDE.GetPrimaryConfigPath) + 'LAMW.ini');
//DeleteFile(IncludeTrailingPathDelimiter(LazarusIDE.GetPrimaryConfigPath) + 'JNIAndroidProject.ini');
//C:\laz4android18FPC304\components\androidmodulewizard\android_wizard\smartdesigner
FPathToSmartDesigner:= DoPathToSmartDesigner();
//C:\laz4android18FPC304\components\androidmodulewizard\android_wizard\smartdesigner\java
FPathToJavaTemplates:= FPathToSmartDesigner + pathDelim +'java';
flag:= True;
end;
end;
FIniFile.Free;
FIniFile:= TIniFile.Create(IncludeTrailingPathDelimiter(LazarusIDE.GetPrimaryConfigPath) + IniFileName);
FIniFile.CacheUpdates:= False;
if flag then
begin
WriteIniString('PathToSmartDesigner', FPathToSmartDesigner);
WriteIniString('PathToJavaTemplates', FPathToJavaTemplates);
end;
end;
{
function TLamwGlobalSettings.GetDefaultBuildSystem: string;
begin
Result := ReadIniString('DefaultBuildSystem', 'Ant');
end;
}
function TLamwGlobalSettings.GetPathToGradle: string;
begin
Result := GetPath(FPathToGradle, 'PathToGradle',
'Path to Gradle: [ex. C:\lamw\gradle-7.6.3]');
end;
function TLamwGlobalSettings.ReadIniString(const Key: string;
const Def: string): string;
begin
if FIniFile = nil then ReloadIni;
Result := FIniFile.ReadString(IniFileSection, Key, Def);
end;
procedure TLamwGlobalSettings.SetGradleVersion(AValue: string);
begin
WriteIniString('GradleVersion', AValue);
end;
procedure TLamwGlobalSettings.WriteIniString(const Key, Value: string);
begin
if FIniFile <> nil then
FIniFile.WriteString(IniFileSection, Key, Value);
end;
function TLamwGlobalSettings.GetCanUpdateJavaTemplate: Boolean;
var
str: string;
begin
Result:= True;
ReloadIni;
str := ReadIniString('CanUpdateJavaTemplate');
if str = 'f' then Result:= False;
end;
function TLamwGlobalSettings.GetPathToAndroidNDK: string;
begin
Result := GetPath(FPathToAndroidNDK, 'PathToAndroidNDK',
'Path to Android NDK: [ex. C:\lamw\ndk]');
end;
function TLamwGlobalSettings.GetPathToAndroidSDK: string;
begin
Result := GetPath(FPathToAndroidSDK, 'PathToAndroidSDK',
'Path to Android SDK: [ex. C:\lamw\sdk]');
end;
function TLamwGlobalSettings.GetPathToAntBin: string;
begin
Result := GetPath(FPathToAntBin, 'PathToAntBin',
'Path to Ant bin: [ex. C:\lamw\ant\bin]');
end;
function TLamwGlobalSettings.GetPathToJavaJDK: string;
begin
Result := GetPath(FPathToJavaJDK, 'PathToJavaJDK',
'Path to Java JDK: [ex. C:\Program Files (x86)\Java\jdk1.8.xx]');
end;
function TLamwGlobalSettings.GetInstructionSet: string;
begin
Self.ReloadPaths;
FInstructionSet:= ReadIniString('InstructionSet');
Result:= FInstructionSet;
end;
function TLamwGlobalSettings.GetPrebuildOSYS: string;
begin
FPrebuildOSYS:= ReadIniString('PrebuildOSYS');
Result:= FPrebuildOSYS;
end;
function TLamwGlobalSettings.GetKeepManifestTargetApi: boolean;
var
keepManifestApi: string;
begin
Result:= False;
ReloadIni;
keepManifestApi:= ReadIniString('KeepManifestTargetApi');
if keepManifestApi = 't' then Result:= True;
end;
constructor TLamwGlobalSettings.Create;
begin
FQueryPaths := True;
end;
destructor TLamwGlobalSettings.Destroy;
begin
FIniFile.Free;
inherited Destroy;
end;
{
NDK=5
PrebuildOSYS=
}
procedure TLamwGlobalSettings.ReloadPaths;
begin
ReloadIni;
FPathToJavaTemplates := ReadIniString('PathToJavaTemplates');
FPathToAndroidSDK := ReadIniString('PathToAndroidSDK');
FPathToJavaJDK := ReadIniString('PathToJavaJDK');
FPathToAndroidNDK := ReadIniString('PathToAndroidNDK');
FPathToAntBin := ReadIniString('PathToAntBin');
FPathToGradle := ReadIniString('PathToGradle');
FPathToSmartDesigner := ReadIniString('PathToSmartDesigner');
FNDK := ReadIniString('NDK');
FPrebuildOSYS := ReadIniString('PrebuildOSYS');
FInstructionSet := ReadIniString('InstructionSet');
FNDKRelease := ReadIniString('NDKRelease');
end;
function TLamwGlobalSettings.GetNDK: string;
begin
Result := ReadIniString('NDK'); {index 3/r10e , index 4/11x, index 5/12...18, index 6/19....}
end;
function TLamwGlobalSettings.GetNDKRelease: string;
begin
Result := ReadIniString('NDKRelease'); //18.1.506304
end;
initialization
LamwGlobalSettings := TLamwGlobalSettings.Create;
finalization
LamwGlobalSettings.Free;
end.