iOS Build Environment Help Center

Adding optional embedded binary

append delete TopCog

I am having some trouble with the AppTrackingTransparency framework crashing my app for a number of users.

I have identified the solution, as described here:
https://developer.apple.com/forums/thread/659733

The relevant bit is the last post:

Remember to make the framework optional in Build Phases -> Link Binary With Libraries to support older iOS versions

How can I accomplish this with the iOS Project Builder?

Thanks!

:: @TopCog added on 05 Jul ’22 · 14:46

In case it's relevant, the actual crash my users get is this:
dyld: Library not loaded: /System/Library/Frameworks/AppTrackingTransparency.framework/AppTrackingTransparency

And another thread describing said problem and the same solution I mentioned above:
https://stackoverflow.com/questions/64472144/ios-13-library-not-loaded-apptrackingtransparency-framework-apptrackingtransp

Reply RSS

Replies

append delete #1. Pierre-Marie Baty

Hello

Sure. This is accomplished by telling the linker this framework is optional, by using the -weak_framework keyword instead of the -framework one.

See https://developer.apple.com/library/archive/documentation/MacOSX/Conceptual/BPFrameworks/Concepts/WeakLinking.html (bottom of page)

And the -weak_framework option here: http://www.manpagez.com/man/1/ld64/Xcode-5.0.php

I believe that's all you need, but let me know if it wasn't enough.

append delete #2. TopCog

Terrific, thank you!

I think I was thrown off in thinking that I need to use the "Embedded binaries" checkbox. Makes sense now though - cheers!

append delete #3. Pierre-Marie Baty

Embedded binaries are a different thing, they're used in mechanisms that belong and are controlled 100% by the app.

Here, that weak linking thing is rather a feature of the OS's program loader's dynamic linker.

append delete #4. TopCog

Hey again. Unfortunely, adding this linker flag does not resolve the error. (I can't actually reproduce the issue myself at the moment, which is why there is a delay in this post; I need to get a hold of an older iPhone to test on.)

I have a theory: the AppTrackingTransparency framework is being added by default somewhere; is it possible that the -weak_framework flag is being overwritten (or not being applied) due to the default -framework flag?

I did a quick search, and found that the file LDFlags.txt in the \Temp\build.cmd file has the -framework flag, and NOT the -weak_framework flag. Here is the full file: https://pastebin.com/iVB1GXfH

Is there anyway I can check that the -weak_framework flag is actually being used by the builder?

append delete #5. Pierre-Marie Baty

OK I see. This sequence of -framework flags is set by the .pbxproj file parser. So it won't take your change because the Xcode project file tells it that this framework isn't optional at all ! Kind of a chicken and egg problem.

I could tell you to modify your Xcode project file by hand with notepad, but beware, that's some dirty business :-/

Another option would be to use otool or install_name_tool in a pre-packaging script, to "correct" what the linker did. The idea would be to delete the "strong linking" load command reference to AppTrackingTransparency in your app's binary, then add it again but under a "weak linking" one.

Which option would you like me to help you with ?

append delete #6. TopCog

A pre-packaging script sounds great (the more automation the better)!

Or, would it be possible to run a post-processing script in Unity? I guess it probably accomplishes the same thing. Any help with either would be super!

append delete #7. Pierre-Marie Baty

Oh, yes, the post-processing way in Unity would definitely be the cleanest of all !

Basically, you need to flag that framework as optional in the Xcode project file that Unity generates. I believe Unity has some API to manipulate Xcode project files, but I never used them.

Basically, you need to locate the framework you want to flag in the file and set it an attribute. E.g. in this example taken from the wild wild web :

%
		018D55E216605FBC005DE12D /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 018D55E116605FBC005DE12D /* StoreKit.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
%

Of course on your machine the framework reference will have a different GUID, but that's just so that you see where to change and what.

append delete #8. TopCog

Sweet, I can work with that! I'll be submitting the update with this fix tonight.

By the way, my app, Tap Wizard 2, was Game of the Day in most countries last Sunday! :-)

Cheers!

append delete #9. Pierre-Marie Baty

Congratulations !

append delete #10. TopCog

Sorry to keep bothering you about this: I'm using this code in a unity post process script:

project.RemoveFrameworkFromProject(project.GetUnityMainTargetGuid(), "AppTrackingTransparency.framework");
project.AddFrameworkToProject(project.GetUnityMainTargetGuid(), "AppTrackingTransparency.framework", true);
project.WriteToFile(projectPath);

I confirmed that the project.pbxproj file is correctly showing the weak link. But, after building, the LDFLAGS.txt file still shows the strong link flag. Is that ok?

append delete #11. Pierre-Marie Baty

Did you do a thorough rebuild ?

Normally when you call pbxprojparse this way:

% in cmd.exe
"%IOSUNITYBUILDER_PATH%\Toolchain\pbxprojparse.exe" "path\to\Unity-iPhone.xcodeproj\project.pbxproj" -frameworks
%

you should get the list of framework-related linker flags, in the form:

%
-framework XXXXX
-weak_framework YYYYY
%

Do you get something different ? If yes, probably your modification was done at the wrong place.

append delete #12. TopCog

Thanks for the extra info! I actually removed the UnityMediation Pod and reverted to plain UnityAds. This resolved the issue completely (LDFlags.txt no longer shows the strong link flag - or any link flag for that matter). So I think the UnityMediation pod has some bug in it, where they are not properly checking if the framework exists.

If I decide to go back to UnityMediation, or have this issue come up again, I'll follow your latest advice here to confirm the linker flags. Thanks!!!

append delete #13. Pierre-Marie Baty

Well, that's possible. Pods are usually community-contributed addons, of very variable quality.

Nonetheless, I'm certain a proper modification to the project.pbxproj file done at the right place would have solved it. You might have modified a framework's PBXFileReference that was affected to either the wrong build target, or the wrong build configuration.

Reply

(Leave this as-is, it’s a trap!)

There is no need to “register”, just enter the same name + password of your choice every time.

Pro tip: Use markup to add links, quotes and more.

Moderators: Pierre-Marie Baty