diff options
author | Adam Lesinski <adamlesinski@google.com> | 2016-12-29 16:08:16 -0500 |
---|---|---|
committer | Adam Lesinski <adamlesinski@google.com> | 2017-01-11 17:20:36 -0800 |
commit | da431a22da38f9c4085b5d71ed9a9c6122c6a5a6 (patch) | |
tree | 7fc684c1ec3c653ff98bdc8eff50addc081a02e1 /libs/androidfw/tests/ResTable_test.cpp | |
parent | 7ad1110ecd6a840fcd2895c62668828a1ca029c6 (diff) |
libandroidfw: Add new support for shared libraries
This adds support for shared resource libraries in the new
ResTable/AssetManager implementation.
The dynamic package map encoded in resources.arsc is parsed
and stored with LoadedArsc, and combined to form a resolved table
in AssetManager2.
Benchmarks show that this implementation is an order of magnitude
faster on angler-userdebug (make libandroidfw_benchmarks).
Test: libandroidfw_tests
Change-Id: I57c80248728b63b162bf8269ac9495b53c3e7fa0
Diffstat (limited to 'libs/androidfw/tests/ResTable_test.cpp')
-rw-r--r-- | libs/androidfw/tests/ResTable_test.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/androidfw/tests/ResTable_test.cpp b/libs/androidfw/tests/ResTable_test.cpp index b151f3f96496..ad1cd2b289d6 100644 --- a/libs/androidfw/tests/ResTable_test.cpp +++ b/libs/androidfw/tests/ResTable_test.cpp @@ -25,10 +25,10 @@ #include "TestHelpers.h" #include "data/basic/R.h" -#include "data/lib/R.h" +#include "data/lib_one/R.h" namespace basic = com::android::basic; -namespace lib = com::android::lib; +namespace lib = com::android::lib_one; namespace android { @@ -119,7 +119,7 @@ TEST(ResTableTest, ParentThemeIsAppliedCorrectly) { TEST(ResTableTest, LibraryThemeIsAppliedCorrectly) { std::string contents; - ASSERT_TRUE(ReadFileFromZipToString(GetTestDataPath() + "/lib/lib.apk", + ASSERT_TRUE(ReadFileFromZipToString(GetTestDataPath() + "/lib_one/lib_one.apk", "resources.arsc", &contents)); ResTable table; |