First pass at splitting the status bar for the different devices.

Change-Id: I2f568df92f88dfe8de18d24dd004239f52761aa6
diff --git a/packages/StatusBarPhone/AndroidManifest.xml b/packages/StatusBarPhone/AndroidManifest.xml
new file mode 100644
index 0000000..7aa558e
--- /dev/null
+++ b/packages/StatusBarPhone/AndroidManifest.xml
@@ -0,0 +1,22 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+        package="com.android.policy.statusbar.phone"
+        android:sharedUserId="android.uid.system">
+
+    <application
+        android:allowClearUserData="false"
+        android:label="@string/app_label"
+        android:icon="@drawable/ic_launcher_settings">
+                 
+        <receiver
+            android:name="StatusBarStarter"
+            >
+            <intent-filter>
+                <action android:name="com.android.internal.policy.statusbar.START" />
+            </intent-filter>
+        </receiver>
+        <service
+            android:name="StatusBarService"
+            android:exported="false"
+            />
+    </application>
+</manifest>