]> git.saurik.com Git - android/aapt.git/blobdiff - Bundle.h
am 192b56d4: Merge "Implement #2964234: Add support for <uses-package> element to...
[android/aapt.git] / Bundle.h
index 3308a3531dc7db534ecc1639af3f14c43c60db31..a1bc24144f3d919a3eca3bb6cebc5b4abf7e22ce 100644 (file)
--- a/Bundle.h
+++ b/Bundle.h
@@ -45,6 +45,7 @@ public:
           mRClassDir(NULL), mResourceIntermediatesDir(NULL), mManifestMinSdkVersion(NULL),
           mMinSdkVersion(NULL), mTargetSdkVersion(NULL), mMaxSdkVersion(NULL),
           mVersionCode(NULL), mVersionName(NULL), mCustomPackage(NULL),
+          mMaxResVersion(NULL), mDebugMode(false),
           mArgc(0), mArgv(NULL)
         {}
     ~Bundle(void) {}
@@ -134,6 +135,10 @@ public:
     void setVersionName(const char* val) { mVersionName = val; }
     const char* getCustomPackage() const { return mCustomPackage; }
     void setCustomPackage(const char* val) { mCustomPackage = val; }
+    const char* getMaxResVersion() const { return mMaxResVersion; }
+    void setMaxResVersion(const char * val) { mMaxResVersion = val; }
+    bool getDebugMode() { return mDebugMode; }
+    void setDebugMode(bool val) { mDebugMode = val; }
 
     /*
      * Set and get the file specification.
@@ -230,6 +235,8 @@ private:
     const char* mVersionCode;
     const char* mVersionName;
     const char* mCustomPackage;
+    const char* mMaxResVersion;
+    bool        mDebugMode;
 
     /* file specification */
     int         mArgc;