Add autoSubmit crashReporter option
authorKevin Sawicki <kevinsawicki@gmail.com>
Mon, 28 Nov 2016 23:06:03 +0000 (15:06 -0800)
committerKevin Sawicki <kevinsawicki@gmail.com>
Mon, 28 Nov 2016 23:08:28 +0000 (15:08 -0800)
docs/tutorial/planned-breaking-changes.md

index ed3606f..4e60494 100644 (file)
@@ -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