Add autoSubmit crashReporter option
This commit is contained in:
parent
0c73140b07
commit
0b9a2f6be6
1 changed files with 17 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue