3

Is there any way to confirm UDID is not accessed in pre built library?

For example: I have google Admob iOS sdk. How can I confirm that below API is not used in this library?

 [[UIDevice currentDevice] uniqueIdentifier]

Also is there any way to remove only this line of code from pre built library?

Guru
  • 21,652
  • 10
  • 63
  • 102

1 Answers1

1

You can check through terminal:

strings libSomething.a | grep uniqueIdentifier
iPhoneProcessor
  • 4,980
  • 6
  • 27
  • 49