diff options
| author | Android (Google) Code Review <android-gerrit@google.com> | 2009-06-19 16:44:07 -0700 |
|---|---|---|
| committer | The Android Open Source Project <initial-contribution@android.com> | 2009-06-19 16:44:07 -0700 |
| commit | fc68623c03439db95401a18a435dbc491cd7f6fd (patch) | |
| tree | 318e9310cdb3fd31b912cc11b5f3b65d3d349f3f /tools/aapt/Bundle.h | |
| parent | b0774438ea90ce379ac3f20895f95302248a3844 (diff) | |
| parent | 1585bd24c10d16351f89e32dddbfa799f18db6bd (diff) | |
| download | frameworks_base-fc68623c03439db95401a18a435dbc491cd7f6fd.zip frameworks_base-fc68623c03439db95401a18a435dbc491cd7f6fd.tar.gz frameworks_base-fc68623c03439db95401a18a435dbc491cd7f6fd.tar.bz2 | |
am 1585bd24: Merge change 4828 into donut
Merge commit '1585bd24c10d16351f89e32dddbfa799f18db6bd'
* commit '1585bd24c10d16351f89e32dddbfa799f18db6bd':
Report densities in badging, debugging for nine patch bug.
Diffstat (limited to 'tools/aapt/Bundle.h')
| -rw-r--r-- | tools/aapt/Bundle.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/aapt/Bundle.h b/tools/aapt/Bundle.h index 9e712b8..a671bd7 100644 --- a/tools/aapt/Bundle.h +++ b/tools/aapt/Bundle.h @@ -37,6 +37,7 @@ public: mForce(false), mGrayscaleTolerance(0), mMakePackageDirs(false), mUpdate(false), mExtending(false), mRequireLocalization(false), mPseudolocalize(false), + mValues(false), mCompressionMethod(0), mOutputAPKFile(NULL), mAssetSourceDir(NULL), mAndroidManifestFile(NULL), mPublicOutputFile(NULL), @@ -75,6 +76,8 @@ public: void setRequireLocalization(bool val) { mRequireLocalization = val; } bool getPseudolocalize(void) const { return mPseudolocalize; } void setPseudolocalize(bool val) { mPseudolocalize = val; } + bool getValues(void) const { return mValues; } + void setValues(bool val) { mValues = val; } int getCompressionMethod(void) const { return mCompressionMethod; } void setCompressionMethod(int val) { mCompressionMethod = val; } const char* getOutputAPKFile() const { return mOutputAPKFile; } @@ -154,6 +157,7 @@ private: bool mExtending; bool mRequireLocalization; bool mPseudolocalize; + bool mValues; int mCompressionMethod; const char* mOutputAPKFile; const char* mAssetSourceDir; |
