iPhone 应用程序中的 Flurry
我的问题是:
1. 下载Flurry SDK时,我必须提供我的应用程序的真实名称还是可以提供任何名称?
2.有人可以提供一些如何测试Flurry的代码吗,例如我想知道我的应用程序用户的年龄。 (当用户进行身份验证时,我的应用程序中有此信息)。
感谢您的回答。
My question is :
1. when a download the Flurry SDK, must i give the real name of my app or can i give any name?
2. can some one give some code in how to test the Flurry, for example i would like to know the age of the user of my App. ( i have this information in my app when the user authenticate ).
thanks for your answers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为没有必要提供应用程序的真实名称,该名称供您识别。但您应该为相应的应用程序提供正确的 API 密钥。
首先,您将最新的 flurry 包导入到您的应用程序中,并且必须使用此代码,
然后在您想要跟踪事件的任何地方,然后将 logEvent.
例如:
这是使用 Flurry 跟踪应用程序和特定事件的过程。然后你必须登录 flurry 并找到在你的应用程序中使用过的用户数量以及他们使用的设备并找到用户的位置。但我不知道如何获取用户的个人详细信息。
谢谢!
I think there is no need to give the real name of the apps, that name for your identification. But you should give the correct API key for the corresponding application.
First you import the latest flurry package into your apps, and have to use this code,
Then wherever you want to track the event, then put the logEvent.
For Eg:
This is the procedure for trace the applications and the particular events using Flurry. Then you have to login to flurry and find the number of users have used in your apps and which device they have used and find the locations of the user. But i donno, how to get the users personal details.
Thanks!
1- 您可以在网站的 Flurry Dashboard 上提供任何名称。但是,在代码中,您必须输入从网站分配给该应用程序的正确 API。像这样的事情:
2-至于用户的年龄,我看到 SDK 标头有这样的声明:
要调用此代码,您可以执行以下操作:
1- You may give any name on Flurry Dashboard on the website. In code, however, you must enter the correct API assigned to that app from the website. Something like this:
2- As for the user's age, I see that the SDK header has this declaration:
To invoke this code, you would do something like this: