diff options
author | Yuichi Araki <yaraki@google.com> | 2017-01-18 20:42:17 +0900 |
---|---|---|
committer | Yuichi Araki <yaraki@google.com> | 2017-01-24 14:59:51 +0900 |
commit | 4d35cca96ce55eb29d1948086214f91ae94e9adb (patch) | |
tree | 2ddb5bd63163bf8806be9dc4773e66630b5c4712 /tools/aapt2/Main.cpp | |
parent | 9727f22fc092fe7ccdbf2929d697126f2095d62e (diff) |
AAPT: Add --no-version-transitions flag
Add a new flag to disable versioning of Transition related XMLs.
Transition support library will use this to handle these XMLs on older
API levels.
Test: make libaapt_tests AaptTestAppOne
Bug: 34427868
Change-Id: I66e81cca049e71ef6704177b2ca21c9cdeaff78f
Diffstat (limited to 'tools/aapt2/Main.cpp')
-rw-r--r-- | tools/aapt2/Main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aapt2/Main.cpp b/tools/aapt2/Main.cpp index 74d40194e955..15d7e2e2241b 100644 --- a/tools/aapt2/Main.cpp +++ b/tools/aapt2/Main.cpp @@ -25,7 +25,7 @@ namespace aapt { static const char* sMajorVersion = "2"; // Update minor version whenever a feature or flag is added. -static const char* sMinorVersion = "4"; +static const char* sMinorVersion = "5"; int PrintVersion() { std::cerr << "Android Asset Packaging Tool (aapt) " << sMajorVersion << "." |