[package_info] Register IntegrationTestPlugin in the example app. (#3478)

This change registers the IntegrationTestPlugin in the example app, so test results are correctly reported back to FTL.

The end-to-end firebase tests for package_info haven't passed in a while (nor have been reported as broken before), but after this change, they start passing again.
diff --git a/packages/package_info/CHANGELOG.md b/packages/package_info/CHANGELOG.md
index ebb95c1..f3f7734 100644
--- a/packages/package_info/CHANGELOG.md
+++ b/packages/package_info/CHANGELOG.md
@@ -1,3 +1,7 @@
+## 0.4.3+4
+
+* Ensure `IntegrationTestPlugin` is registered in `example` app, so Firebase Test Lab tests report test results correctly. [Issue](https://github.com/flutter/flutter/issues/74944).
+
 ## 0.4.3+3
 
 * Update Flutter SDK constraint.
diff --git a/packages/package_info/example/android/app/src/main/java/io/flutter/plugins/packageinfoexample/EmbedderV1Activity.java b/packages/package_info/example/android/app/src/main/java/io/flutter/plugins/packageinfoexample/EmbedderV1Activity.java
index a32c504..eb669bf 100644
--- a/packages/package_info/example/android/app/src/main/java/io/flutter/plugins/packageinfoexample/EmbedderV1Activity.java
+++ b/packages/package_info/example/android/app/src/main/java/io/flutter/plugins/packageinfoexample/EmbedderV1Activity.java
@@ -5,6 +5,7 @@
 package io.flutter.plugins.packageinfoexample;
 
 import android.os.Bundle;
+import dev.flutter.plugins.integration_test.IntegrationTestPlugin;
 import io.flutter.app.FlutterActivity;
 import io.flutter.plugins.packageinfo.PackageInfoPlugin;
 
@@ -14,5 +15,7 @@
     super.onCreate(savedInstanceState);
     PackageInfoPlugin.registerWith(
         registrarFor("io.flutter.plugins.packageinfo.PackageInfoPlugin"));
+    IntegrationTestPlugin.registerWith(
+        registrarFor("dev.flutter.plugins.integration_test.IntegrationTestPlugin"));
   }
 }
diff --git a/packages/package_info/pubspec.yaml b/packages/package_info/pubspec.yaml
index 884a716..25e45a6 100644
--- a/packages/package_info/pubspec.yaml
+++ b/packages/package_info/pubspec.yaml
@@ -5,7 +5,7 @@
 # 0.4.y+z is compatible with 1.0.0, if you land a breaking change bump
 # the version to 2.0.0.
 # See more details: https://github.com/flutter/flutter/wiki/Package-migration-to-1.0.0
-version: 0.4.3+3
+version: 0.4.3+4
 
 flutter:
   plugin: