AndroidManifest.xml
TLDR
This file is the AndroidManifest.xml file for the object-watcher module in the Demo Projects project. It includes a provider element for installing the MainProcessAppWatcherInstaller.
Classes
No classes in this file.
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android">
<application>
<provider
android:name="leakcanary.internal.MainProcessAppWatcherInstaller"
android:authorities="${applicationId}.leakcanary-installer"
android:enabled="@bool/leak_canary_watcher_auto_install"
android:exported="false"/>
</application>
</manifest>