tree: 31bbd518a822aca2eddf0632d0840e5ac532c5c3 [path history] [tgz]
  1. compile/
  2. diff/
  3. dump/
  4. filter/
  5. flatten/
  6. integration-tests/
  7. io/
  8. java/
  9. link/
  10. process/
  11. proto/
  12. split/
  13. test/
  14. tools/
  15. unflatten/
  16. util/
  17. xml/
  18. Android.mk
  19. AppInfo.h
  20. ConfigDescription.cpp
  21. ConfigDescription.h
  22. ConfigDescription_test.cpp
  23. Debug.cpp
  24. Debug.h
  25. Diagnostics.h
  26. Flags.cpp
  27. Flags.h
  28. Format.proto
  29. Locale.cpp
  30. Locale.h
  31. Locale_test.cpp
  32. Main.cpp
  33. NameMangler.h
  34. NameMangler_test.cpp
  35. readme.md
  36. Resource.cpp
  37. Resource.h
  38. Resource_test.cpp
  39. ResourceParser.cpp
  40. ResourceParser.h
  41. ResourceParser_test.cpp
  42. ResourceTable.cpp
  43. ResourceTable.h
  44. ResourceTable_test.cpp
  45. ResourceUtils.cpp
  46. ResourceUtils.h
  47. ResourceUtils_test.cpp
  48. ResourceValues.cpp
  49. ResourceValues.h
  50. SdkConstants.cpp
  51. SdkConstants.h
  52. SdkConstants_test.cpp
  53. Source.h
  54. StringPool.cpp
  55. StringPool.h
  56. StringPool_test.cpp
  57. ValueVisitor.h
  58. ValueVisitor_test.cpp
tools/aapt2/readme.md

Android Asset Packaging Tool 2.0 (AAPT2) release notes

Version 2.1

aapt2 link ...

  • Configuration Split APK support: supports splitting resources that match a set of configurations to a separate APK which can be loaded alongside the base APK on API 21+ devices. This is done using the flag --split path/to/split.apk:<config1>[,<config2>,...].
  • SDK version resource filtering: Resources with an SDK version qualifier that is unreachable at runtime due to the minimum SDK level declared by the AndroidManifest.xml are stripped.

Version 2.0

aapt2 compile ...

  • Pseudo-localization: generates pseudolocalized versions of default strings when the --pseudo-localize option is specified.
  • Legacy mode: treats some class of errors as warnings in order to be more compatible with AAPT when --legacy is specified.
  • Compile directory: treats the input file as a directory when --dir is specified. This will emit a zip of compiled files, one for each file in the directory. The directory must follow the Android resource directory structure (res/values-[qualifiers]/file.ext).

aapt2 link ...

  • Automatic attribute versioning: adds version qualifiers to resources that use attributes introduced in a later SDK level. This can be disabled with --no-auto-version.
  • Min SDK resource filtering: removes resources that can't possibly be selected at runtime due to the application's minimum supported SDK level.