Android security 13.0.0 release 3
Snap for 8254899 from 1ad861b9aa8ae733a63a40f80626dbd9a75dd590 to tm-release

Change-Id: I2f4762e58b28327a471495af09400aedc9c5e5cb
tree: 38b6c9dfb13b7b099a77b85e14254419c184bc2e
  1. .github/
  2. .vscode/
  3. bazel/
  4. cmake/
  5. doc/
  6. etc/
  7. examples/
  8. include/
  9. src/
  10. summerofcode/
  11. templates/
  12. test/
  13. third_party/
  14. tools/
  15. .clang-format
  16. .clang-tidy
  17. .clang_complete
  18. .editorconfig
  19. .gitignore
  20. .istanbul.yml
  21. .pylintrc
  22. .pylintrc-tests
  23. .rspec
  24. .travis.yml
  25. .yardopts
  26. Android.bp
  27. AUTHORS
  28. BUILD
  29. build.yaml
  30. build_config.rb
  31. BUILDING.md
  32. CMakeLists.txt
  33. CODE-OF-CONDUCT.md
  34. composer.json
  35. CONCEPTS.md
  36. config.m4
  37. config.w32
  38. CONTRIBUTING.md
  39. Gemfile
  40. gRPC-C++.podspec
  41. gRPC-Core.podspec
  42. gRPC-ProtoRPC.podspec
  43. gRPC-RxLibrary.podspec
  44. grpc.bzl
  45. grpc.def
  46. grpc.gemspec
  47. grpc.gyp
  48. gRPC.podspec
  49. LICENSE
  50. Makefile
  51. MANIFEST.md
  52. METADATA
  53. NOTICE.txt
  54. OWNERS
  55. package.xml
  56. PYTHON-MANIFEST.in
  57. Rakefile
  58. README.md
  59. requirements.bazel.txt
  60. requirements.txt
  61. setup.cfg
  62. setup.py
  63. TROUBLESHOOTING.md
  64. WORKSPACE
README.md

gRPC - An RPC library and framework

gRPC is a modern, open source, high-performance remote procedure call (RPC) framework that can run anywhere. It enables client and server applications to communicate transparently, and makes it easier to build connected systems.

Join the chat at https://gitter.im/grpc/grpc

To start using gRPC

To maximize usability, gRPC supports the standard way of adding dependencies in your language of choice (if there is one). In most languages, the gRPC runtime comes in form of a package available in your language's package manager.

For instructions on how to use the language-specific gRPC runtime in your project, please refer to these documents

  • C++: follow the instructions under the src/cpp directory
  • C#: NuGet package Grpc
  • Dart: pub package grpc
  • Go: go get google.golang.org/grpc
  • Java: Use JARs from Maven Central Repository
  • Node: npm install grpc
  • Objective-C: Add gRPC-ProtoRPC dependency to podspec
  • PHP: pecl install grpc
  • Python: pip install grpcio
  • Ruby: gem install grpc
  • WebJS: follow the grpc-web instructions

You can find per-language quickstart guides and tutorials in Documentation section on grpc.io website. The code examples are available in the examples directory.

Precompiled bleeding-edge package builds of gRPC master branch's HEAD are uploaded daily to packages.grpc.io.

To start developing gRPC

Contributions are welcome!

Please read How to contribute which will guide you through the entire workflow of how to build the source code, how to run the tests and how to contribute your changes to the gRPC codebase. The document also contains info on how the contributing process works and contains best practices for creating contributions.

Troubleshooting

Sometimes things go wrong. Please check out the Troubleshooting guide if you are experiencing issues with gRPC.

Performance

See Performance dashboard for the performance numbers for the latest released version.

Concepts

See gRPC Concepts

About This Repository

This repository contains source code for gRPC libraries for multiple languages written on top of shared C core library src/core.

Libraries in different languages may be in different states of development. We are seeking contributions for all of these libraries.

LanguageSource
Shared C [core library]src/core
C++src/cpp
Rubysrc/ruby
Pythonsrc/python
PHPsrc/php
C#src/csharp
Objective-Csrc/objective-c
LanguageSource repo
Javagrpc-java
Gogrpc-go
NodeJSgrpc-node
WebJSgrpc-web
Dartgrpc-dart