Skip to content Skip to sidebar Skip to footer

Local Path Doesn't Exist

After updating Android Studio to 0.4.5, I cannot get my application to build. I have the following configurations: dependencies { classpath 'com.android.tools.build:gradle:0.8.

Solution 1:

Add this to your <projectName>.iml After updating Android Studio that error might occur but you can fix it updating the <projectName>.iml file adding this snippet:

<facettype="android"name="Android"><configuration><optionname="APK_PATH"value="/build/apk/<projectName>-debug-unaligned.apk" /></configuration>

Solution 2:

Running:

./gradlew clean packageDebug --debug

fixed the error.

Post a Comment for "Local Path Doesn't Exist"