google cloud endpoints v2 - GTLRObject not found -


i trying link google cloud endpoint library ios application. using google cloudendpoint framework 2(migrating framework version 1) , compiling source files directly application.

. when try build application error "gtlrobject not found". created google cloud endpoint ios client library using discovery document , service generator described here. https://github.com/google/google-api-objectivec-client-for-rest

my application-bridging-header.h file this

#ifndef myapp_bridging_header_h #define myapp_bridging_header_h  #import "gtlrcloudendpoint.h"  #endif /* myapp_bridging_header_h */ 

my header search path includes following -

enter image description here

i have google cloud endpoints in lib

enter image description here

my gtlrcloudendpoint.h has following code // note: file generated servicegenerator.

// ------------------------------------------------------------------ ---------- // api: //   cloudendpoint/v1.0 // description: //   api  #import "gtlrcloudendpointobjects.h" #import "gtlrcloudendpointquery.h" #import "gtlrcloudendpointservice.h" 

my gtlrcloudendpointobject.h throwing error @ statement

// note: file generated servicegenerator.  // ------------------------------------------------------------------ ---------- // api: //   cloudendpoint/v1.0 // description: //   api  #if gtlr_built_as_framework   #import "gtlr/gtlrobject.h" #else   #import "gtlrobject.h"                // statement throwing   error #endif 


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -