xamarin.ios - How to disable bitcode in Xamarin iOS Project? -


i tried disabling bitcode in xamarin project using mtouchenablebitcode variable false in ios csproj file. still getting frameworks not built bitcode enabled errors while doing app store submission.

anyone know how disable bitcode in xamarin ios project?

i got answer microsoft support. able build application bitcode disabled adding following lines ios app project's .csproj file before closing </project> tag.

<target name="beforecodesign">   <exec command="$(_sdkdevpath)\toolchains\xcodedefault.xctoolchain\usr\bin\bitcode_strip %(_frameworks.fullpath) -r -o %(_frameworks.fullpath)" /> </target> 

Comments

Popular posts from this blog

commonjs - How to write a typescript definition file for a node module that exports a function? -

openid - Okta: Failed to get authorization code through API call -

thorough guide for profiling racket code -