开发者

Android remotely install app

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 i开发者_运维问答t? (Installing an app remotely)


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>    


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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜