Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to install apk application from my pc to my mobile android

Tags:

android

I have 2 questions:

First, I need to to install apk application from my pc to my mobile android?

Second, how I run my code in the mobile directly? I install usb driver but my pc can't detect the usb of my mobile

like image 623
mobileDeveloper Avatar asked Mar 27 '11 14:03

mobileDeveloper


People also ask

How to install an app from an APK file?

Installing the App from APK 1. Download the APK file to your PC. You can save it to the desktop or any other folder on your computer. 2. Connect your Android to the PC using a USB cable. If you don’t have the cable that came with your Android, you can... 3. Tap the USB for… notification on your ...

How to install Android apps without transferring them from computer to device?

If you’ve got lots of Android apps lying around on your computer, you can use the ADB tool to install those apps one by one on your device without having to transfer them to your device. Mahesh has been obsessed with technology since he got his first gadget a decade or so ago.

Where do I find APK files on my Android phone?

The name will vary by manufacturer and model, but it should be near the bottom of the list. The APK file will transfer to your Android. Open your Android’s file manager. It’s usually called My Files, Files, or File Browser, and you’ll typically find it in the app drawer.

How to batch install apps on Android without Google Play?

Click Yes or OK to install the app on your Android device. If you have multiple applications and prefer some easier ways to batch install apps to your Android device, there’s an easy APK Installer from PC program you can use. Only 1 click is needed to install the .apk file on your Android from PC manually without Google Play.


2 Answers

To install an APK on your mobile, you can either:

  1. Use ADB from the Android SDK, and do the following command: adb install filename.apk. Note, you'll need to enable USB debugging for this to work.
  2. Transfer the file to your device, then open it with a file manager, such as Linda File Manager.

Note, that you'll have to enable installing packages from Unknown Sources in your Applications settings.

As for getting USB to work, I suggest consulting the Android StackExchange for advice.

like image 103
Sebastian Paaske Tørholm Avatar answered Nov 09 '22 04:11

Sebastian Paaske Tørholm


1) Put the apk on your SDKCard and install file browsers like "Estrongs File Explorer", "Easy Installer", etc...

https://market.android.com/details?id=com.estrongs.android.pop&feature=search_result https://market.android.com/details?id=mobi.infolife.installer&feature=search_result

2) Go to your mobile settings - applications- debuging - and thick "USB debugging" enter image description here

like image 33
Waza_Be Avatar answered Nov 09 '22 04:11

Waza_Be