Android远程安装应用程序

发布于 2024-10-27 20:06:15 字数 338 浏览 1 评论 0原文

这款 Android 应用程序“B 计划”声称您可以远程安装和运行它,而无需将手机放在您面前。

http:// android-tips.com/remote-install-an-app-after-you-loose-your-phone-to-locate-it/

这是一种新型的 Android 功能吗?任何 Android 开发人员都可以使用此功能吗?有人用过吗? (远程安装应用程序)

This android app "Plan B" claims that you can install and run it remotely, without having the phone in front of you.

http://android-tips.com/remote-install-an-app-after-you-loose-your-phone-to-locate-it/

Is this a new type of android feature? Is this available to any android developer? Has anyone used it? (Installing an app remotely)

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

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

发布评论

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

评论(2

佞臣 2024-11-03 20:06:15

Lookout(“B 计划”的开发商)正在利用新的 Google Market 网站 提供的功能允许用户从网络将市场应用程序安装到手机上。引用 Google 移动博客

您还可以通过几次点击将应用程序直接发送到您的 Android 设备,无需任何电线。

查看应用使用的权限,您可以看到它们具有“接收短信”消息的能力。他们可能使用这样的方法来远程启动他们的应用程序。当收到短信时,应用程序启动,检查是否已收到它正在寻找的特殊消息,如果是,则开始执行其定位功能。

<receiver android:name=".SMSReceiver">
    <intent-filter>
        <action android:name="android.provider.Telephony.SMS_RECEIVED" />
    </intent-filter>
</receiver>    

Lookout (the developer of ("Plan B") is taking advantage of the ability provided by the new Google Market website that allows users to install market apps to their phones from the web. To quote from the Google Mobile Blog:

You can also send apps directly to your Android device with just a few clicks—no wires needed.

Looking at the permissions the app uses, you can see that they have the ability to "receive SMS" messages. They probably use a method like this to remotely start their app. When an SMS message is received, the app starts, checks to see if the special message it is looking for has been received, and if so, begins performing its location function.

<receiver android:name=".SMSReceiver">
    <intent-filter>
        <action android:name="android.provider.Telephony.SMS_RECEIVED" />
    </intent-filter>
</receiver>    
断念 2024-11-03 20:06:15

自今年 2 月左右推出以来,远程应用程序安装已可通过 Android Market Webstore 进行。它使用起来非常简单,一旦数据连接可用,您的设备就会与新安装的应用程序同步。

Remote app installation has been available through the Android Market Webstore since it launched around Feb this year. It's very simple to use and your device will synchronize with newly installed apps as soon as a data connection is available.

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