English | 简体中文 | 繁體中文 | 日本語 | 한국어
This is an APK installation toolkit specifically designed for Supernote devices. Supernote cannot directly install APK files and requires sideloading via ADB (Android Debug Bridge) tool.
This project provides ready-to-use ADB tools for Windows, Linux, and Mac systems, no additional configuration needed!
- Open Settings on your Supernote
- Navigate to Security and Privacy
- Enable Sideload option
- Use a USB data cable to connect Supernote to your computer
- If Supernote shows a prompt, tap OK to allow the connection
-
Download
platform-tools-latest-windows.zipfrom this project and extract toC:\adb -
Press
Win + R, typecmd, press Enter to open Command Prompt -
Enter the following command to navigate to ADB directory:
cd C:\adb\platform-tools -
Verify Supernote is connected:
adb devices
If it shows the device serial number, connection is successful.
-
Install APK (replace the path with your APK file location):
adb install "D:\Downloads\AppName.apk"
Quick Method: Type adb install then drag the APK file into the command window and press Enter.
- Download
platform-tools-latest-darwin.zipand extract - Open Terminal and navigate to the extracted directory:
cd ~/Downloads/platform-tools
- Grant execute permission (first time only):
chmod +x adb
- Verify connection:
./adb devices
- Install APK:
./adb install ~/Downloads/AppName.apk
- Download
platform-tools-latest-linux.zipand extract - Open Terminal and navigate to the extracted directory
- Grant execute permission:
chmod +x adb
- Verify connection:
./adb devices
- Install APK:
./adb install ~/Downloads/AppName.apk
✅ Installation Complete! You can find the newly installed app in Supernote's app list.
💡 APK Download: Recommended sources are APKMirror or APKPure.
# View connected devices
adb devices
# Install APK
adb install app.apk
# Reinstall (keep app data)
adb install -r app.apk
# Uninstall app (requires package name)
adb uninstall com.example.app
# Transfer file to Supernote
adb push file.pdf /sdcard/
# Pull file from Supernote
adb pull /sdcard/file.pdfSolution:
- Confirm Supernote has "Sideload" enabled
- Check if USB cable is a data cable (not charge-only)
- Try a different USB port on your computer
- Windows users may need to install drivers (usually automatic)
Solution:
Use the -r parameter to reinstall:
adb install -r app.apkSolution:
- Check Supernote's app list
- Wait a few seconds, some apps need time to appear
- Try restarting Supernote
Solution:
- E-ink has limited animation support, this is normal
- Apps designed for reading/note-taking work better
- Turn off animations in app settings
Solution:
chmod +x adb- ADB tools are from Google's official Android Platform Tools
- This project is organized for the convenience of Supernote users
- Official download: https://developer.android.google.cn/tools/releases/platform-tools
If this project helped you, please give it a Star to show your support!