Remove deprecated code for pre-assigned resource IDs

Pre-assigned resource IDs (i.e. <public id="0x7f123456"/>) are not supported
by RPBB, and this code will never be needed for supporting pre-assigned IDs.
The removed code provided this functionality:

* reservation of IDs at compile time; this should not exist, since
  compile-time IDs are meaningless.

* assert that reserved IDs match between (un)qualified values, i.e.
  values/ and values-es/.  aapt2 ignores <public> tag in all qualified resource
  directories.

* assert that reserved IDs are consistent w.r.t. types, e.g. all string IDs use
  type ID 0x02 or whatever.  This is aapt2's responsibility, assuming that
  this is even desired (the underlying code in Android doesn't care).

PiperOrigin-RevId: 285797220
5 files changed
tree: e1b8e4909ae62b720057380219c5070e87c47268
  1. .bazelci/
  2. examples/
  3. scripts/
  4. site/
  5. src/
  6. third_party/
  7. tools/
  8. .bazelrc
  9. .gitattributes
  10. .gitignore
  11. AUTHORS
  12. BUILD
  13. CHANGELOG.md
  14. CODEOWNERS
  15. combine_distfiles.py
  16. combine_distfiles_to_tar.sh
  17. compile.sh
  18. CONTRIBUTING.md
  19. CONTRIBUTORS
  20. distdir.bzl
  21. ISSUE_TEMPLATE.md
  22. LICENSE
  23. README.md
  24. WORKSPACE
README.md

Bazel

{Fast, Correct} - Choose two

Build and test software of any size, quickly and reliably.

  • Speed up your builds and tests: Bazel rebuilds only what is necessary. With advanced local and distributed caching, optimized dependency analysis and parallel execution, you get fast and incremental builds.

  • One tool, multiple languages: Build and test Java, C++, Android, iOS, Go, and a wide variety of other language platforms. Bazel runs on Windows, macOS, and Linux.

  • Scalable: Bazel helps you scale your organization, codebase, and continuous integration solution. It handles codebases of any size, in multiple repositories or a huge monorepo.

  • Extensible to your needs: Easily add support for new languages and platforms with Bazel's familiar extension language. Share and re-use language rules written by the growing Bazel community.

Getting Started

Documentation

Contributing to Bazel

See CONTRIBUTING.md

Build status