AudioDeviceCallback fails when sharedUserId=“android.uid.system”










1















I am developing an app for an Android custom build.



This app needs to subscribe to AudioDeviceCallback in Android's AudioManager.



I'm using:



mAudioManager.registerAudioDeviceCallback(new MyDeviceCallback(), null);


where:



private class MyDeviceCallback extends AudioDeviceCallback 

@Override
public void onAudioDevicesAdded(AudioDeviceInfo addedDevices)
Log.d(LOG_TAG, "onAudioDevicesAdded(): New devices detected");
updateAuxStatus();


@Override
public void onAudioDevicesRemoved(AudioDeviceInfo devices)
Log.d(LOG_TAG, "onAudioDevicesAdded(): devices removed");
updateAuxStatus();


private void updateAuxStatus()
AudioDeviceInfo devices = mAudioManager.getDevices(AudioManager.GET_DEVICES_INPUTS);
boolean isPluggedIn = false;
for (AudioDeviceInfo device : devices)
if (device.getType() == AudioDeviceInfo.TYPE_LINE_ANALOG)
isPluggedIn = true;


onAuxPluggedInChanged(isPluggedIn);




This works fine when I run the app with normal user (u0_aXX) but when I run the app as system sharedUser (adding to the Manifest):



android:sharedUserId="android.uid.system"


This callback is being called only after subscribing, but never again. Even when other apps without system user are getting the call normally.



I've traced the call to the AudioManager code and found that postEventFromNative in the AudioPortEventHandler is never being called for my app when it is running as system sharedUser. Since that is a jni call I stopped because I don't fully understand how it works.



What really troubles me is that when running without system sharedUser the same code is working as intended. Is there some restriction to system sharedUser that might be causing this problem?










share|improve this question


























    1















    I am developing an app for an Android custom build.



    This app needs to subscribe to AudioDeviceCallback in Android's AudioManager.



    I'm using:



    mAudioManager.registerAudioDeviceCallback(new MyDeviceCallback(), null);


    where:



    private class MyDeviceCallback extends AudioDeviceCallback 

    @Override
    public void onAudioDevicesAdded(AudioDeviceInfo addedDevices)
    Log.d(LOG_TAG, "onAudioDevicesAdded(): New devices detected");
    updateAuxStatus();


    @Override
    public void onAudioDevicesRemoved(AudioDeviceInfo devices)
    Log.d(LOG_TAG, "onAudioDevicesAdded(): devices removed");
    updateAuxStatus();


    private void updateAuxStatus()
    AudioDeviceInfo devices = mAudioManager.getDevices(AudioManager.GET_DEVICES_INPUTS);
    boolean isPluggedIn = false;
    for (AudioDeviceInfo device : devices)
    if (device.getType() == AudioDeviceInfo.TYPE_LINE_ANALOG)
    isPluggedIn = true;


    onAuxPluggedInChanged(isPluggedIn);




    This works fine when I run the app with normal user (u0_aXX) but when I run the app as system sharedUser (adding to the Manifest):



    android:sharedUserId="android.uid.system"


    This callback is being called only after subscribing, but never again. Even when other apps without system user are getting the call normally.



    I've traced the call to the AudioManager code and found that postEventFromNative in the AudioPortEventHandler is never being called for my app when it is running as system sharedUser. Since that is a jni call I stopped because I don't fully understand how it works.



    What really troubles me is that when running without system sharedUser the same code is working as intended. Is there some restriction to system sharedUser that might be causing this problem?










    share|improve this question
























      1












      1








      1








      I am developing an app for an Android custom build.



      This app needs to subscribe to AudioDeviceCallback in Android's AudioManager.



      I'm using:



      mAudioManager.registerAudioDeviceCallback(new MyDeviceCallback(), null);


      where:



      private class MyDeviceCallback extends AudioDeviceCallback 

      @Override
      public void onAudioDevicesAdded(AudioDeviceInfo addedDevices)
      Log.d(LOG_TAG, "onAudioDevicesAdded(): New devices detected");
      updateAuxStatus();


      @Override
      public void onAudioDevicesRemoved(AudioDeviceInfo devices)
      Log.d(LOG_TAG, "onAudioDevicesAdded(): devices removed");
      updateAuxStatus();


      private void updateAuxStatus()
      AudioDeviceInfo devices = mAudioManager.getDevices(AudioManager.GET_DEVICES_INPUTS);
      boolean isPluggedIn = false;
      for (AudioDeviceInfo device : devices)
      if (device.getType() == AudioDeviceInfo.TYPE_LINE_ANALOG)
      isPluggedIn = true;


      onAuxPluggedInChanged(isPluggedIn);




      This works fine when I run the app with normal user (u0_aXX) but when I run the app as system sharedUser (adding to the Manifest):



      android:sharedUserId="android.uid.system"


      This callback is being called only after subscribing, but never again. Even when other apps without system user are getting the call normally.



      I've traced the call to the AudioManager code and found that postEventFromNative in the AudioPortEventHandler is never being called for my app when it is running as system sharedUser. Since that is a jni call I stopped because I don't fully understand how it works.



      What really troubles me is that when running without system sharedUser the same code is working as intended. Is there some restriction to system sharedUser that might be causing this problem?










      share|improve this question














      I am developing an app for an Android custom build.



      This app needs to subscribe to AudioDeviceCallback in Android's AudioManager.



      I'm using:



      mAudioManager.registerAudioDeviceCallback(new MyDeviceCallback(), null);


      where:



      private class MyDeviceCallback extends AudioDeviceCallback 

      @Override
      public void onAudioDevicesAdded(AudioDeviceInfo addedDevices)
      Log.d(LOG_TAG, "onAudioDevicesAdded(): New devices detected");
      updateAuxStatus();


      @Override
      public void onAudioDevicesRemoved(AudioDeviceInfo devices)
      Log.d(LOG_TAG, "onAudioDevicesAdded(): devices removed");
      updateAuxStatus();


      private void updateAuxStatus()
      AudioDeviceInfo devices = mAudioManager.getDevices(AudioManager.GET_DEVICES_INPUTS);
      boolean isPluggedIn = false;
      for (AudioDeviceInfo device : devices)
      if (device.getType() == AudioDeviceInfo.TYPE_LINE_ANALOG)
      isPluggedIn = true;


      onAuxPluggedInChanged(isPluggedIn);




      This works fine when I run the app with normal user (u0_aXX) but when I run the app as system sharedUser (adding to the Manifest):



      android:sharedUserId="android.uid.system"


      This callback is being called only after subscribing, but never again. Even when other apps without system user are getting the call normally.



      I've traced the call to the AudioManager code and found that postEventFromNative in the AudioPortEventHandler is never being called for my app when it is running as system sharedUser. Since that is a jni call I stopped because I don't fully understand how it works.



      What really troubles me is that when running without system sharedUser the same code is working as intended. Is there some restriction to system sharedUser that might be causing this problem?







      android android-source






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 13 '18 at 15:51









      Nico.ANico.A

      61




      61






















          0






          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53284715%2faudiodevicecallback-fails-when-shareduserid-android-uid-system%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53284715%2faudiodevicecallback-fails-when-shareduserid-android-uid-system%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          27

          Top Tejano songwriter Luis Silva dead of heart attack at 64

          Category:Rhetoric