Android远程安装应用程序 [英] Android remotely install app

查看:65
本文介绍了Android远程安装应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

此android应用"Plan B"声称您可以远程安装和运行它,而无需将手机放在面前.

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/

这是一种新型的android功能吗?这适用于任何Android开发人员吗?有人用过吗?(远程安装应用程序)

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

推荐答案

监视((计划B"的开发者)正在利用新的

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:

您还可以单击几下直接将应用程序直接发送到您的Android设备-无需连接.

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

查看应用程序使用的权限,您可以看到他们有能力接收SMS"消息.他们可能使用这样的方法来远程启动他们的应用.收到SMS消息后,该应用程序将启动,检查是否已收到其正在查找的特殊消息,如果已收到,则开始执行其定位功能.

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>    

这篇关于Android远程安装应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆