Cross-Platform Clipboard Synchronization
Version: 1.1.6
Last Updated: January 13, 2026
- What is Hypo?
- System Requirements
- Installation
- Getting Started
- Features
- Usage
- Troubleshooting
- FAQ
- Support
Hypo is a secure, real-time clipboard synchronization app that seamlessly connects your macOS and Android devices. Copy something on one device and instantly paste it on another β no cloud storage required for most operations.
- π Secure: End-to-end encryption with AES-256-GCM
- β‘ Fast: Local network sync typically under 500ms
- π± Cross-Platform: Works between macOS and Android
- π Local First: Prefers direct device connection over cloud
- π Rich Content: Supports text, links, images, and small files
- π History: Keep track of your last 200 clipboard items
- π Search: Find any copied content instantly
- π² SMS Sync: Automatically sync incoming SMS messages to macOS (Android)
- π Battery Optimized: 60-80% reduction in battery drain when screen off
- π― MIUI/HyperOS Optimized: Automatic workarounds for Xiaomi device restrictions
- OS Version: macOS 14.0 (Sonoma) or later
- Memory: 4GB RAM minimum
- Storage: 50MB available space
- Network: Wi-Fi connection (for LAN sync and cloud fallback)
- Current Status: β Production-ready, fully functional
- OS Version: Android 8.0 (API 26) or later
(Tested on Android 8-14, HyperOS 3+) - Memory: 2GB RAM minimum
- Storage: 100MB available space
- Permissions: Clipboard access, network access, notification access
- Network: Wi-Fi connection (for LAN sync and cloud fallback)
- Current Status: β Production-ready, fully functional
- Battery: Optimized for minimal drain (60-80% reduction when screen off)
| Platform | Minimum Requirements |
|---|---|
| macOS | macOS 14.0+, 4GB RAM, 50MB storage |
| Android | Android 8.0+ (API 26), 2GB RAM, 20MB storage (release APK) |
| Network | Wi-Fi connection required for both devices |
Note: Android release APK is optimized (~15-20MB). Debug APK is larger (~47MB) for development.
- Both devices connected to internet
- Administrative access on macOS for permissions
- Android device allows installing from unknown sources (if using APK)
- 15 minutes for complete setup
-
Download Application
# Download from releases page curl -L https://github.com/callzhang/hypo/releases/latest/download/Hypo-1.0.2.zip -o Hypo-1.0.2.zip unzip Hypo-1.0.2.zip -
Remove Quarantine Attribute (Required for downloaded apps)
# macOS adds quarantine attribute when downloading from internet # This causes "app is damaged" error - remove it: xattr -d com.apple.quarantine HypoApp.app
-
Install to Applications
# Move to Applications folder sudo mv HypoApp.app /Applications/ # Make executable (if needed) chmod +x /Applications/HypoApp.app/Contents/MacOS/HypoMenuBar
-
First Launch & Permissions
# Launch from command line first time open /Applications/HypoApp.appGrant Required Permissions:
- Accessibility: System Settings β Privacy & Security β Accessibility β Add Hypo
- Network: Allow when prompted
- Notifications: System Settings β Notifications β Hypo β Allow
-
Verify Installation
- Hypo icon appears in menu bar
- Click icon β "Settings" β Check version number
- Status should show "Ready to pair"
-
Install Dependencies
# Install Xcode and command line tools xcode-select --install # Clone repository git clone https://github.com/callzhang/hypo.git cd hypo
-
Build Application Using Build Script (Recommended)
# Build macOS app (debug, default) ./scripts/build-macos.sh # Build release version ./scripts/build-macos.sh release # Clean build (removes build cache) ./scripts/build-macos.sh clean
The script will:
- Build the app using Swift Package Manager
- Create
HypoApp.appbundle (debug) orHypoApp-release.appbundle (release) - Sign the app for local development
-
Build Application Using Xcode
cd macos # Open in Xcode open HypoApp.xcworkspace # Or build from command line xcodebuild -workspace HypoApp.xcworkspace \ -scheme HypoApp \ -configuration Release \ -derivedDataPath build/
-
Install Built App
# From build script output # Debug app is built at: macos/HypoApp.app # Release app is built at: macos/HypoApp-release.app # Or from Xcode build cp -r build/Build/Products/Release/HypoApp.app /Applications/
# Create launch agent for auto-start
cat > ~/Library/LaunchAgents/com.hypo.agent.plist << 'EOF'
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.hypo.agent</string>
<key>ProgramArguments</key>
<array>
<string>/Applications/HypoApp.app/Contents/MacOS/HypoMenuBar</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
</dict>
</plist>
EOF
# Load the launch agent
launchctl load ~/Library/LaunchAgents/com.hypo.agent.plist-
Download APK
# Download latest APK curl -L https://github.com/callzhang/hypo/releases/latest/download/Hypo.1.0.2.apk \ -o Hypo.1.0.2.apk -
Enable Unknown Sources
- Android 8+: Settings β Apps & notifications β Special app access β Install unknown apps
- Select your browser/file manager β Allow from this source
-
Install Application
# Via ADB (if enabled) adb install Hypo.1.0.2.apk # Or manually: Open file manager β Navigate to APK β Tap to install
-
Grant Permissions
- Required Immediately: Storage, Network
- Required for Sync: Clipboard access (granted when app is in foreground on Android 10+)
- Optional but Recommended: SMS (for SMS auto-sync feature)
- Android 13+: Notification permission (for foreground service)
- Critical: Disable battery optimization for reliable sync
Note: On Android 10+, clipboard access is only available when the app is in the foreground. The notification ("Click to sync") allows quick access to sync clipboard content.
-
Battery Optimization (Critical)
Settings β Battery β Battery Optimization β Hypo β Don't optimizeManufacturer-Specific Settings:
Samsung:
Settings β Device care β Battery β App power management β Apps that won't be put to sleep β Add HypoXiaomi (MIUI/HyperOS):
Settings β Apps β Manage apps β Hypo β Battery saver β No restrictions Settings β Apps β Manage apps β Hypo β Autostart β EnableNote: Hypo automatically detects MIUI/HyperOS devices and applies workarounds for multicast throttling. The app will show device-specific instructions in Settings when detected.
OnePlus/OxygenOS:
Settings β Battery β Battery optimization β Hypo β Don't optimize Settings β Apps β Hypo β Advanced β Battery β Background activity β AllowHuawei:
Settings β Apps β Hypo β Battery β App launch β Manage manually β Enable all three toggles (Auto-launch, Secondary launch, Run in background)
Google Play Store β Search "Hypo Clipboard" β Install
-
Setup Development Environment
# Install OpenJDK 17 brew install openjdk@17 # Setup Android SDK (if not using Android Studio) ./scripts/setup-android-sdk.sh # Clone repository git clone https://github.com/callzhang/hypo.git cd hypo
-
Build APK Using Build Script (Recommended)
# Build debug APK (default, for development/testing) ./scripts/build-android.sh # Build release APK (optimized, ~15-20MB) ./scripts/build-android.sh release # Build both debug and release APKs ./scripts/build-android.sh both # Clean build (removes build cache) ./scripts/build-android.sh clean
Build Output:
- Debug APK:
android/app/build/outputs/apk/debug/app-debug.apk(~47MB) - Release APK:
android/app/build/outputs/apk/release/app-release.apk(~15-20MB)
- Debug APK:
-
Build APK Using Gradle Directly
cd android # Set Android SDK path (if not set) export ANDROID_SDK_ROOT=/path/to/android-sdk export JAVA_HOME=/path/to/java-17 # Build debug APK ./gradlew assembleDebug # Build release APK (optimized with R8/ProGuard) ./gradlew assembleRelease
-
Install Built APK
# Install debug APK via ADB (auto-installs if device connected, default) ./scripts/build-android.sh # Or manually install adb install android/app/build/outputs/apk/debug/app-debug.apk adb install android/app/build/outputs/apk/release/app-release.apk
Build Optimizations:
- Release builds are optimized with R8/ProGuard minification
- Only arm64-v8a ABI included in release (saves ~15MB)
- Unused dependencies removed (ML Kit, Camera libraries)
- Resource shrinking enabled
Prerequisites: Both devices on same Wi-Fi network
-
Start Pairing (macOS)
Menu Bar Icon β Pair Device (macOS will automatically advertise itself on the network) -
Pair Device (Android)
Open Hypo β Pair Device β Select "LAN" tab β Wait for macOS device to appear β Tap on the device to pair -
Verify Connection
- Both apps show "Connected" status
- Test by copying text on either device
Prerequisites: Both devices have internet connection
-
Generate Pairing Code (macOS)
Menu Bar Icon β Pair Device β Remote Pairing β Note 6-digit code (valid 60 seconds) -
Enter Code (Android)
Open Hypo β Pair Device β Enter Code β Type 6-digit code β Pair -
Verify Connection
- Connection status shows "Cloud" mode
- Test clipboard sync between devices
-
Basic Sync Test
macOS: Copy some text (βC) Android: Check if text appears in clipboard Android: Copy different text macOS: Check if text syncs back -
History Test
macOS: Menu Bar β View History β Should see recent items Android: Open app β History tab β Should see same items -
Performance Test
Copy text β Time how long sync takes Target: <500ms on LAN, <3s on cloud
macOS Checks:
# Check if app is running
ps aux | grep Hypo
# Check accessibility permission (required for macOS clipboard access)
sqlite3 /Library/Application\ Support/com.apple.TCC/TCC.db \
"SELECT * FROM access WHERE service='kTCCServiceAccessibility';"
# Check network connectivity
nc -v your-android-ip 1234 # Should show connection attemptsAndroid Checks:
# Check if service is running
adb shell dumpsys activity services | grep Hypo
# Check battery optimization status
adb shell dumpsys deviceidle whitelist | grep hypo
# Check permissions
adb shell pm list permissions -d | grep hypoSettings File Location: ~/Library/Application Support/Hypo/
Command Line Configuration:
# Set history size
defaults write com.hypo.clipboard historySize -int 500
# Enable debug logging
defaults write com.hypo.clipboard debugLogging -bool true
# Set sync timeout
defaults write com.hypo.clipboard syncTimeout -int 5000Settings Location: App β Settings menu
Key Settings:
- Sync Frequency: Auto/Manual/Scheduled
- History Retention: 50-1000 items
- Battery Optimization: Enabled/Disabled
- Network Preference: LAN Only/Cloud Fallback/Cloud Only
Advanced Configuration (via ADB):
# Enable debug mode
adb shell am start -n com.hypo.clipboard/.MainActivity \
--es "debug_mode" "true"
# Set custom sync interval
adb shell setprop persist.hypo.sync_interval 1000Manual Updates:
- Download new version from GitHub Releases
- Quit current app:
Menu Bar β Quit - Remove quarantine:
xattr -d com.apple.quarantine HypoApp.app - Replace in Applications folder
- Restart app
APK Updates:
- Download new APK from GitHub Releases
- Install over existing app (data preserved)
- Grant any new permissions
# Stop the app
killall HypoMenuBar
# Remove launch agent (if installed)
launchctl unload ~/Library/LaunchAgents/com.hypo.agent.plist 2>/dev/null || true
rm ~/Library/LaunchAgents/com.hypo.agent.plist 2>/dev/null || true
# Remove application
rm -rf /Applications/HypoApp.app
rm -rf /Applications/HypoApp-release.app
# Remove preferences and data
rm -rf ~/Library/Preferences/com.hypo.clipboard.*
rm -rf ~/Library/Application\ Support/Hypo
rm -rf ~/Library/Logs/Hypo# Via ADB
adb uninstall com.hypo.clipboard
# Or manually: Settings β Apps β Hypo β UninstallNote:
- Debug and release builds use the same package name:
com.hypo.clipboard - They share the same database and preferences
- All clipboard history and pairing keys will be permanently deleted
| Build Type | Size | Use Case |
|---|---|---|
| Debug APK | ~47MB | Development, testing, emulator |
| Release APK | ~15-20MB | Production distribution |
| Release AAB | ~12-15MB | Google Play Store (when available) |
The release APK includes the following optimizations:
- Code minification: R8/ProGuard removes unused code (~20-25MB savings)
- Resource shrinking: Unused resources removed
- ABI filtering: Only arm64-v8a included (~15MB savings)
- Dependency optimization: Removed unused libraries (ML Kit, Camera, etc.)
cd android
./gradlew bundleRelease
# Output: app/build/outputs/bundle/release/app-release.aabThe App Bundle format allows Google Play to generate optimized APKs per device, resulting in smaller downloads for end users.
-
Start Both Apps
- Launch Hypo on macOS (menu bar icon)
- Launch Hypo on Android and start sync service
-
Device Pairing (Choose One Method)
Option A: LAN Auto-Discovery (Recommended for same network)
- On macOS: Ensure Hypo is running (menu bar icon visible)
- On Android: Tap "Pair Device" β Select "LAN" tab
- Wait for your macOS device to appear in the list
- Tap on the device to pair
- Pairing completes automatically
Option B: Code Pairing (For different networks or when LAN discovery fails)
- On macOS: Click menu bar β "Pair Device"
- Note the 6-digit pairing code displayed
- On Android: Tap "Pair Device" β Select "Code" tab
- Enter the 6-digit code
- Pairing completes via cloud relay
-
Test the Connection
- Copy some text on either device
- It should appear on the other device within seconds
- Check connection status in both apps
macOS:
- Menu bar icon shows connection status
- Click icon to see clipboard history
- Search through history with βF
- Drag items from history to paste elsewhere
Android:
- Notification titled "Click to sync" provides quick access to sync clipboard
- Open app to view clipboard history
- Swipe to refresh history
- Tap items to copy them back to clipboard
Supported Content Types:
- Text: Plain text (unlimited size, but sync limited to 10MB)
- Links: URLs automatically detected and validated
- Images: PNG, JPEG, GIF, WebP up to 10MB (sync limit)
- Files: Files up to 10MB (sync limit)
Sync Behavior:
- Automatic sync within 300ms of clipboard change
- De-duplication prevents sync loops
- Throttling prevents spam (max 1 update per 300ms)
Local Network (Preferred):
- Direct device-to-device connection via Wi-Fi
- Fastest sync (typically <500ms)
- No internet required once paired
- Uses mDNS/Bonjour for discovery
Cloud Relay (Fallback):
- Secure relay server for when devices aren't on same network
- End-to-end encrypted (relay cannot read content)
- Slightly slower (typically <3s)
- Automatic fallback when LAN unavailable
Encryption:
- AES-256-GCM encryption for all clipboard data
- Unique encryption key per device pair
- Keys rotated every 30 days automatically
- No plaintext data stored on relay servers
Privacy:
- No cloud storage of clipboard content
- Relay servers only route encrypted data
- Local storage encrypted on device
- No telemetry unless opted in
History Management:
- Stores last 200 clipboard items by default
- Configurable retention (50-1000 items)
- Smart cleanup of old items
- Pin important items to prevent deletion
Search Features:
- Real-time search as you type
- Search across all content types
- Search by device source
- Search by date range
Menu Bar Controls:
- Left Click: Open clipboard history
- Right Click: Access settings and pairing
- β+Space: Quick search (when history open)
- Escape: Close history window
History Window:
- Search Bar: Type to filter items
- Content Preview: See full text/image preview
- Device Badge: Shows which device item came from
- Drag & Drop: Drag items to other apps to paste
- Double Click: Copy item back to clipboard
Keyboard Shortcuts:
βF: Focus search barβR: Refresh historyβ,: Open settingsβQ: Quit applicationβ/β: Navigate history itemsEnter: Copy selected item
Main Screen:
- History List: Scrollable list of clipboard items
- Search: Tap search icon to find items
- Sync Status: Connection indicator at top
- Menu: Access settings and pairing options
Clipboard Actions:
- Tap Item: Copy to clipboard, item moves to top of history, and view automatically scrolls to show it
- Long Press: Options menu (pin, delete, share)
- Swipe Left: Delete item
- Swipe Right: Pin/unpin item
- Pull to Refresh: Sync with other devices
- Text Selection Context Menu: Select text in any app β "Copy to Hypo" appears first in menu β Automatically copies and syncs to other devices
- Image Share Menu: Long-press image in any app β Share β "Copy to Hypo" β Automatically copies image to clipboard and syncs to other devices
Notification:
- Title: "Click to sync" - Tap to open app and sync clipboard
- Content: Shows latest clipboard content or status message
- Tap Notification: Opens app for quick clipboard sync
- Note: On Android 10+, clipboard access requires app to be in foreground. The notification provides quick access to sync content.
macOS Settings:
- General: History size, auto-start, notifications
- Sync: LAN/cloud preferences, sync frequency
- Privacy: Clear history, disable sync temporarily
- Devices: Manage paired devices, view encryption keys
- Advanced: Debug options, performance tuning
Android Settings:
- Sync Options: Enable/disable LAN and cloud sync
- History: Retention period, automatic cleanup
- Notifications: Customize notification behavior
- Battery: Optimize for battery vs. performance
- Privacy: Data retention, encryption status
- SMS Auto-Sync: Enable/disable automatic SMS copying and syncing
- Permissions: View and manage app permissions (SMS, notifications)
- MIUI/HyperOS: Automatic optimization settings (if detected)
- Text Selection: "Copy to Hypo" context menu item (appears first in text selection menu)
- Image Sharing: "Copy to Hypo" appears in share menu when sharing images (long-press image β Share)
Symptoms: Devices paired but sync not working
Solutions:
- Check both devices on same Wi-Fi network
- Restart both apps
- Check firewall settings allow Hypo
- Try re-pairing devices
- Check cloud fallback is working
Symptoms: Clipboard takes >5 seconds to sync
Solutions:
- Check Wi-Fi signal strength
- Restart router/Wi-Fi connection
- Check for network interference
- Close other network-intensive apps
- Clear clipboard history (Settings β Clear History)
Symptoms: Sync stops working after phone sleep
Solutions:
- Disable battery optimization for Hypo
- Add Hypo to "Protected Apps" (manufacturer specific)
- Ensure "Auto-start" is enabled
- Check notification permission granted
- Restart the sync service
For MIUI/HyperOS Users:
- App automatically applies workarounds for multicast throttling
- Ensure "Autostart" is enabled: Settings β Apps β Manage apps β Hypo β Autostart
- Settings screen shows device-specific instructions when MIUI/HyperOS is detected
Symptoms: macOS cannot read/write clipboard
Solutions:
- System Settings β Privacy & Security β Accessibility
- Add Hypo to accessibility apps (required for macOS clipboard access)
- Restart Hypo after granting permission
- Check System Integrity Protection not blocking
- Try running from Applications folder
Note: macOS requires Accessibility permission for clipboard access. Android does not use Accessibility service (it doesn't provide background clipboard access on Android 10+).
- Cause: Pairing code older than 60 seconds
- Solution: Generate new pairing code and try again
- Cause: Network connectivity issue
- Solution: Check internet connection and try cloud sync
- Cause: Devices have different encryption keys
- Solution: Re-pair devices to generate new shared keys
- Cause: Clipboard history storage limit reached
- Solution: Clear old history items or increase storage limit
- Use 5GHz Wi-Fi when possible
- Keep devices close to router
- Minimize network traffic during sync
- Use ethernet connection for router
- Reduce history retention period
- Disable sync during battery saver mode
- Use "Adaptive" sync frequency
- Close app when not needed
- Clear history regularly
- Reduce image quality setting
- Limit file sync to smaller sizes
- Restart apps periodically
Q: Is my clipboard data secure?
A: Yes. All data is encrypted end-to-end with AES-256-GCM. Even our relay servers cannot read your clipboard content.
Q: Does Hypo work without internet?
A: Yes, if both devices are on the same Wi-Fi network, they can sync directly without internet.
Q: How much battery does Hypo use on Android?
A: Typically less than 2% per day with optimized settings. The foreground service is designed to be battery-efficient. Battery drain is reduced by 60-80% when screen is off.
Q: Why does the notification say "Click to sync"?
A: On Android 10+, clipboard access is only available when the app is in the foreground. The notification provides quick access to open the app and sync clipboard content. Tap the notification to open Hypo and sync your clipboard.
Q: Can I sync between more than 2 devices?
A: Currently, Hypo supports pairing between 2 devices. Multi-device support is planned for a future release.
Q: Can Hypo sync SMS messages?
A: Yes! On Android, Hypo can automatically copy incoming SMS messages to the clipboard and sync them to macOS. Enable SMS permission in Settings to use this feature. Note: Android 10+ may have restrictions on SMS access.
Q: What happens if I copy a password?
A: Passwords are encrypted like any other content. However, we recommend using a dedicated password manager for sensitive credentials.
Q: Where is my data stored?
A: Clipboard history is stored locally on each device in encrypted form. Cloud relay servers never store your content.
Q: Can your company read my clipboard?
A: No. We use end-to-end encryption, so even we cannot decrypt your clipboard content.
Q: How often are encryption keys rotated?
A: Encryption keys are automatically rotated every 30 days with a 7-day grace period for smooth transition.
Q: What data do you collect?
A: By default, we collect no usage data. Optional telemetry can be enabled in settings for performance improvement.
Q: Which ports does Hypo use?
A: Hypo uses dynamic ports for LAN discovery (mDNS) and a randomly assigned port for device-to-device communication.
Q: Can I use Hypo on cellular networks?
A: Yes, using cloud relay. However, LAN sync requires both devices on the same Wi-Fi network.
Q: How large files can I sync?
A:
- Sync Limit: 10MB per item (images and files)
- Copy Limit: 50MB per item (prevents excessive disk usage)
- Items larger than 10MB cannot be synced between devices
- Items larger than 50MB cannot be copied to clipboard (but can be synced if under 10MB)
- Temporary files are automatically cleaned up after 30 seconds or when clipboard changes
Q: Does Hypo work with VPNs?
A: LAN sync may not work with VPN. Cloud relay sync should work normally with most VPN configurations.
Documentation:
- User Guide: This document
- Developer Guide: For technical users
- Architecture Overview: System design
- API Documentation: For integrators
Community Support:
- GitHub Issues: Report bugs and request features
- Discussions: Community questions and tips
- Wiki: Community-maintained guides and tips
Direct Support:
- Email: support@hypo.app
- Response time: Within 2 business days
- Include log files when reporting issues
Before Reporting:
- Check troubleshooting section above
- Search existing GitHub issues
- Try reproducing on clean install
- Gather system information
Bug Report Template:
**Device Information:**
- macOS version:
- Android version:
- Hypo version:
- Network type:
**Bug Description:**
- What you expected to happen:
- What actually happened:
- Steps to reproduce:
- Frequency: Always/Sometimes/Rare
**Logs:**
- Attach log files from both devices
- Include screenshot if UI-related
Log File Locations:
- macOS:
~/Library/Logs/Hypo/ - Android: Use "Export Logs" in Settings menu
We welcome feature requests! Please check our roadmap first, then create a GitHub issue with:
- Clear description of the feature
- Use case and benefits
- Any technical considerations
- Willingness to contribute/test
Version 1.1.5 (Stability & Release Workflow Fixes)
PairingCodenow conforms toSendable, resolving strict concurrency failures during pairing.WebSocketTransportnow locks withOSAllocatedUnfairLockto avoid contention under load.- Release builds dynamically resolve macOS/Android binary locations so tooling keeps working across machines.
- Fixed the
WebSocketTransportmessage queue race so clipboard messages are no longer dropped or replayed.
Version 1.1.0 (Current - macOS Architecture Refactor)
- TransportManager now owns peer state and persistence
- SecurityManager manages encryption key summary and UI actions
- ClipboardEventDispatcher replaces NotificationCenter for clipboard events
- Pairing flow registers devices directly (no notification dependency)
Version 1.0.6 (Nonce Reuse Fix for Dual-Send Transport)
- Fixed decryption failures when sending to both LAN and cloud simultaneously
- macOS now creates separate envelopes with unique nonces for each transport
- Prevents
AEADBadTagExceptionerrors on Android when receiving same message twice - Enhanced diagnostic logging for cloud message reception
Version 1.0.5 (Text Selection Context Menu & Clipboard Processing Improvements)
- Android text selection context menu: "Copy to Hypo" appears first
- Force clipboard processing for immediate sync from context menu
- Fixed history item copying for images/files
- Universal toast notification for all item types
- Reduced logging verbosity across all platforms
Version 1.0.2 (Build & Release Improvements)
- macOS app signing for free distribution (ad-hoc signing)
- Automatic release notes generation
- Android build optimizations (faster CI/CD builds)
- Improved backend deployment workflow
Version 1.0.1 (Production Release)
- Production-ready release
- Full clipboard sync functionality
- LAN auto-discovery and remote pairing
- End-to-end encryption (AES-256-GCM)
- Clipboard history and search
- SMS auto-sync (Android β macOS)
- MIUI/HyperOS optimization and workarounds
- Battery optimization (60-80% reduction when screen off)
- Automated build and release pipeline
- Comprehensive documentation
Version 1.0.0 (December 2025)
- Initial production release
- Device-agnostic pairing system
- Production backend deployment
- All core features implemented
Upcoming Features:
- Multi-device support (>2 devices)
- iOS support
- Large file sync via cloud storage
- Advanced clipboard filtering
- OCR for image text extraction
Last Updated: January 16, 2026
Version: 1.1.5
For Technical Support: support@hypo.app