• camera and microphone questions

    From T@21:1/5 to All on Mon Jul 1 17:09:30 2024
    Hi All,

    Two questions on the camera and microphone:

    1) is there a way to ask Android for a list of everything
    that has permissions to either or both the camera and
    microphone ?

    2) is there a global way to disable ALL access/permissions
    to both the camera and the microphone?

    Many thanks,
    -T

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From =?UTF-8?Q?J=C3=B6rg_Lorenz?=@21:1/5 to All on Tue Jul 2 06:54:50 2024
    Am 02.07.24 um 02:09 schrieb T:
    Hi All,

    Two questions on the camera and microphone:

    1) is there a way to ask Android for a list of everything
    that has permissions to either or both the camera and
    microphone ?

    Sure. The path to the settings is on a Pixel 7 (German GUI):

    Settings - Data Protection&Security - Data Protection. There you will
    find settings and global switches.

    2) is there a global way to disable ALL access/permissions
    to both the camera and the microphone?

    You have there global switches for the camera, the microphone and some more.

    Many thanks,
    -T

    Your welcome,
    Jörg

    --
    "Gutta cavat lapidem." (Ovid)

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From =?UTF-8?Q?J=C3=B6rg_Lorenz?=@21:1/5 to All on Tue Jul 2 08:47:54 2024
    Am 02.07.24 um 02:09 schrieb T:
    Hi All,

    Two questions on the camera and microphone:

    1) is there a way to ask Android for a list of everything
    that has permissions to either or both the camera and
    microphone ?

    2) is there a global way to disable ALL access/permissions
    to both the camera and the microphone?

    BTW: Open "Settings" and enter "Permission Manager" should also work
    with other starters than the one from Google.

    HTH, Jörg

    --
    "Gutta cavat lapidem." (Ovid)

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From T@21:1/5 to All on Tue Jul 2 00:56:41 2024
    On 7/1/24 23:47, Jörg Lorenz wrote:
    Am 02.07.24 um 02:09 schrieb T:
    Hi All,

    Two questions on the camera and microphone:

    1) is there a way to ask Android for a list of everything
    that has permissions to either or both the camera and
    microphone ?

    2) is there a global way to disable ALL access/permissions
    to both the camera and the microphone?

    BTW: Open "Settings" and enter "Permission Manager" should also work
    with other starters than the one from Google.

    HTH, Jörg



    Thank you!

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Andrew@21:1/5 to All on Tue Jul 2 20:45:43 2024
    T wrote on Mon, 1 Jul 2024 17:09:30 -0700 :

    Hi All,

    Two questions on the camera and microphone:

    1) is there a way to ask Android for a list of everything
    that has permissions to either or both the camera and
    microphone ?

    2) is there a global way to disable ALL access/permissions
    to both the camera and the microphone?

    Many thanks,
    -T

    1. PMX
    <https://f-droid.org/de/packages/com.mirfatif.permissionmanagerx/>

    2. Permission Manager
    <https://github.com/YourStreet/android-permission-manager>
    <https://play.google.com/store/apps/details?id=in.yourstreet.permissionmanager>
    (I have this installed but I don't see an APK there anymore.)

    3. Muntashirakon App Manager
    <https://github.com/MuntashirAkon/AppManager/releases>

    4. ADB
    adb shell pm grant <sample.package.id> android.permission.<PERMISSION_NAME>
    adb shell pm revoke <sample.package.id> android.permission.<PERMISSION_NAME>

    For example:
    adb shell pm list permissions | FindStr facebook
    This should list all permissions granted for that particular app.

    adb shell pm revoke com.facebook.appmanager android.permission.READ_EXTERNAL_STORAGE
    This should revoke the stated permissions from that app.

    adb shell pm grant com.facebook.appmanager android.permission.READ_EXTERNAL_STORAGE
    This should grant the stated permissions to that app.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From T@21:1/5 to Andrew on Wed Jul 3 00:10:51 2024
    On 7/2/24 13:45, Andrew wrote:
    T wrote on Mon, 1 Jul 2024 17:09:30 -0700 :

    Hi All,

    Two questions on the camera and microphone:

    1) is there a way to ask Android for a list of everything
    that has permissions to either or both the camera and
    microphone ?

    2) is there a global way to disable ALL access/permissions
    to both the camera and the microphone?

    Many thanks,
    -T

    1. PMX
    <https://f-droid.org/de/packages/com.mirfatif.permissionmanagerx/>

    2. Permission Manager
    <https://github.com/YourStreet/android-permission-manager>
    <https://play.google.com/store/apps/details?id=in.yourstreet.permissionmanager>
    (I have this installed but I don't see an APK there anymore.)

    3. Muntashirakon App Manager
    <https://github.com/MuntashirAkon/AppManager/releases>

    4. ADB
    adb shell pm grant <sample.package.id> android.permission.<PERMISSION_NAME>
    adb shell pm revoke <sample.package.id> android.permission.<PERMISSION_NAME>

    For example:
    adb shell pm list permissions | FindStr facebook
    This should list all permissions granted for that particular app.

    C:\> adb shell pm revoke com.facebook.appmanager android.permission.READ_EXTERNAL_STORAGE
    This should revoke the stated permissions from that app.

    C:\> adb shell pm grant com.facebook.appmanager android.permission.READ_EXTERNAL_STORAGE
    This should grant the stated permissions to that app.


    Thank you!

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)