Android Studio is not loading on the device, local path doesn't exist

android, android-studio

Solution

Go to your project folder. Open ProjectName folder.

In file Your_Project_name.iml add

<option name="APK_PATH" value="/build/apk/your_app_name-debug-unaligned.apk" />

Or

<option name="APK_PATH" value="/build/outputs/apk/your_app_name-debug-unaligned.apk"/>

In new versions of Android studio

Problem

I recently attempted to migrate my Eclipse project over to Android Studio. All went well until I attempted to run the project and an error came up: ``` Uploading file local path: /Users/user/Documents/myapp/Android/myapp/build/apk/myapp-debug-unaligned.apk remote path: /data/local/tmp/com.mycompany.myapp Local path doesn't exist. ``` How can I fix this problem? Edit I want to mention as this is still getting answers and comments, this issue occurred while using Android Studio 0.1.3 and have not had similar issues with newer versions of Android Studio when converting eclipse projects.

Original source

Related problems