如何准备APK文件以供发布方式导出?以及要设置哪些参数?
我在android中制作了一个小应用程序,我想将其发布到市场上。
首先如何从 eclipse 导出最终的 APK 并 其次AndroidManifest文件中要设置哪些参数?
请帮我。
I have made a small application in android and I want to publish it on market.
So first of all how to export final APK from eclipse and
second what are the parameters to set in AndroidManifest file?
Please, help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1) 提取签名包
引用自此处:
2) 清单
清单文件中有很多参数。您需要的主要是:
Manifest标签的参数:
是你的项目的包名。我假设你已经拥有它了。
这两个描述了您的软件版本的代码和名称。版本代码应始终为整数,版本名称可以是您喜欢的任何字符串。上传更新时,不要忘记增加版本代码。
嵌套标签
是一个标签,它指定您的应用程序使用的最低 API 级别。
仅当您需要应用程序的某些权限时,才需要嵌套标签
。此处了解有关清单文件的更多信息。
1) Extracting signed package
A quote from here:
2) Manifest
There are a lot of params in manifest file. The main ones you need is:
Parameters of manifest tag:
is the package name of your project. I assume you already have it.
These two describes the code and name of the version of your software. version code should be always an integer, and version name can be any string you like. Don't forget to increase your version code, when uploading an update.
Nested tag
<uses-sdk android:minSdkVersion="3" />
is a tag, which specifies the minimum api level your application uses.
Nested tags
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
are necessary only if you need some permissions for application.Read more about manifest file here.