1

When I run my Android Studio project from the editor to my phone, nothing launches. Everything compiles fine, however no activity is started when it completes. I then have to open the application manually with my phone, and the newest code is indeed updated.

Here is a snippet from my Android Manifest:

<activity android:name=".view.MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>

What I have tried:

  • Using a different physical device
  • Using a virtual device
  • Going into "Edit configurations" and selecting a default activity for launch
StackUser
  • 135
  • 1
  • 11
  • "Nothing launches" may not be enough information to help you. Have you any error message, traceback, something? – Arount Aug 09 '17 at 23:38
  • Yes you are right, I hadn't seen the error message at first. I ended up having the same error as this post: https://stackoverflow.com/questions/42570016/android-studio-2-3-update-not-opening-app-instant-run-service I had to disable instant run. Thanks a lot! – StackUser Aug 10 '17 at 00:00

1 Answers1

1

Ended up having the same problem as this post:

Android Studio 2.3 Update not opening app [Instant Run Service]

Solution is to disable instant run.

StackUser
  • 135
  • 1
  • 11