-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILDFIXES
29 lines (20 loc) · 911 Bytes
/
BUILDFIXES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
The Protocol Buffer toolchain and Cocoapods have some problems
that make manual intervention required to build this example.
To fix them perform the following steps:
1) comment out this line:
#import "transformations/GRXMappingWriter.h"
from gRPC-RxLibrary-umbrella.h. You'll see it when
you build and get an error saying "include of non-modular
header inside framework module."
2) replace any of the following failing import statements:
#import "google/cloud/speech/v1beta1/CloudSpeech.pbobjc.h"
#import "google/api/Annotations.pbobjc.h"
#import "google/longrunning/Operations.pbobjc.h"
#import "google/rpc/Status.pbobjc.h"
#import "google/protobuf/Duration.pbobjc.h"
with the corresponding imports:
#import <googleapis/CloudSpeech.pbobjc.h>
#import <googleapis/Annotations.pbobjc.h>
#import <googleapis/Operations.pbobjc.h>
#import <googleapis/Status.pbobjc.h>
#import <googleapis/Duration.pbobjc.h>