Monday, March 5, 2012

How I can install apk automatically when the sdcard put on?


I have not any idea. How can I install apk automatically when the sdcard put on?


1 comment:

  1. You could create an app that watches for the ACTION_MEDIA_MOUNTED broadcast, then looks at external storage in a well-known spot for an APK file, then calls startActivity() with an ACTION_VIEW Intent on the path to that APK file, with the right MIME type (application/vnd.android.package-archive).

    If you are expecting this to be built into the operating system, it is not.

    ReplyDelete