Make resource output name consistent with input name

Bug: b/287398085
Change-Id: I8a789c9ccb3e6d2fda690b224c44b2fbf824b5aa
diff --git a/tools/compiledump.py b/tools/compiledump.py
index e9a462d..c25e75e 100755
--- a/tools/compiledump.py
+++ b/tools/compiledump.py
@@ -655,7 +655,7 @@
         if dump.library_jar():
             cmd.extend(['--lib', dump.library_jar()])
         if dump.resource_ap_file():
-            res_output = os.path.join(temp, 'ap-res-out.ap_')
+            res_output = os.path.join(temp, 'app-res-out.ap_')
             cmd.extend(['--android-resources', dump.resource_ap_file(),
                         res_output])
         if dump.classpath_jar() and not is_l8_compiler(compiler):