-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
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
Android Session Recordings #13267
Comments
We're working on Session Replay for Mobile, the goal is to playback sessions to diagnose UI issues, improve support, and get context for nuanced user behavior. We're interested in understanding how useful it is, the expectations you may have, etc, for example:
We'd like to understand a little bit better so we are sure that we are building a feature that people would love to use. Any feedback is appreciated, let me know if you'd be willing to trade a bit of your time for being a preview user as soon as it's out. Thanks. |
Hey you all, We have an alpha preview for Android Session Recording and we'd like to gather feedback. Let us know what you think and if there are any bugs and/or issues you may face. |
hey guys, beta session replay recording for android is not enabled to work in production? I'm doing several tests in several cases in the Android SDK. Getting and testing events. I'm a little confused about the recordings. I believe I'm configuring everything correctly. However, no recordings are arriving on my posthog dashboard. I am following all the limitations of the doc
@Override
public void onCreate() {
super.onCreate();
PostHogSessionReplayConfig replayConfig = new PostHogSessionReplayConfig();
replayConfig.setMaskAllTextInputs(false);
replayConfig.setMaskAllImages(false);
replayConfig.setCaptureLogcat(true);
replayConfig.setScreenshot(true);
PostHogAndroidConfig config = new PostHogAndroidConfig(
POSTHOG_API_KEY,
POSTHOG_HOST,
false,
false,
true,
replayConfig
);
config.setDebug(true);
config.setFlushAt(1);
config.setCaptureDeepLinks(false);
config.setCaptureApplicationLifecycleEvents(false);
config.setCaptureScreenViews(true);
config.setSessionReplay(true);
config.setPreloadFeatureFlags(true);
PostHogAndroid.setup(this, config);
} I also tried with kotlin android applications and the sdk sample itself, but I didn't get any feedback in the records. If possible, I would like to understand the current context of Android recordings. |
@thisames everything seems fine with your configuration. |
For reporting issues, just raise a new issue using the bug report template, please share all the context you have including error/stack trace, logs, your SDK config, OS version, etc. |
The Session Recording team is currently considering improving PostHog by adding the ability to capture session recordings from mobile devices running Android. This is part of work documented on https://github.com/PostHog/product-internal/issues/354.
There are many recording tools out there for web, and different tools for mobile -- but few for both. If we could unlock mobile session recordings, even with reduced functionality, it could be huge - especially for self-hosted customers who have few options in this space. Additionally, this would make PostHog more competitive with other session recording tools, such as HotJar.
🗂 Considered Goals
These goals are being considered by the Session Recording Team and we'd love to hear user feedback, as well as ideas for stretch goals or implementation. Please add to this issue!
If you like this idea, please leave a 👍 or ❤️ reaction on this post to vote for it -- your votes and feedback help us prioritize what to work on next!
The text was updated successfully, but these errors were encountered: