X-Git-Url: https://git.saurik.com/android/aapt.git/blobdiff_plain/15c62a5b13cda41eee74f9d224e8a74cf31377b5..1eb15b505ba1d7ea5a18363c4b7b137f2e9f6d01:/Bundle.h diff --git a/Bundle.h b/Bundle.h index cf70121..4737f84 100644 --- a/Bundle.h +++ b/Bundle.h @@ -43,7 +43,7 @@ public: mAndroidManifestFile(NULL), mPublicOutputFile(NULL), mRClassDir(NULL), mResourceIntermediatesDir(NULL), mMinSdkVersion(NULL), mTargetSdkVersion(NULL), mMaxSdkVersion(NULL), - mVersionCode(NULL), mVersionName(NULL), + mVersionCode(NULL), mVersionName(NULL), mCustomPackage(NULL), mArgc(0), mArgv(NULL) {} ~Bundle(void) {} @@ -123,6 +123,8 @@ public: void setVersionCode(const char* val) { mVersionCode = val; } const char* getVersionName() const { return mVersionName; } void setVersionName(const char* val) { mVersionName = val; } + const char* getCustomPackage() const { return mCustomPackage; } + void setCustomPackage(const char* val) { mCustomPackage = val; } /* * Set and get the file specification. @@ -185,6 +187,7 @@ private: const char* mMaxSdkVersion; const char* mVersionCode; const char* mVersionName; + const char* mCustomPackage; /* file specification */ int mArgc;