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
Post a Comment