I want to install the apk from android market into my android device through code.
Is there any solution to do this operation.
|
I want to install the apk from android market into my android device through code. Is there any solution to do this operation. |
||||
|
|
|
I have heard that you if you copy the apk into the sdcards folder:
Then the app is installed but you would probably need to be root, simple enough to create an app to do it but I am not sure if it will work. Other than that, I do not believe you can, otherwise apps like AppBrain would do it. Hope that helps. |
|||
|
|
|
I'm not sure what you mean by "install through code". If you have an .apk stored on your Windows/Mac/Linux machine and you need to install it onto your Android device, I would use Android Debug Bridge. It doesn't require active inputs from your Android device but you have to make sure that
That was the hard part. ADB is the easiest command-line program you'll use on your computer. To install an .apk you simply invoke...
...replacing *C:\AppsFolder\Name_of_App.apk* with the directory and filename of your actual .apk -- the destination directory is selected automatically on your android device. If you want to select the destination directory...
...note the space between .apk and /system (or /data). This isn't a step-by-step how-to...you'll want to Google an ADB manpage and get more than just the highlights. |
||||
|
|
|
For example i am installing Photoshop Express through code in android.
For any other app you just need to change the package name that is mentioned after id. It works for me perfectly. Try it. |
|||
|
|
|
-- Bill the Lizard --
I think you should re-read the question, answers and comments, in the link you gave me, and consider the opinion of the people there, while reading this page, if you don't like it, then don't up vote it, but deletion is just wrong, because the post does answer the question and code sample to implement it as reference! -- ANSWER -- I've just dealt with that issue, You need to check the details of your application on the market, determine whether an upgrade is mandatory, and then prompt the user to upgrade, and refer them to the Play-Store to the app, this is my full solution. |
||||
|
|