We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Base on documentation
We need to implement
@Override public void onResume() { MobileCore.setApplication(getApplication()); MobileCore.lifecycleStart(null); }
and
@Override public void onPause() { MobileCore.lifecyclePause(); }
for each Activity classes on Android.
Activity
However for iOS
- (void) sceneWillEnterForeground:(UIScene *)scene { [ACPCore lifecycleStart:nil]; }
- (void) sceneDidEnterBackground:(UIScene *)scene { [ACPCore lifecyclePause]; }
- (void) applicationDidEnterBackground:(UIApplication *)application { [ACPCore lifecyclePause]; }
- (void) applicationWillEnterForeground:(UIApplication *)application { [ACPCore lifecycleStart:nil]; }
I think this two implementation will have a different behaviors.
For IOS library have a global application lifecycle tracking for Android doesn't.
Is it possible to track sessions similar with iOS way? Because each navigation between activities creating a new session on Android.
The text was updated successfully, but these errors were encountered:
@shalehaha , @sbenedicadb - can you take a look at this, please?
Sorry, something went wrong.
No branches or pull requests
Base on documentation
We need to implement
and
for each
Activity
classes on Android.However for iOS
and
I think this two implementation will have a different behaviors.
For IOS library have a global application lifecycle tracking for Android doesn't.
Is it possible to track sessions similar with iOS way? Because each navigation between activities creating a new session on Android.
The text was updated successfully, but these errors were encountered: