尝试导出 Android 应用程序,但项目仅导出为文件?不是一个应用程序
我复制了一个应用程序来制作一个没有广告的“专业”版本。当我导出它时,它仅以文件形式出现?不是像往常一样的 .apk 文件。有什么建议吗?
I copied an application in order to make a "pro" version, with no ads. When i export it, it comes out as only a file? Not a .apk file as usual. Any advice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Ammmmmm 也许您在导出文件名中缺少“apk”扩展名?
尝试给它加上“.zip”后缀,解压它,看看它的内容是否与通常的apk文件相同...
Ammmmmm maybe you're missing the "apk" extension on the export file name?
Try putting it a ".zip" suffix, unzip it, and see if its contents are the same as usual apk files...
在 Eclipse 的包资源管理器中,右键单击您的包。
点击Android工具>>导出签名的应用程序包,然后按照提示操作。
这就是你在做的事吗?
In eclipse, in the package explorer, right click on your package.
Click Android Tools >> Export Signed Application Package, and follow the prompts.
Is this what you are doing?
如果您使用 AVD 模拟器,并且在上次修改源代码后,您在 AVD 上至少成功启动了一次应用程序,则可以在项目的 bin 目录中找到 *.apk 文件。
您还可以阅读此处。
If you're using AVD emulator and you started at least once successful your app on AVD after your last modification of the source, you can find the *.apk file into bin directory of your project.
You can also read here.