Native interface to AudioService
Implement a native interface to communicate with
AudioService implemented in Java
Define transaction IDs for all methods, but comment
out the ones for the methods that are not implemented.
Implement the methods for PlayerBase tracking.
Test: make, related SL ES test coming
Bug: 30955183
Change-Id: I9f9bbad7c07743cdd8957cf5b8b151a8aead53b3
diff --git a/services/audiomanager/Android.bp b/services/audiomanager/Android.bp
new file mode 100644
index 0000000..04dd967
--- /dev/null
+++ b/services/audiomanager/Android.bp
@@ -0,0 +1,18 @@
+cc_library_shared {
+ name: "libaudiomanager",
+
+ srcs: ["IAudioManager.cpp"],
+
+ shared_libs: [
+ "libutils",
+ "libbinder",
+ "liblog",
+ ],
+
+ cflags: [
+ "-Wall",
+ "-Werror",
+ "-Wunused",
+ "-Wunreachable-code",
+ ],
+}