Android remotely install app

旧街凉风 提交于 2020-01-23 11:08:48

问题


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)


回答1:


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>    



回答2:


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.



来源:https://stackoverflow.com/questions/5481488/android-remotely-install-app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!