Install Apps and Transfer Files on Cloud Phone

Complete tutorial on installing apps and transferring files on Hive Cloud Box cloud phone, supporting APK drag-and-drop installation, file manager transfer, ADB push and other methods.

Last updated:

Feature Overview

Hive Cloud Box supports multiple methods to install apps and transfer files to cloud phones, including drag-and-drop installation, file manager upload, ADB push and more, meeting different usage habits and scenario needs.

Install Apps

The simplest and fastest installation method:

  1. Prepare the APK installation package on your computer
  2. Drag the APK file directly into the NestBrowser screen cast window
  3. The system automatically recognizes and pops up the installation confirmation dialog
  4. Click “Install”, wait for installation to complete

After dragging APK file to the window, the system will automatically parse the package name and push to the cloud phone, no need to manually select the target device.

Method 2: File Manager Installation

  1. Open “File Manager” in NestBrowser screen cast
  2. Go to “Internal Storage → Download” or “Internal Storage → Documents” directory
  3. Click “Local Upload” or “Cloud Download” to get APK file
  4. Click the APK file to directly trigger the system installer

Method 3: ADB Installation

Suitable for automation scripts or batch installation scenarios:

# Connect to cloud phone
adb connect cloudPhoneIP:port

# Install APK
adb -s cloudPhoneIP:port install appPackageName.apk

# Example
adb -s 192.168.0.100:12001 install myapp.apk

Transfer Files

Drag and Drop Transfer

  1. Drag files (images, videos, documents, etc.) into the screen cast window
  2. The system automatically pushes to the corresponding directory based on file type:
File TypePush Directory
Images (jpg/png/gif)/sdcard/Picture/
Videos (mp4/avi/mkv)/sdcard/DCIM/
Documents (pdf/doc/txt)/sdcard/Download/
Other files/sdcard/Download/

File Manager Transfer

  1. Open “File Manager” in the cloud phone
  2. Go to “Local Storage” or “SD Card
  3. Long-press the file, select “Share → Send to Computer” or use other sharing methods

ADB Transfer

Push files via ADB command:

# Push file to cloud phone
adb -s cloudPhoneIP:port push localFilePath /sdcard/targetPath

# Example: Push video to cloud phone
adb -s 192.168.0.100:12001 push ~/video.mp4 /sdcard/DCIM/video.mp4

# Pull file from cloud phone to computer
adb -s cloudPhoneIP:port pull /sdcard/Picture/xxx.png localDirectory/

Batch App Installation

In NestBrowser cloud phone list:

  1. Check multiple target cloud phones
  2. Click “Batch Operations → Install App
  3. Select local APK file
  4. Click “Confirm”, the app automatically distributes and installs to all selected cloud phones

Notes

  • APK Compatibility: Ensure the APK file is compatible with the cloud phone Android version
  • Storage Space: Confirm cloud phone has sufficient storage space before installation
  • Permission Grant: The first time running an app may require granting storage, camera and other permissions
  • File Size: When transferring large files via drag and drop, please ensure network connection is stable

FAQ

Q: App not responding after drag-and-drop installation?

  • Check if the APK file is complete (you can re-download)
  • Confirm the cloud phone Android version supports the app
  • Try manually opening app management in the cloud phone to check installation status

Q: What to do if file is pushed to wrong directory?

In the cloud phone file manager, long-press the file and select “Move” or “Copy” to adjust the storage location.

Q: How to handle batch installation failures for some devices?

You can view the installation status of each device in the batch operation results, and retry individually for failed devices.

Free Trial Contact Us Send Email