📺Install Titan Agent on Android Box
High Earnings Guide: 1. New nodes require a 3–7 day deployment period. Please be patient—earnings will gradually stabilize after this phase. 2. Keep your device online 24/7, especially during evening peak hours (18:00–24:00 UTC+8). 3. Ensure both Agent status and Service status show as normal. If any issues occur, contact customer support promptly. → Click for more tips
Note: Root access is required
Preparation
Prepare ADB tools on your computer
Windows: Download and install Android SDK Platform Tools
Ensure adb is added to system environment variables
Download Titan Agent
Download on computer: https://pcdn.titannet.io/test4/bin/agent-android.zip
Obtain Key
Open your browser and visit:
Log in to your Titan wallet account
Find and copy your Key
Installation
Connect Device
# Connect Android box via USB
# Check device connection status
adb devices
# Enter adb shell
adb shell
# Get root access
su
Transfer Files
# Transfer files from computer to Android box
adb push agent-android.zip /sdcard/Download/
# Create directory and extract in adb shell
mkdir -p /data/.titannet
cp /sdcard/Download/agent-android.zip /data/.titannet/
cd /data/.titannet
unzip agent-android.zip
Set Permissions
# Set executable permissions
chmod +x /data/.titannet/agent
Start Titan Agent in Background
# Use nohup command for background operation
nohup /data/.titannet/agent --working-dir=/data/.titannet \
--server-url=https://test4-api.titannet.io \
--key=YOUR_KEY_HERE > /dev/null 2>&1 &
# Verify if process is running
ps | grep agent
To stop the Agent:
# Find process ID
ps | grep agent
# Stop process
kill <process_ID>
Last updated