rohan
rohan

Reputation: 21

Activity Not Responding

This is major problem I am getting while monkey testing my application on emulator.

"activity home(in process android.process.acore) is not responding"

I don't know what is happening behind.

Has anybody any solution?

Upvotes: 0

Views: 3649

Answers (2)

Fernwilter
Fernwilter

Reputation: 134

That process don't belong to you application does it ? I think that is a system process. Have you limited monkey to only run on your package ? Are you running emulator or target ? Souns like monkey make your emulator or target phone "crash".

Upvotes: 0

Ted Hopp
Ted Hopp

Reputation: 234847

You are probably doing something time-consuming (like a network connection) on the event thread. You need to move all time-consuming processing into worker threads. See the article on Painless Threading.

Upvotes: 1

Related Questions