top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

My android mobile gives error message " android.process.media is stoped,what is solution ?

0 votes
225 views

My android mobile is unable to read/detact my sd memory card even if that sd memory card has some data..this sd memory card when put in other android mobile works well...all data of sd memory card then read/detect without an error...but this mobile while reading/detecting sd memory card gives error message " unfortunately android.process.media is stopped....now what is solution ?

posted Oct 21, 2020 by Hemant Manjarekar

Looking for an answer?  Promote on:
Facebook Share Button Twitter Share Button LinkedIn Share Button

Similar Questions
+4 votes

When I install and open an android application with my tablet I have an error message which same that my tablet is Rooted and it is not compatible with the Google certification.
I check my tablet with the app root checker and apparently my tablet is unroot. I thing it's not correctly or not complitly unroot but don't know how to have a correct unroot code. Can someone help me?

+2 votes

I have function in python,(Assume that i have imported all necessary module),

 def DL_Iperf(args):
        ssh=paramiko.SSHClient()
        ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
        ssh.connect(server_ip,username="root",password=Password)
some_code

This function is actually a thread and it will be created as many no of UE i have, (Ex: if i have 1 UE than 1 Thread will be created),

So, if i have 1 UE/ 2 UE than its working but if i have 3 UE then it is failing, with error "Paramiko : Error reading SSH protocol banner",

Below is the stderr of the script,

    No handlers could be found for logger "paramiko.transport"

    Unhandled exception in thread started by <function DL_Iperf at 0x02B8ACF0>
    Traceback (most recent call last):

    File "C:\Users\qxdm-5\Desktop\Chirag\LTE_11_Perfect_Working\TCP_Latest_2\Windo
    ws_UE\slave.py", line 379, in DL_Iperf

    ssh.connect(ServerIp,username="root",password=Pwd)

    File "build\bdist.win32\egg\paramiko\client.py", line 295, in connect

    File "build\bdist.win32\egg\paramiko\transport.py", line 451, in start_client

paramiko.SSHException: Error reading SSH protocol banner

From some reference i found that this is because of some network related issue, but my question is if it network related then why everytime in 3rd call of the function i am getting this error? And how do i resolve it?

+2 votes

I am receiving ANR notification sometimes in my application. The code is working fine though, how can I prevent showing this message. Please help.

+1 vote

Why the following program gives an error?

#include <stdio.h>

int main() 
{
    unsigned int64_t i = 12;
    printf("%lld\n", i);
    return 0;
}

Error:

 In function 'main':
5:19: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'i'
  unsigned int64_t i = 12;
               ^
5:19: error: 'i' undeclared (first use in this function)
5:19: note: each undeclared identifier is reported only once for each function it appears in

But, If I remove the unsigned keyword, it's working fine. So, Why unsigned int64_t i gives an error?

+1 vote
1)double d=0786; 

2)double d=0x4b17;
...