tree: 440185a4b884f32a54dd1782a0bedbca04c2e232 [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. .clang-format
  19. Android.mk
  20. AppInfo.h
  21. ConfigDescription.cpp
  22. ConfigDescription.h
  23. ConfigDescription_test.cpp
  24. Debug.cpp
  25. Debug.h
  26. Diagnostics.h
  27. DominatorTree.cpp
  28. DominatorTree.h
  29. DominatorTree_test.cpp
  30. Flags.cpp
  31. Flags.h
  32. Format.proto
  33. Locale.cpp
  34. Locale.h
  35. Locale_test.cpp
  36. Main.cpp
  37. NameMangler.h
  38. NameMangler_test.cpp
  39. readme.md
  40. Resource.cpp
  41. Resource.h
  42. Resource_test.cpp
  43. ResourceParser.cpp
  44. ResourceParser.h
  45. ResourceParser_test.cpp
  46. ResourceTable.cpp
  47. ResourceTable.h
  48. ResourceTable_test.cpp
  49. ResourceUtils.cpp
  50. ResourceUtils.h
  51. ResourceUtils_test.cpp
  52. ResourceValues.cpp
  53. ResourceValues.h
  54. SdkConstants.cpp
  55. SdkConstants.h
  56. SdkConstants_test.cpp
  57. Source.h
  58. StringPool.cpp
  59. StringPool.h
  60. StringPool_test.cpp
  61. ValueVisitor.h
  62. ValueVisitor_test.cpp
tools/aapt2/readme.md

Android Asset Packaging Tool 2.0 (AAPT2) release notes

Version 2.2

aapt2 compile ...

aapt link ...

  • Duplicate resource filtering: removes duplicate resources in dominated configurations that are always identical when selected at runtime. This can be disabled with --no-resource-deduping.

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.