One is that For apps targeting Android 13 or higher, in each broadcast receiver of the app, explicitly indicate whether other apps can send broadcasts to it,as shown in the following code snippet
In MainActivity on 85 line, u need change:
activity?.registerReceiver(receiver, IntentFilter(AppConfig.BROADCAST_ACTION_UPDATE_UI))//hiddify
to:
activity?.registerReceiver(receiver, IntentFilter(AppConfig.BROADCAST_ACTION_UPDATE_UI), RECEIVER_EXPORTED)//hiddify
One is that For apps targeting Android 13 or higher, in each broadcast receiver of the app, explicitly indicate whether other apps can send broadcasts to it,as shown in the following code snippet
In MainActivity on 85 line, u need change: activity?.registerReceiver(receiver, IntentFilter(AppConfig.BROADCAST_ACTION_UPDATE_UI))//hiddify to: activity?.registerReceiver(receiver, IntentFilter(AppConfig.BROADCAST_ACTION_UPDATE_UI), RECEIVER_EXPORTED)//hiddify
and add: @RequiresApi(Build.VERSION_CODES.O)