I can no longer get my companion app to work on Android.

Hello,
I have two companion apps that haven't been receiving any data from my watch for a few months now. I don't know exactly when it stopped working because I don't use them often.

My watch is unresponsive, and my companion apps aren't receiving any information or data from my watch. When I try to connect to my watch with `mConnectIQ.getApplicationInfo(CiqAppId, iqdevice, this)`, I get no response.

I have, of course, updated Garmin Connect on my smartphone (Android 15). I'm using the latest version of the Mobile SDK for Android 2.30.

(implementation "com.garmin.connectiq:ciq-companion-app-sdk:2.3.0"), and my Epix Gen2 is also up to date (I think it's version 23.48).

I've been trying for a few weeks now, but I can't get it to work. In order, I do the following:

- I send the DOS command "adb forward tcp:7381 tcp:7381" --> it's OK, no error message, just 7381 displayed.
- I launch my program in Android Studio, on my phone via USB, with the instruction "mConnectIQ = ConnectIQ.getInstance(this, ConnectIQ.IQConnectType.TETHERED);"

- On the simulator, I make the connection "adb connection --> start" and the connection is successfully established.
- With Android Studio, I can see the simulator: onSdkReady() --> getKnownDevices() --> iqdevice = "Simulator"
So far, so good, but then it's impossible to connect:
device.getStatus().name() --> UNKNOWN,
no call to "onDeviceStatusChanged",
no response to getApplicationInfo(), even when I disconnect and reconnect to the simulator.

I've checked everything I could in my apps, I've verified the CiqAppId ten times, and they were working perfectly before.

I've tried different methods, with the simulator and actually on my watch, but nothing works.

The documentation is practically nonexistent too. Any help would be greatly appreciated, thank you!!!