AutoAppPermissionsFragment: Initialize mIsFirstLoad

Initialize the mIsFirstLoad boolean so that we log the required metrics
when the fragment is loaded and viewed for the first time.

Bug 202241220

Test: ats-tradefed run commandAndExit ats -m GtsPermissionControllerHostTestCases -t android.permissioncontroller.gts.PermissionControllerHostTest#testViewAppPermissionsFragment

Change-Id: I963d206c0bcfb79a8f3d720c124936c55f3901c2
diff --git a/PermissionController/src/com/android/permissioncontroller/permission/ui/auto/AutoAppPermissionsFragment.java b/PermissionController/src/com/android/permissioncontroller/permission/ui/auto/AutoAppPermissionsFragment.java
index 659ed3d..8f84a1a 100644
--- a/PermissionController/src/com/android/permissioncontroller/permission/ui/auto/AutoAppPermissionsFragment.java
+++ b/PermissionController/src/com/android/permissioncontroller/permission/ui/auto/AutoAppPermissionsFragment.java
@@ -109,6 +109,7 @@
         super.onCreate(savedInstanceState);
         setLoading(true);
 
+        mIsFirstLoad = true;
         mPackageName = getArguments().getString(Intent.EXTRA_PACKAGE_NAME);
         mUser = getArguments().getParcelable(Intent.EXTRA_USER);
         mIsSystemPermsScreen = getArguments().getBoolean(IS_SYSTEM_PERMS_SCREEN, true);