i just wanted to share, to get your thoughts as to why the 5.0.3 version of unreal casting this error:
UATHelper: Packaging (Android (ASTC)): Z:appsrcmainjavacomepicgamesunrealGameActivity.java:763: error: cannot find symbol
registerReceiver(consoleCmdReceiver, new IntentFilter(Intent.ACTION_RUN), RECEIVER_EXPORTED);
it points at RECEIVER_EXPORTED as the symbol it cannot find, all i did was change the code:
//registerReceiver(consoleCmdReceiver, new IntentFilter(Intent.ACTION_RUN));
registerReceiver(consoleCmdReceiver, new IntentFilter(Intent.ACTION_RUN), RECEIVER_EXPORTED);
and i get this error, otherwise the app crashes since in new apis of android you are meant to state which kind of RECEIVER it uses, wether it does or not. Thanks for your help.
I tried many things, such as, changing code around and such, but idk, this issue is likely something that a more experienced java enthusiast would know easily.