How do deactivate the green sensor indicator (microphone and camera)?

Search This thread

tworla

Senior Member
Oct 2, 2018
72
2

I did this but instead ran the following command and it worked like a charm!

cmd device_config put privacy camera_mic_icons_enabled false default

Also it seems that after a day (without restarting) the dot comes back, so I have that action set to run every 12 hours as well.
 
Last edited:
How can we revert the 2nd command?
 

SmokeTooMuch

Member
Apr 10, 2011
21
6
Just wanted to say that the following seems to work on Android 13:
Code:
adb shell cmd device_config put privacy camera_mic_icons_enabled false default
adb shell cmd device_config set_sync_disabled_for_tests persistent
 
  • Like
Reactions: blackhawk

Nitin Jindal

New member
Nov 6, 2023
1
0

bootlooped...what should I do?? phone stuck up on Syberia Rom logo after installing this module. even vol up+downn+power button not work...phone bricked ...
 

mvincent2k

Member
Nov 19, 2018
48
14
OnePlus Nord N200 5G
bootlooped...what should I do?? phone stuck up on Syberia Rom logo after installing this module. even vol up+downn+power button not work...phone bricked ...
It is highly unlikely this mod is the cause of the bootloop as it is such a basic change although Syberia ROM sounds like a custom Rom so all bets are off as there is no knowing what Devs change on a custom Rom wrt the OS.

Suggest you boot your phone into safe mode which auto-disables and any magisk mods. I don't know your phone so Google how to do this and hopefully it works for you
 

Hendrix7

New member
Nov 18, 2023
3
0
How can I disable that function, it is a bit irriating as it keeps popping on when I use the phone?
Thanks for asking this!
It's an integral privacy feature of Android 12.
While I totally understand the intention behind this feature, there are legitimate reasons for voice recording such as documenting verbally abusive individuals.

Having that green dot on the screen is an instant dead giveaway.
 

blackhawk

Senior Member
Jun 23, 2020
13,663
5,852
Samsung Galaxy Note 10+
With Samsung there is Good Lock Quickstar.
Maybe they were kind enough to make it possible to ghost it. Don't know I'm still running Pie and Q... for good reasons.
Circa One UI 1.5 Quickstar
Screenshot_20231230-185439_QuickStar.jpg
 

Top Liked Posts

  • There are no posts matching your filters.
  • 3
    It's an integral privacy feature of Android 12. It may be possible to disable it using a Magisk module, but I don't know of a specific module that might do it, nor would I ever want to in the interests of privacy.
    2
    I have the solution!

    Activate the developer option on the phone. Enable USB debugging.

    Install platform tools on the PC.
    Connect cell phone to PC.

    Start command prompt with platform-tools. E.g. C:\platform-tools>
    then type in ADB DEVICES and confirm on the phone.
    The phone should now appear in the list.
    Now copy and paste the following line

    Code:
    adb shell cmd device_config put privacy camera_mic_icons_enabled false default

    and confirm with Enter.
    From now on there is no longer a green dot when using the camera and microphone.
    Restore the green dot with

    Code:
    adb shell cmd device_config put privacy camera_mic_icons_enabled true default
    2
    I was able to disable the green camera/mic indicators from an ADB shell w/these commands:
    device_config put privacy camera_mic_icons_enabled false default
    device_config set_sync_disabled_for_tests persistent

    The first command disables them and the second one keeps the playstore from reverting the change, as I understand it. This command:
    device_config put privacy location_indicators_enabled false default

    should disable the location indicator, according to several sources, but I could not get it to work for me. The only means I've been able to use to disable the location indicator is by using SystemUITuner and adding the location indicator to the statusbar icon blacklist.
    2
    Hello, I found an XPosed module called Location Indicator Whitelist. Despite the name, it can disable indicator for microphone and camera in addition to location. Instead of totally disabling indicator, it disables indicator for selected application.
    1
    Just wanted to say that the following seems to work on Android 13:
    Code:
    adb shell cmd device_config put privacy camera_mic_icons_enabled false default
    adb shell cmd device_config set_sync_disabled_for_tests persistent