Adding a placeholder recents activity

Change-Id: Idde86b4008559cde8bcf13fba90a8c72c3f1f591
diff --git a/quickstep/AndroidManifest.xml b/quickstep/AndroidManifest.xml
index eb05864..08c740c4 100644
--- a/quickstep/AndroidManifest.xml
+++ b/quickstep/AndroidManifest.xml
@@ -36,8 +36,12 @@
         android:supportsRtl="true" >
 
         <service android:name="com.android.quickstep.TouchInteractionService"
-            android:exported="false" />
+            android:exported="true" />
 
+        <!-- STOPSHIP: Change exported to false once all the integration is complete.
+        It is set to true so that the activity can be started from command line -->
+        <activity android:name="com.android.quickstep.RecentsActivity"
+            android:exported="true" />
     </application>
 
 </manifest>