2

I am getting the following notification in IntelliJ IDEA when I try to run my Android project:

Waiting for device.
Target device: emulator-5554 (jkj)
Uploading file
    local path: C:\Users\REACH9\androidapi\muzima-android\target\muzima-android.apk
    remote path: /data/local/tmp/com.muzima
Local path doesn't exist.

What could I be missing?

LotusUNSW
  • 2,027
  • 18
  • 20
user2499766
  • 117
  • 1
  • 3
  • 7

1 Answers1

2

Here all the possible solutions:

Solution 1: Go here and read the accepted answer

Solution 2: Open the .iml file with your editor. Under <configuration>(where you have all those <option name=...> paths, add this under all those paths:

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

Solution 3: File -> Project Structure -> Modules -> Your Project -> Dependencies -> Uncheck the project (only depend on the aar)

Community
  • 1
  • 1
LotusUNSW
  • 2,027
  • 18
  • 20