diff options
author | 2011-07-20 15:08:23 -0700 | |
---|---|---|
committer | 2011-07-20 15:08:23 -0700 | |
commit | 1e24ccbdd56a45c8bb5f2eba94af5aecd2d02554 (patch) | |
tree | a4c8ca6924e68b84dab15ac13d97b7b372ccc836 /tools/aapt/AaptAssets.cpp | |
parent | d40c93f61ca5b3f2351b8db716f67b58f1625e85 (diff) | |
parent | 03589cc65355220e0a4a0c816189a9fa25cc81fc (diff) |
Merge "Add generation of dependency file for .ap_ package"
Diffstat (limited to 'tools/aapt/AaptAssets.cpp')
-rw-r--r-- | tools/aapt/AaptAssets.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/aapt/AaptAssets.cpp b/tools/aapt/AaptAssets.cpp index 9c5a51400465..864d47e1590f 100644 --- a/tools/aapt/AaptAssets.cpp +++ b/tools/aapt/AaptAssets.cpp @@ -1685,7 +1685,7 @@ ssize_t AaptAssets::slurpFromArgs(Bundle* bundle) sp<AaptDir> assetAaptDir = makeDir(String8(kAssetDir)); AaptGroupEntry group; count = assetAaptDir->slurpFullTree(bundle, assetRoot, group, - String8(), mFullResPaths); + String8(), mFullAssetPaths); if (count < 0) { totalCount = count; goto bail; @@ -1759,7 +1759,7 @@ ssize_t AaptAssets::slurpFromArgs(Bundle* bundle) * guarantees about ordering, so we're okay with an inorder search * using whatever order the OS happens to hand back to us. */ - count = slurpFullTree(bundle, assetRoot, AaptGroupEntry(), String8(), mFullResPaths); + count = slurpFullTree(bundle, assetRoot, AaptGroupEntry(), String8(), mFullAssetPaths); if (count < 0) { /* failure; report error and remove archive */ totalCount = count; |