hiddify / HiddifyNG

A V2Ray client for Android, support Xray core and v2fly core
https://t.me/hiddify
GNU General Public License v3.0
442 stars 42 forks source link

MainAcitivity Crash 7.0.0.dev2 #135

Open Byeter228 opened 5 months ago

Byeter228 commented 5 months ago

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)