How do you install an APK file in the Android emulator?

前端 未结 30 1701
滥情空心
滥情空心 2020-11-22 14:53

I finally managed to obfuscate my Android application, now I want to test it by installing the APK file and running it on the emulator.

相关标签:
30条回答
  • 2020-11-22 15:05

    go to ADT/Android-sdk/tools directory in command prompt 1. adb install fileName.apk (Windows)

    1. ./adb install fileName.apk (Ubuntu/Linux or Mac)
    0 讨论(0)
  • 2020-11-22 15:06

    On Linux I do this:

    1. first see which devices I currently have: emulator -list-avds
    2. build the release cd android && ./gradlew assembleRelease
    3. install it at the emulated device "Nexus5" (you are inside the android directory, else use the full path to apk): adb -s '8e138a9c' install app/build/outputs/apk/app-release.apk

    Thats it. You can also use ./gradlew installRelease

    0 讨论(0)
  • 2020-11-22 15:08

    if use more than one emulator at firs use this command

    adb devices
    

    and then chose amulatur and install application

    adb -s "EMULATOR NAME" install "FILE PATH"
    adb -s emulator-5556 install C:\Users\criss\youwave\WhatsApp.apk
    
    0 讨论(0)
  • 2020-11-22 15:09

    You can simply drag and drop the .apk file of your application to the emulator and it will automatically start installing.

    Another option:


    Windows:

    1. Execute the emulator (SDK Manager.exe->Tools->Manage AVDs...->New then Start)
    2. Start the console (Windows XP), Run -> type cmd, and move to the platform-tools folder of SDK directory.
    3. Paste the APK file in the 'android-sdk\tools' or 'platform-tools' folder.
    4. Then type the following command.

    adb install [.apk path]

    Example:

    adb install C:\Users\Name\MyProject\build\Jorgesys.apk

    Linux:

    1. Copy the apk file to platform-tools in the android-sdk linux folder.
    2. Open Terminal and navigate to platform-tools folder in android-sdk.
    3. Then Execute this command -

    ./adb install FileName.apk 4. If the operation is successful (the result is displayed on the screen), then you will find your file in the launcher of your emulator.

    Mac:

    PATH=$PATH:~/Library/Android/sdk/platform-tools
    

    Example : PATH=$PATH:/users/jorgesys/eclipse/android-sdk-mac_64/tools

    Then run adb.

    Mac:

    1.Run the emulator,

    2.then copy your .apk file and paste into /Users/your_system_username/Library/Android/sdk/platform-tools,
    if you are not able to find sdk path in your mac system, do the following steps: Open finder->select Go option on top menu -> select Go to Folder option -> it will popup a window with a textfield: /Users/your_system_username/Library/Android/sdk/ -> now open platform-tools folder and paste your copied .apk file,

    1. Now open the terminal and type the following: cd Library/Android/sdk/platform-tools

    2. execute the following in your terminal: ./adb install yourapkfilename.apk if you get the following error message: error: no devices found - waiting for device, follow step 5.

    3. Run your emulator from Android Studio, once emulator active then repeat step 4, you will see the success message on your terminal.

    0 讨论(0)
  • 2020-11-22 15:09

    Start the console (Windows XP), Run -> type cmd, and move to the platform-tools folder of SDK directory.

    In case anyone wondering how to run cmd in platform-tools folder of SDK directory, if you are running a new enough version of Windows, follow the steps:

    1. Go to platform-tools through Windows Explorer.
    2. While holding shift right click and you will find the option "Open Command window here".
    3. Click on it and cmd will start in that folder.

    Hope it helps

    0 讨论(0)
  • 2020-11-22 15:10

    (TESTED ON MACOS)

    The first step is to run the emulator

    emulator -avd < avd_name>

    then use adb to install the .apk

    adb install < path to .apk file>

    If adb throws error like APK already exists or something alike. Run the adb shell while emulator is running

    adb shell

    cd data/app

    adb uninstall < apk file without using .apk>

    If adb and emulator are commands not found do following

    export PATH=$PATH://android-sdk-macosx/platform-tools://android-sdk-macosx/android-sdk-macosx/tools:

    For future use put the above line at the end of .bash_profile

    vi ~/.bash_profile

    0 讨论(0)
提交回复
热议问题