美文网首页iOS Developer
关于上架app 查找广告方法

关于上架app 查找广告方法

作者: Tommyoo | 来源:发表于2016-06-28 09:58 被阅读0次

How do I check where my app is using IDFA

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.

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

After getting the list of frameworks, search for the frameworks that MATCHES the query. Remove/ Upgrade those frameworks as per your requirement.

相关文章

  • 关于上架app 查找广告方法

    How do I check where my app is using IDFA Open the termin...

  • app上架与app上架

    这个行业太有钱了,这个行业需要app 壳的开发和上架。折腾了几个月了,进展不是很好。一夜之间为了app上架白了...

  • 关于app上架评级问题

    提交上线版本被拒了,原因是 16.1- Apps that present excessively objecti...

  • App 上架后的链接网址格式

    App 上架后的链接方法 http://itunes.apple.com/cn/app/id533655318?m...

  • App 上架包预检

    App 上架包预检App 上架包预检

  • iOS打包上架($99账号)

    本文章用于App上架 一、App 上架证书和配置文件的生成--》IPA包(用于App上架审核、App任意手机测试)...

  • Apple开发常见问题

    AppStore iOS App上架流程(2016详细版)ios应用下架方法 ios转让 简书ios转让 CSDN...

  • App上架

    之前写了真机测试的文章!但只是《个人账号 真机测试》。然后在后面,又翻出了以前总结的截图,写了一篇《开发者账号 真...

  • app上架

    一、配置证书 1、添加APPID 2、配置推送的开发证书(dev)和生产证书(dis)(如果有的话) 3、配置开发...

  • app上架

    App最新上架流程梳理 一个app从研发到提测最后到上架这是一个完整的产品周期,需要一套与之相对应的流程来保证质量...

网友评论

    本文标题:关于上架app 查找广告方法

    本文链接:https://www.haomeiwen.com/subject/qhkgdttx.html