AndroidManifest.xml
TLDR
This file is an Android manifest file used for configuring the startup behavior of an Android application. It includes a provider element that specifies an InitializationProvider for the application.
Classes
No classes in this file.
Methods
No methods in this file.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<application>
<provider
android:name="androidx.startup.InitializationProvider"
android:authorities="${applicationId}.androidx-startup"
android:exported="false"
tools:node="merge">
<meta-data
android:name="leakcanary.PlumberStartupInitializer"
android:value="androidx.startup"/>
</provider>
</application>
</manifest>