Add autoSubmit crashReporter option

This commit is contained in:
Kevin Sawicki 2016-11-28 15:06:03 -08:00
Родитель 0c73140b07
Коммит 0b9a2f6be6
1 изменённых файлов: 17 добавлений и 0 удалений

Просмотреть файл

@ -40,6 +40,23 @@ clipboard.writeHtml()
clipboard.writeHTML()
```
## `crashReporter`
```js
// Deprecated
crashReporter.start({
companyName: 'Crashly',
submitURL: 'https://crash.server.com',
autoSubmit: true
})
// Replace with
crashReporter.start({
companyName: 'Crashly',
submitURL: 'https://crash.server.com',
uploadToServer: true
})
```
## `nativeImage`
```js