-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Build] Move manifest to .well-known/
The location of IWA manifest was changed from `/manifest.webmanifest` to `/.well-known/manifest.webmanifest` [1]. Reflect that change in our sample IWA. [1] More discussion: WICG/isolated-web-apps#24
- Loading branch information
1 parent
0eccceb
commit 335f07c
Showing
4 changed files
with
22 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
diagnostics-app/iwa/public/.well-known/manifest.webmanifest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"name": "Diagnostics App IWA", | ||
"id": "/", | ||
"scope": "/", | ||
"start_url": "/", | ||
"version": "0.1.0", | ||
"display": "standalone", | ||
"icons": [ | ||
{ | ||
"src": "/icon.png", | ||
"type": "image/png", | ||
"sizes": "512x512", | ||
"purpose": "any maskable" | ||
} | ||
], | ||
"permissions_policy": { | ||
"camera": ["self"], | ||
"microphone": ["self"], | ||
"fullscreen": ["self"] | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.