Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
app/ | 12-May-2024 | - | 593 | 450 | ||
gradle/wrapper/ | 12-May-2024 | - | 7 | 6 | ||
.gitignore | D | 12-May-2024 | 118 | 10 | 9 | |
README.md | D | 12-May-2024 | 555 | 25 | 18 | |
build.gradle | D | 12-May-2024 | 531 | 25 | 21 | |
gradle.properties | D | 12-May-2024 | 730 | 18 | 13 | |
gradlew | D | 12-May-2024 | 4.9 KiB | 161 | 120 | |
gradlew.bat | D | 12-May-2024 | 2.3 KiB | 91 | 66 | |
settings.gradle | D | 12-May-2024 | 15 | 2 | 1 |
README.md
1gRPC on Android 2============== 3 4Note: Building the protobuf dependency for Android requires 5https://github.com/google/protobuf/pull/3878. This fix will be in the next 6protobuf release, but until then must be manually patched in to 7`third_party/protobuf` to build gRPC for Android. 8 9PREREQUISITES 10------------- 11 12- Android SDK 13- Android NDK 14- `protoc` and `grpc_cpp_plugin` binaries on the host system 15 16INSTALL 17------- 18 19The example application can be built via Android Studio or on the command line 20using `gradle`: 21 22 ```sh 23 $ ./gradlew installDebug 24 ``` 25