AndroidManifest.xml
TLDR
This file is an AndroidManifest.xml file that defines the application's provider for the LeakCanary Plumber feature.
Classes
N/A
Methods
N/A
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<provider
android:name="leakcanary.internal.PlumberInstaller"
android:authorities="${applicationId}.plumber-installer"
android:enabled="@bool/leak_canary_plumber_auto_install"
android:exported="false" />
</application>
</manifest>