Skip to content

Instantly share code, notes, and snippets.

@manmal
Created September 14, 2020 08:51
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manmal/3b1471f48604d3bed08a6b6d165d6cb1 to your computer and use it in GitHub Desktop.
Save manmal/3b1471f48604d3bed08a6b6d165d6cb1 to your computer and use it in GitHub Desktop.
Find IDFA usage in 3rd party frameworks
for framework in Frameworks/*.framework; do
fname=$(basename $framework .framework)
echo $fname
otool -v -s __TEXT __objc_methname $framework/$fname | grep advertisingIdentifier
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment