Add the AVRCP Target Service (1/2)

The AVRCP Target Service is started by Bluetooth Adapter like a normal
service instead of being started by A2DP like the old service. All it
does is initializes the player list and helps communicate data between
the Media Framework and the Native Interface.

Bug: 68854188
Test: Compiles and local test with service enabled
Change-Id: Ifb26f0fa3fac37686924bd6835e1d346ebf68bf1
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index ae36f1e..772b9b3 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -318,6 +318,14 @@
         </service>
         <service
             android:process="@string/process"
+            android:name = ".avrcp.AvrcpTargetService"
+            android:enabled = "@bool/profile_supported_avrcp_target" >
+            <intent-filter>
+                <action android:name="android.bluetooth.IBluetoothAvrcp" />
+            </intent-filter>
+        </service>
+        <service
+            android:process="@string/process"
             android:name = ".avrcpcontroller.AvrcpControllerService"
             android:enabled="@bool/profile_supported_avrcp_controller">
             <intent-filter>