mirror of https://github.com/grpc/grpc-java.git
doc: fix version bug in documentation/android-channel-builder.md
This commit is contained in:
parent
188b4d1e51
commit
79bc50c171
|
@ -36,7 +36,6 @@ $ VERSION_FILES=(
|
|||
android-interop-testing/app/build.gradle
|
||||
core/src/main/java/io/grpc/internal/GrpcUtil.java
|
||||
cronet/build.gradle
|
||||
documentation/android-channel-builder.md
|
||||
examples/build.gradle
|
||||
examples/pom.xml
|
||||
examples/android/clientcache/app/build.gradle
|
||||
|
@ -119,7 +118,8 @@ Tagging the Release
|
|||
$ git checkout -b release
|
||||
# Bump documented versions. Don't forget protobuf version
|
||||
$ ${EDITOR:-nano -w} README.md
|
||||
$ git commit -a -m "Update README to reference $MAJOR.$MINOR.$PATCH"
|
||||
$ ${EDITOR:-nano -w} documentation/android-channel-builder.md
|
||||
$ git commit -a -m "Update README etc to reference $MAJOR.$MINOR.$PATCH"
|
||||
```
|
||||
3. Change root build files to remove "-SNAPSHOT" for the next release version
|
||||
(e.g. `0.7.0`). Commit the result and make a tag:
|
||||
|
|
|
@ -36,8 +36,8 @@ In your `build.gradle` file, include a dependency on both `grpc-android` and
|
|||
`grpc-okhttp`:
|
||||
|
||||
```
|
||||
implementation 'io.grpc:grpc-android:1.23.0' // CURRENT_GRPC_VERSION
|
||||
implementation 'io.grpc:grpc-okhttp:1.23.0' // CURRENT_GRPC_VERSION
|
||||
implementation 'io.grpc:grpc-android:1.22.0'
|
||||
implementation 'io.grpc:grpc-okhttp:1.22.0'
|
||||
```
|
||||
|
||||
You will also need permission to access the device's network state in your
|
||||
|
|
Loading…
Reference in New Issue