| OLD | NEW |
| (Empty) | |
| 1 <h1>Manifest - Action Handlers</h1> |
| 2 |
| 3 <p> |
| 4 The <code>action_handlers</code> manifest property declares which user actions |
| 5 or intents that the application supports. An action is essentially an |
| 6 alternative launch point. |
| 7 </p> |
| 8 |
| 9 <p> |
| 10 This list contains any of the <code>ActionType</code> values; see the |
| 11 <code>actionData</code> entry inside of |
| 12 <a href="../app_runtime#event-onLaunched">app.runtime.onLaunched</a>. |
| 13 </p> |
| 14 |
| 15 <h2 id="manifest">Sample manifest.json</h2> |
| 16 <pre data-filename="manifest.json"> |
| 17 { |
| 18 "name": "My note {{platform}}", |
| 19 "action_handlers": ["new_note"], |
| 20 ... |
| 21 } |
| 22 </pre> |
| OLD | NEW |