• /
  • Log in
  • Free account

Android agent configuration and feature flags

The Android agent provides configuration settings to change the default behavior of the agent. For an explanation of mobile custom data types, see Add custom data to mobile monitoring.

Change configuration settings

All settings, including the call to invoke the agent, are called in the onCreate method of the MainActivity class. To change settings, call the setting in one of two ways (if the setting supports it):

  • Change the setting on its own line for each specific condition:

    NewRelic.disableFeature(FeatureFlag.DefaultInteractions);
    NewRelic.enableFeature(FeatureFlag.CrashReporting);
    NewRelic.withApplicationToken(<NEW_RELIC_TOKEN>).start(this.getApplication());

    OR

  • Change the setting as part of the agent start call using the .with method:

    NewRelic.withApplicationToken(<NEW_RELIC_TOKEN>)
            .withDefaultInteractions(false)
            .withCrashReportingEnabled(true)
            .start(this.getApplication());

Analytics settings

Application settings

Crash and error reporting settings

Distributed tracing

Interaction settings

Networking settings

Logging settings

Data endpoint settings

Create issueEdit page
Copyright © 2022 New Relic Inc.