人们是否会发布他们的移动应用程序,然后添加广告代码?
刚接触移动应用程序开发和发布流程,几乎准备好发布我的第一个应用程序。现在我已经注册使用 AdMob 和其他一些供应商,但在我下载 SDK 之前他们都想要我的 android market id。这对我来说没有多大意义,开发人员肯定希望从一开始就发布带有广告的应用程序。
开发者发布应用程序后是否立即添加广告代码?另外,您发布的每个应用程序是否都需要重复下载SDK/jar文件? (我问这个是因为供应商要求您在他们的网站上添加应用程序后下载)
New to mobile app development and the release process and nearly ready to release my first app. Now I've signed up to use AdMob and some other vendors, but they all want my android market id before I download the SDK. This doesn't make much sense to me, surely developers want to release the app with the ads from the start.
Do developers release the app and then immediately add the ad code? Also, is it necessary to repeatedly to download the SDK/jar files for each app you release ? (I ask this because the vendors ask you to download after you have an app added on their site)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
应用程序的市场 ID 只是清单中声明的包名称。一种选择是将您的应用程序上传到市场,但不发布。根据我的理解,这应该“保留”你的包名称。只要你的包名称是唯一的,就应该没问题。
我都没有使用过 Admob,但我知道 Flurry SDK 每次下载都是同一个 jar。
The market ID of your app is simply its package name as declared in the manifest. One option is to upload your app to the market, but do not publish it. From my understanding, that should "reserve" your package name. As long as your package name is unique, you should be fine.
I haven't used Admob, but I know the Flurry SDK is the same jar for each download.
新的应用程序开发人员在这里。
您可以通过输入软件包名称来获取 AdMob SDK:com.example.app,并且该名称对于您的应用而言永远不会改变。您可以立即集成它,并在几分钟内看到广告。
下载 AdMob SDK,然后将其放在不会移动的文件夹中,然后在 Android 项目设置中引用它。您无需为每个应用重新下载
New App developer here.
You get the AdMob SDK by putting in your package name: com.example.app and that will never change for your app. You can integrate it right away and see ads within a few minutes.
Download the AdMob SDK and just put it in a folder somewhere that won't get moved, and just reference it in your Android Project settings. You don't need to re-download for each app