This guide covers modifying AppLinked_1.0.4 to use your custom Cockpit API by editing hardcoded URLs using MT Manager.
Prerequisites
- MT Manager installed on your device
- AppLinked_1.0.4 APK file
- Your custom Cockpit Panel URL (e.g.
https://yourdomain.com/api/applinked/)
Steps to Modify the APK
- Open the APK using MT Manager.
- Navigate to the classes.dex file and open with Dex Editor Plus.
- Select All classes for decompilation.
Modify: b/f/a/d
- Find:
const-string v2, "https://demo.cockpit.lol/api/applinked/json.php?user_id="
- Replace with:
const-string v2, "https://yourdomain.com/api/applinked/json.php?user_id="
Modify: b/f/a/h
- Find:
const-string v1, "https://demo.cockpit.lol/api/applinked/version.txt"const-string v7, "https://demo.cockpit.lol/api/applinked/applinked.apk"
- Replace with:
const-string v1, "https://yourdomain.com/api/applinked/version.txt"const-string v7, "https://yourdomain.com/api/applinked/applinked.apk"
Modify: b/f/a/m
- Find:
const-string v2, "https://demo.cockpit.lol/api/applinked/json.php?user_id="
- Replace with:
const-string v2, "https://yourdomain.com/api/applinked/json.php?user_id="
Compile, Sign, and Test
- After all changes, tap the Save button in MT Manager and then choose Compile.
- Wait for compilation to complete, then use the built-in APK Signer in MT Manager.
- Install the APK on your emulator or device.
- Test the application to ensure content loads from your new API URL.
Tip: You may need to uninstall the old version and clear app cache/data for changes to take effect.