]> git.saurik.com Git - android/aapt.git/blobdiff - Bundle.h
am e05184f2: Merge "Output proguard keep flags for fragment classes." into gingerbread
[android/aapt.git] / Bundle.h
index 3308a3531dc7db534ecc1639af3f14c43c60db31..6a1f2d58cdaf0f994a0b16f0a70e32b9ecb7947f 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),
           mArgc(0), mArgv(NULL)
         {}
     ~Bundle(void) {}
@@ -134,6 +135,8 @@ 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; }
 
     /*
      * Set and get the file specification.
@@ -230,6 +233,7 @@ private:
     const char* mVersionCode;
     const char* mVersionName;
     const char* mCustomPackage;
+    const char* mMaxResVersion;
 
     /* file specification */
     int         mArgc;