Warning: mysqli::__construct(): (HY000/1203): User howardkn already has more than 'max_user_connections' active connections in D:\Inetpub\vhosts\howardknight.net\al.howardknight.net\includes\artfuncs.php on line 21
Failed to connect to MySQL: (1203) User howardkn already has more than 'max_user_connections' active connections
Warning: mysqli::query(): Couldn't fetch mysqli in D:\Inetpub\vhosts\howardknight.net\al.howardknight.net\index.php on line 66
Article <v62thr$1qfos$1@dont-email.me>
Deutsch   English   Français   Italiano  
<v62thr$1qfos$1@dont-email.me>

View for Bookmarking (what is this?)
Look up another Usenet article

Path: eternal-september.org!news.eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail
From: T <T@invalid.invalid>
Newsgroups: comp.mobile.android
Subject: Re: camera and microphone questions
Date: Wed, 3 Jul 2024 00:10:51 -0700
Organization: A noiseless patient Spider
Lines: 44
Message-ID: <v62thr$1qfos$1@dont-email.me>
References: <v5vgfq$18sbc$2@dont-email.me>
 <v61otn$4f9$1@nnrp.usenet.blueworldhosting.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Wed, 03 Jul 2024 09:10:53 +0200 (CEST)
Injection-Info: dont-email.me; posting-host="5488f531b76e94c890d2c5c5ed633b02";
	logging-data="1916700"; mail-complaints-to="abuse@eternal-september.org";	posting-account="U2FsdGVkX19tyO5iqT7HIbmW435mVSEjoZIk/f5b154="
User-Agent: Mozilla Thunderbird
Cancel-Lock: sha1:SJkQ1MQRttzX5FIRhFcoZOFZcpI=
In-Reply-To: <v61otn$4f9$1@nnrp.usenet.blueworldhosting.com>
Content-Language: en-US

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:
> C:\> 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!