I am trying to disable automatic screen reporting for Google Firebase Analytics. In the Firebase Blog post, it states
On Android, set google_analytics_automatic_screen_reporting_enabled to “false” in your manifest.
How should I change my AndroidManifest.xml
to follow the above instructions?
I modified the manifest
tag like this, but I'm not sure if this is correct.
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
google_analytics_automatic_screen_reporting_enabled="false"
package="com.myapp.name"
>