Skip to content

Commit d72570b

Browse files
committed
resolve merge conflict with android.sh
1 parent 5ded152 commit d72570b

File tree

1 file changed

+15
-13
lines changed

1 file changed

+15
-13
lines changed

buildscripts/kokoro/android.sh

+15-13
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,6 @@ cat /VERSION
55

66
BASE_DIR="$(pwd)"
77

8-
# Build grpc-cronet
9-
10-
cd "$BASE_DIR/github/grpc-java/cronet"
11-
./cronet_deps.sh
12-
../gradlew --include-build .. build
13-
14-
15-
# Build grpc-android
16-
17-
cd "$BASE_DIR/github/grpc-java/android"
18-
../gradlew --include-build .. build
19-
20-
218
# Install gRPC and codegen for the Android examples
229
# (a composite gradle build can't find protoc-gen-grpc-java)
2310

@@ -36,6 +23,21 @@ ln -s "/tmp/protobuf-${PROTOBUF_VERSION}/$(uname -s)-$(uname -p)" /tmp/protobuf
3623

3724
./gradlew install
3825

26+
# Build Cronet
27+
28+
pushd cronet
29+
./cronet_deps.sh
30+
../gradlew build
31+
popd
32+
33+
# Build grpc-android
34+
35+
pushd android
36+
../gradlew build
37+
popd
38+
39+
# Build examples
40+
3941
cd ./examples/android/clientcache
4042
./gradlew build
4143
cd ../routeguide

0 commit comments

Comments
 (0)