More CTS for dumpsys procstats

Test: cts-tradefed run cts --skip-device-info --skip-preconditions --skip-system-status-check com.android.compatibility.common.tradefed.targetprep.NetworkConnectivityChecker -a armeabi-v7a -l INFO -m CtsDumpsysHostTestCases -t android.dumpsys.cts.ProcessStatsDumpsysTest

Bug: 34228624
Change-Id: I8233751fe0afec76b86457c3d1062a19b055f123
diff --git a/hostsidetests/dumpsys/apps/ProcStatsHelperApp/AndroidManifest.xml b/hostsidetests/dumpsys/apps/ProcStatsHelperApp/AndroidManifest.xml
new file mode 100644
index 0000000..3944763
--- /dev/null
+++ b/hostsidetests/dumpsys/apps/ProcStatsHelperApp/AndroidManifest.xml
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2017 The Android Open Source Project
+
+     Licensed under the Apache License, Version 2.0 (the "License");
+     you may not use this file except in compliance with the License.
+     You may obtain a copy of the License at
+
+          http://www.apache.org/licenses/LICENSE-2.0
+
+     Unless required by applicable law or agreed to in writing, software
+     distributed under the License is distributed on an "AS IS" BASIS,
+     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+     See the License for the specific language governing permissions and
+     limitations under the License.
+-->
+
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+    package="com.android.server.cts.procstatshelper"
+    android:versionCode="32123">
+
+    <uses-sdk android:minSdkVersion="24" android:targetSdkVersion="24"/>
+
+    <application>
+        <activity android:name=".MainActivity"
+            android:exported="true" />
+        <activity android:name=".FlashingActivity"
+            android:exported="true" />
+        <service android:name=".ProcStatsHelperServiceMain"
+            android:exported="true" />
+        <service android:name=".ProcStatsHelperServiceSub" android:process=":proc2"
+            android:exported="true" />
+    </application>
+</manifest>