@@ -441,10 +441,10 @@ public boolean didCrashOnPreviousExecution() {
441
441
* @return In order of priority:
442
442
* <ul>
443
443
* <li>If {@link #setCrashlyticsCollectionEnabled(boolean)} is called with a value, use it.
444
- * <li>If the <b>firebase_crashlytics_collection_enabled</b> key is in your app’s
445
- * AndroidManifest.xml, use it.
444
+ * <li>If the <b>firebase_crashlytics_collection_enabled</b> key is in your app’s {@code
445
+ * AndroidManifest.xml} , use it.
446
446
* <li>Otherwise, use the default {@link FirebaseApp#isDataCollectionDefaultEnabled()} in
447
- * FirebaseApp.
447
+ * {@link FirebaseApp} .
448
448
* </ul>
449
449
*/
450
450
public boolean isCrashlyticsCollectionEnabled () {
@@ -454,8 +454,8 @@ public boolean isCrashlyticsCollectionEnabled() {
454
454
/**
455
455
* Enables or disables the automatic data collection configuration for Crashlytics.
456
456
*
457
- * <p>If this is set, it overrides any automatic data collection settings configured in the
458
- * AndroidManifest.xml as well as any Firebase-wide settings.
457
+ * <p>If this is set, it overrides any automatic data collection settings configured in the {@code
458
+ * AndroidManifest.xml} as well as any Firebase-wide settings.
459
459
*
460
460
* <p>If automatic data collection is disabled for Crashlytics, crash reports are stored on the
461
461
* device. To check for reports, use the {@link #checkForUnsentReports()} method. Use {@link
@@ -466,7 +466,7 @@ public boolean isCrashlyticsCollectionEnabled() {
466
466
* @param enabled whether to enable automatic data collection. When set to {@code false}, the new
467
467
* value does not apply until the next run of the app. To disable data collection by default
468
468
* for all app runs, add the {@code firebase_crashlytics_collection_enabled} flag to your
469
- * app's AndroidManifest.xml.
469
+ * app's {@code AndroidManifest.xml} .
470
470
*/
471
471
public void setCrashlyticsCollectionEnabled (boolean enabled ) {
472
472
core .setCrashlyticsCollectionEnabled (enabled );
@@ -475,9 +475,9 @@ public void setCrashlyticsCollectionEnabled(boolean enabled) {
475
475
/**
476
476
* Enables or disables the automatic data collection configuration for Crashlytics.
477
477
*
478
- * <p>If this is set, it overrides any automatic data collection settings configured in the
479
- * AndroidManifest.xml as well as any Firebase-wide settings. If set to {@code null}, the override
480
- * is cleared.
478
+ * <p>If this is set, it overrides any automatic data collection settings configured in the {@code
479
+ * AndroidManifest.xml} as well as any Firebase-wide settings. If set to {@code null}, the
480
+ * override is cleared.
481
481
*
482
482
* <p>If automatic data collection is disabled for Crashlytics, crash reports are stored on the
483
483
* device. To check for reports, use the {@link #checkForUnsentReports()} method. Use {@link
@@ -488,7 +488,7 @@ public void setCrashlyticsCollectionEnabled(boolean enabled) {
488
488
* @param enabled whether to enable or disable automatic data collection. When set to {@code
489
489
* false}, the new value does not apply until the next run of the app. When set to {@code
490
490
* null}, the override is cleared and automatic data collection settings are determined by the
491
- * configuration in your AndroidManifest.xml or other Firebase-wide settings.
491
+ * configuration in your {@code AndroidManifest.xml} or other Firebase-wide settings.
492
492
*/
493
493
public void setCrashlyticsCollectionEnabled (@ Nullable Boolean enabled ) {
494
494
core .setCrashlyticsCollectionEnabled (enabled );
0 commit comments