在 Android x86 上预安装应用程序

发布于 2024-10-30 13:47:11 字数 464 浏览 3 评论 0原文

我计划在将我的应用程序发布到市场之前开始对其进行用户测试。该应用程序针对大型平板电脑。我没有资源购买硬件来让用户测试应用程序,所以我想也许我可以利用 Android x86。

有多种方法可以从启动的实时安装应用,但是我我想避免这种情况,因为几乎所有的测试人员都没有足够的技术能力来轻松地做到这一点。因此,最好的选择似乎是将应用程序的 apk 包含在 Android x86 中。

我找到了如何获取源代码并将其构建到图像中。但是,我找不到任何有关如何将我的应用程序的源代码包含在实时源代码中的说明或信息。

有人有什么想法吗?任何意见或建议将不胜感激!

I'm planning on starting user testing on my app before I release it on the market. The application is targeted to large tablets. I don't have the resources to buy the hardware to give users to test the app so I thought perhaps I could take advantage of Android x86.

There are different ways to install the app from the booted live, however i would like to avoid this as almost all of my testers will not be technically affluent to do this comfortably. Thus the best option would seem to be to include the app's apk with Android x86.

I found out how to get the source code and build it into an image. However, I can't find any tuts or information on how to include my app's source with the live source.

Does anyone have any ideas? Any comments or suggestions would be greatly appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野鹿林 2024-11-06 13:47:11

Android x86 的伟大人士帮助我解决了我的问题。这是我收到的最佳答案:

如果您只想将预构建的 apk 放入 android-x86 映像,
这很简单。只要把它放到
构建/目标/板/generic_x86/应用程序/
(对于 froyo-x86)或
device/common/app/(用于姜饼-x86)。

如果您希望使用 android-x86 构建您的应用程序,
那是另一个故事了。基本上来说,
您需要为您的应用创建一个 Android.mk。

请参阅packages/apps/*/Android.mk 作为示例。

谢谢黄志伟!

The great people at Android x86 helped me solve my question. Here is the best answer I received:

If you just want to put a prebuilt apk to android-x86 image,
that's simple. Just put it to
build/target/board/generic_x86/app/
(for froyo-x86) or
device/common/app/ (for gingerbread-x86).

If you hope to build your app with android-x86,
that's another story. Basically speaking,
you need to create an Android.mk for your app.

See packages/apps/*/Android.mk as examples.

Thanks, Chih-Wei Huang!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文