How do I check where my app is using IDFA

后端 未结 1 1868
时光取名叫无心
时光取名叫无心 2020-12-07 16:33

While submitting my app to the App Store, I got this message: \"Your app is using the Advertising Identifier (IDFA). You must either provide details about the IDFA usage or

相关标签:
1条回答
  • 2020-12-07 17:13

    In order to check Advertising Identifier, you need to follow the following steps:

    1. Open the terminal window. Run the following command:

      cd (drag and drop your project folder here) Your_Project_Path
      

      Now, the current working directory will be your project folder.

    2. Find all the SDK that uses "Advertising Identifier" using following commands:

      find . | grep -v .svn | grep "\.a" | grep -v "\.app" | xargs grep advertisingIdentifier
      

      or

      find . -type f | grep "\.a" | grep -v "\.app" | xargs grep advertisingIdentifier
      

      and / or

      grep -lr "advertisingIdentifier" * | grep -v .svn | grep -v .md
      
    3. After getting the list of frameworks, search for the frameworks that MATCHES the query. Remove/ Upgrade those frameworks as per your requirement.

    0 讨论(0)
提交回复
热议问题