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