Fix the wrong path method usages in AndroidBuildViewTestCase.java.

PiperOrigin-RevId: 333504810
diff --git a/src/test/java/com/google/devtools/build/lib/rules/android/AndroidBuildViewTestCase.java b/src/test/java/com/google/devtools/build/lib/rules/android/AndroidBuildViewTestCase.java
index 8a0e833..cf03432 100644
--- a/src/test/java/com/google/devtools/build/lib/rules/android/AndroidBuildViewTestCase.java
+++ b/src/test/java/com/google/devtools/build/lib/rules/android/AndroidBuildViewTestCase.java
@@ -301,7 +301,7 @@
   }
 
   protected String getAndroidJarPath() throws Exception {
-    return getAndroidSdk().getAndroidJar().getOutputDirRelativePathString();
+    return getAndroidSdk().getAndroidJar().getExecPathString();
   }
 
   protected String getAndroidJarFilename() throws Exception {
@@ -313,7 +313,7 @@
   }
 
   protected String getMainDexClassesPath() throws Exception {
-    return getAndroidSdk().getMainDexClasses().getOutputDirRelativePathString();
+    return getAndroidSdk().getMainDexClasses().getExecPathString();
   }
 
   protected String getMainDexClassesFilename() throws Exception {