简体   繁体   English

如何用phoneGap安装/卸载apk android?

[英]How install/ uninstall apk android with phoneGap?

有没有办法安装和卸载使用phoneGap安卓apk?

PhoneGap , which is now known as Apache Cordova , depends on the standard Android SDK for Android development. PhoneGap ,现在称为Apache Cordova ,依赖于Android开发的标准Android SDK。 As such, installation works the same way as for "native" Android applications (see the "Deploy to" sections in the Getting Started with Android guide). 因此,安装的工作方式与“原生”Android应用程序的工作方式相同(请参阅Android入门指南中的“部署到”部分)。 Besides using Eclipse, you can also use some Cordova helper scripts to deploy applications, or simply use the Android SDK's adb (un)install directly. 除了使用Eclipse之外,您还可以使用一些Cordova帮助程序脚本来部署应用程序,或者直接使用Android SDK的adb(un)安装

If you question is whether PhoneGap offers an API to programmatically (un)install an application, the answer is no. 如果您怀疑PhoneGap是否提供了以编程方式(un)安装应用程序的API,答案是否定的。 This can only be done with "native" code and some tricks . 这只能通过“原生”代码和一些技巧来完成。

You can e-mail the apk to you and open the attachment on the device. 您可以通过电子邮件将apk发送给您,并在设备上打开附件。 Android will see that the file is an android application and ask you if you want to install it on your device. Android会看到该文件是一个Android应用程序,并询问您是否要在您的设备上安装它。

Note that if you do this you have to allow third party applications to be installed on your device. 请注意,如果您这样做,则必须允许在您的设备上安装第三方应用程序。 In the developer options you have to enable applications from unkown sources. 在开发人员选项中,您必须从未知源中启用应用程序。

To uninstall you have to follow the same steps as any other application on your device. 要卸载,您必须按照与设备上任何其他应用程序相同的步骤操作。 Go to settings -> applications => find app => uninstall 转到设置 - > applications => find app => uninstall

If you have the phonegap app imported in eclipse you can run directly to the device as native android apps. 如果你有在eclipse中导入的phonegap应用程序,你可以直接运行到设备作为本机Android应用程序。

also check out: http://droidlessons.com/how-to-install-non-market-third-party-apps-on-android/ 还可以查看: http//droidlessons.com/how-to-install-non-market-third-party-apps-on-android/

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM