Hello!
My question is about how I can access the OnNewIntent?
Some background; when a native application is launched from an intent you can fetch the intent using getDataString But if the application is set to singleTop and if application is already running the intent will have to be fetched using OnNewIntent which requires overriding the OnNewIntent. However that function is only accessible from the base class Activity and native applications extend the class NativeActivity which does not expose that function. So from a native application is there a way to access the new intent?
Any help is greatly appreciated 👍
Hello!
My question is about how I can access the OnNewIntent?
Some background; when a native application is launched from an intent you can fetch the intent using getDataString But if the application is set to
singleTopand if application is already running the intent will have to be fetched usingOnNewIntentwhich requires overriding theOnNewIntent. However that function is only accessible from the base class Activity and native applications extend the class NativeActivity which does not expose that function. So from a native application is there a way to access the new intent?Any help is greatly appreciated 👍