Skip to content

Commit

Permalink
Add application code
Browse files Browse the repository at this point in the history
  • Loading branch information
jonasblunck authored Nov 7, 2024
1 parent ecfb63b commit bf59cea
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
9 changes: 9 additions & 0 deletions CustomerApp/CustomerListExtension.al
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

pageextension 50000 CustomerListExt extends "Customer List"
{
trigger OnOpenPage();
begin
Message('App published: Hello AL-Go!');
end;
}

32 changes: 32 additions & 0 deletions CustomerApp/app.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"id": "921879f8-cca3-4357-a47d-580b2f381417",
"name": "MyApp",
"publisher": "Jonas",
"version": "1.0.0.0",
"brief": "",
"description": "",
"privacyStatement": "",
"EULA": "",
"help": "",
"url": "",
"logo": "",
"dependencies": [],
"screenshots": [],
"platform": "1.0.0.0",
"application": "22.0.0.0",
"idRanges": [
{
"from": 50000,
"to": 51000
}
],
"features": [
"NoImplicitWith"
],
"resourceExposurePolicy": {
"allowDebugging": true,
"allowDownloadingSource": false,
"includeSourceInSymbolFile": false
}
}

0 comments on commit bf59cea

Please sign in to comment.