Security/Reviews/Gaia/bluetooth: Difference between revisions
Jump to navigation
Jump to search
Ptheriault (talk | contribs) |
Ptheriault (talk | contribs) |
||
Line 23: | Line 23: | ||
====Web Activity Usage ==== | ====Web Activity Usage ==== | ||
The bluetooth app accepts one web activity as described in its web app manifest: | |||
<code> | |||
"activities": { | |||
"share": { | |||
"filters": { | |||
"number": 1 | |||
}, | |||
"disposition": "inline", | |||
"returnValue": true, | |||
"href": "/transfer.html" | |||
} | |||
} | |||
</code> | |||
==== Notable Event Handlers ==== | ==== Notable Event Handlers ==== |
Revision as of 05:37, 5 March 2013
App Review Details
- App: Bluetooth
- Review Date: 5th March 2003
- Review Lead: Paul Theriault
Overview
The bluetooth app is a small app which is only used to facilitate transfer of files via bluetooth. It does not have an icon on the homescreen, rather it is triggered by an app launching a web activity.
Architecture
Components
The bluetooth app consists of one HTML page which is designed to accept web activity share requests.
Relevant Source Code
Permissions
Web Activity Handlers
Web Activity Usage
The bluetooth app accepts one web activity as described in its web app manifest:
"activities": {
"share": {
"filters": {
"number": 1
},
"disposition": "inline",
"returnValue": true,
"href": "/transfer.html"
}
}