问题描述
在我的应用中,我使用新的 Chartboost sdk 3.2.1
但是当我检查 uniqueIdentifier 时,它会给我错误。
In my app I use new Chartboost sdk 3.2.1But still while i checked it for uniqueIdentifier it will give me error.
请帮我解决它在appstore上提交应用程序。
Please help me to solve it to submit app on appstore.
我只是找到使用UDID的类
I just Find the class that use the UDID by
(项目目录中的终端)
find . | grep -v .svn | grep "\.a" | grep -v "\.app" | xargs grep uniqueIdentifier
并在终端中获取
二进制文件./libChartboost.a匹配
推荐答案
浪费了1.5天后我终于得到了解决方案我的申请现已提交到App Store。
After wasting 1.5 days finally I got solution and my application is now submitted to App Store.
在终端玩了很多次之后,我终于使用了这个命令
After play a lot with terminal, finally I used this command
grep -r 'uniqueIdentifier' * .[!.]*
它将在当前目录中的所有文件中搜索字符串,
递归搜索目录和文件。(也搜索隐藏)
所以之后我在终端找到了
so after that I found in terminal
- 我的项目目录中有一些额外的类,我从来没有
在我的xcode项目中使用,它们被称为 uniqueIdentifier - 此外二进制文件libChartboost.a匹配
- 二进制文件RevMobAds.framework / Re vMobAds匹配
二进制文件RevMobAds.framework / Versions / A / RevMobAds匹配
二进制文件RevMobAds.framework / Versions / Current / RevMobAds匹配
现在,对于问题1,我删除了额外的不可用类
Now, for Problem 1 I removed extra unusable classes
问题2 Chartboost
- 拖动&删除项目中的Chartboost
- 取消选中 - 将项目复制到目标组的文件夹(如果需要)
- 选择 - 为任何添加的文件夹创建群组
- 添加到目标
- Drag & drop Chartboost in project
- Uncheck -Copy items into destination group's folder(if needed)
- Select -Create groups for any added folders
- Add to targets
和问题3 RevMobAds
- 拖动&在项目中删除RevMobAds.framework
- 取消选中 - 将项目复制到目标组的文件夹(如果需要)
- 选择 - 为任何添加的文件夹创建文件夹参考
- 添加到目标
- Drag & drop RevMobAds.framework in project
- Uncheck -Copy items into destination group's folder(if needed)
- Select -Create folder references for any added folders
- Add to targets
我在两个时间内都使用了更新的第三方图书馆。
奇怪但它会起作用,现在我的应用程序已提交。希望它会帮助某人。
Strange but it will works and now my app is submitted.Hope it will help someone.
注意:请告诉我为什么当我选中 -Copy项目时,Chartboost和RebMobsads.framework会给我错误在我的项目中进入目的地组的文件夹(如果需要)。(如果有人有任何想法)
Note:Please tell me why Chartboost and RebMobsads.framework will give me error while i checked -Copy items into destination group's folder(if needed) in my project.(If anyone have any idea)
这篇关于uniqueIdentifier在chartboost中调用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!