summaryrefslogtreecommitdiff
path: root/test/MultiDex
diff options
context:
space:
mode:
author David Srbecky <dsrbecky@google.com> 2023-02-27 19:15:07 +0000
committer David Srbecky <dsrbecky@google.com> 2023-11-13 18:27:34 +0000
commit854b363b284592d0bbfdbe31eb487fa64a4b9471 (patch)
treea5674430183437769a8a390bd1b4b2e532d2223a /test/MultiDex
parent0d3cf53ae0d400f7850d96798116dd3d4b963530 (diff)
Add support for dex containers (DEX v41).
Allow multiple dex files within single "container" (either a zip entry or a plain on-disk dex file). This allows sharing of string (and other) dex data, since the offsets can point to shared data payload. Bug: 266950186 Test: test.py -b --host Change-Id: I4f5901fd2f26a5a9dba427eb48c0fa5ddb6243d8
Diffstat (limited to 'test/MultiDex')
-rw-r--r--test/MultiDex/Second.java8
1 files changed, 1 insertions, 7 deletions
diff --git a/test/MultiDex/Second.java b/test/MultiDex/Second.java
index 5067bcc2e8..ec8849a402 100644
--- a/test/MultiDex/Second.java
+++ b/test/MultiDex/Second.java
@@ -16,12 +16,6 @@
class Second {
public String getSecond() {
- return "I Second That.";
- }
-
- // This method makes sure the second dex file has quickening
- // instructions.
- public String callSecond() {
- return getSecond();
+ return "Original";
}
}