2

when I am going to debug my application using android studio, I cannot do that because of this massage which is Waiting for application to come online: com.example.myapplication | com.example.myapplication.test . After sometime Could not connect to remote process. Aborting debug session is shown.

3 Answers3

1

The solution for me:

  • Go to Tools-> AVD Manager
  • Delete your Virtual device: enter image description here

  • Create a new Virtual device

Alfonso_MA
  • 639
  • 3
  • 21
1

This work for me:

in directory C:\Users\your_name\ .android\avd I deleted all devices and then in Android Studio i created them again.

Before this, I tried Invalidate cache and restart option, some restarts/reboots of Android Studio/Devices/PC and deleting devices in Android Virtual Device Manager all of them with no results.

pear95
  • 46
  • 1
  • 5
0

I had the same issue. The app didn't launch when I tried to run it without debugging. Debugging gave the same results as for OP. No real info about the issue.

The solution was looking through the recent changes I made. My mistake was that I declared a permission under the <application> tag in the manifest file:

android:permission="android.permission.INTERNET"

instead of writing

<uses-permission android:name="android.permission.INTERNET"/>

above the <application> tag.