in app/src/main/java/co/elastic/apm/opbeans/app/OpBeansApplication.kt [37:47]
override fun onCreate() {
super.onCreate()
INSTANCE = this
// Check out the docs for more details: https://www.elastic.co/guide/en/apm/agent/android/current/index.html
agent = ElasticApmAgent.builder(this)
.setServiceName("opbeans-android")
.setExportUrl("my_export_url")
.setExportAuthentication(Authentication.ApiKey("my_api_key"))
.build()
}