5

我已经建立了一个应用程序。我通过 Eclipse APK 导出了它。

我有APK文件。我想把它寄给我爸爸(在另一个国家,所以不能做很多技术性的东西),这样他就可以安装它并查看我的进度?

如果没有在 Playstore 上获得开发帐户,我该如何做到这一点?

4

4 回答 4

4

You cannot install an unsigned application on a phone. Check out this link to see how to sign the application: unsigned APK can not be installed

Edit: This is from Google's website: http://developer.android.com/tools/publishing/app-signing.html

All applications must be signed. The system will not install an application on an emulator or a device if it is not signed.

于 2013-04-01T12:24:53.523 回答
3

您必须在设置中启用未签名应用程序的安装:

设置 -> 应用程序 -> 未知来源(允许安装非市场应用程序)

因此,您需要通过邮件或其他方式将文件发送给他,他需要进行设置修改并安装文件。

无需签署应用程序即可将其安装在手机上。如果您曾经在模拟器中运行此应用程序,.apk文件将自动在\bin您的项目文件夹的文件夹中创建。只需复制此文件/通过邮件发送给他安装。

于 2013-04-01T12:26:06.683 回答
0

Your dad has to save the apk file in his device, so he will can open it.

After opening the application will can be installed.

So, send it by email, Dropbox, or other sharing service.

Your dad has to enable installation from 'unknown sources'.

于 2013-04-01T12:24:53.830 回答
0

通过电子邮件将您的应用程序发送给您的父亲,并告诉他在以下设置后打开该 apk。以这种方式签署您的应用程序。

在此处输入图像描述

要在 Eclipse 中创建签名的 .apk:

在 Package Explorer 中选择项目,然后选择 File > Export。打开 Android 文件夹,选择导出 Android 应用程序,然后单击下一步。导出 Android 应用程序向导现在启动,它将指导您完成对应用程序进行签名的过程,包括选择用于签署 .apk 的私钥(或创建新的密钥库和私钥)的步骤。完成导出向导,您的应用程序将被编译、签名、对齐并准备好分发。”

有关签名的更多信息

于 2013-04-01T12:27:47.877 回答