ios - My app was just rejected for using the Ad support framework. Which library is responsible? -


this update didn't change rejection reason. here response resolution center:

reasons program license agreement pla 3.3.12

we found app uses ios advertising identifier not include ad functionality. not comply terms of ios developer program license agreement, required app store review guidelines.

specifically, section 3.3.12 of ios developer program license agreement states:

"you , applications (and third party whom have contracted serve advertising) may use advertising identifier, , information obtained through use of advertising identifier, purpose of serving advertising. if user resets advertising identifier, agree not combine, correlate, link or otherwise associate, either directly or indirectly, prior advertising identifier , derived information reset advertising identifier."

please check code - including third-party libraries - remove instances of:

class: asidentifiermanager
selector: advertisingidentifier
framework: adsupport.framework

if planning incorporate ads in future version, please remove advertising identifier app until have included ad functionality.

to locate advertising identifier, use “nm” tool. information on “nm” tool, open terminal window , enter, “man nm.”

if not have access libraries source, may able search compiled binary using "strings" or "otool" command line tools. "strings" tool lists methods library calls, , "otool -ov" list objective-c class structures , defined methods. these techniques can narrow down problematic code resides.

the third party libraries i'm using latest version of parse.com sdk, latest version of flurry analytics, , version 2.2 of test flight. know library issue? thanks

in terminal:

  1. go root folder of project
  2. type: grep -r advertisingidentifier . (the dot @ end critical)

this recursively check every file, , give name of offending library.

(in case, flurry)


Comments

Popular posts from this blog

html - Sizing a high-res image (~8MB) to display entirely in a small div (circular, diameter 100px) -

java - IntelliJ - No such instance method -

identifier - Is it possible for an html5 document to have two ids? -