diff options
author | Andreas Gampe <agampe@google.com> | 2014-05-21 18:46:59 -0700 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2014-06-25 19:34:58 -0700 |
commit | 833a48501d560c9fa7fc78ef619888138c2d374f (patch) | |
tree | add308298a5486d44caddea120cc9200dd70c38a /test/113-multidex/src/FillerB.java | |
parent | b849f6dd638fd1246724160cd5c01ab1a5ff33bd (diff) | |
download | art-833a48501d560c9fa7fc78ef619888138c2d374f.tar.gz art-833a48501d560c9fa7fc78ef619888138c2d374f.tar.bz2 art-833a48501d560c9fa7fc78ef619888138c2d374f.zip |
ART: Native support for multidex
Native support for zip files with multiple classesX.dex.
Works by explicitly looking for those files in ascending order. As
these files have no file system representation for themselves,
introduce synthetic dex locations: the name of the originating file
plus a colon plus the name of the dex file, e.g., test.jar:classes2.dex.
Opening a zip dex file will return all dex files in this way. This
keeps the changes to dex2oat minimal.
To hide multidex/synthetic names from the Java layer, let the handle
of dalvik.system.DexFile refer to a vector of DexFile objects. When
opening a location, test possible synthetic names and add them to the
vector. Thus, the original multidex jar in the classpath will be
associated with all embedded dex files.
Change-Id: I0de107e1369cbc94416c544aca3b17525c9eac8b
Diffstat (limited to 'test/113-multidex/src/FillerB.java')
-rw-r--r-- | test/113-multidex/src/FillerB.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/test/113-multidex/src/FillerB.java b/test/113-multidex/src/FillerB.java new file mode 100644 index 0000000000..ec3ac9d7d1 --- /dev/null +++ b/test/113-multidex/src/FillerB.java @@ -0,0 +1,23 @@ +/* + * Copyright (C) 2014 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +public class FillerB { + public void methodC() { + } + + public void methodD() { + } +} |