Skip to content

Native Share follow ups #59239

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

Conversation

289Adam289
Copy link
Contributor

@289Adam289 289Adam289 commented Mar 27, 2025

This pr fixes linked issues:

  • swaps image preview component form ImageView to Image this fixes problem with blank image preview
  • fixes attachment size errors
  • makes sure that errors on root screen will be called only once

It also fixes navigation issue when sharing text on android

Explanation of Change

Fixed Issues

$ #59017
$ #59020
$ #59022
PROPOSAL:

Tests

Attachement preview bug:

  1. Share file with image extension (e.g jpg)
  2. navigate to Share tab
  3. Verify that preview is visible no bugs appear and it's impossible to swipe down the image
  4. Verify that tapping on the preview opens attachment modal

Size error:

  1. Share large file. More than 24MB
  2. Verify that error appears. And app navigates to /home route

Error appears twice:

  1. Share file that triggers any error (e.g. file larger than 24MB, wrong extension, corrupted image)
  2. Verify that error appears
  3. Background the app
  4. Foreground the app
  5. Verify that error does not appear again
  • Verify that no errors appear in the JS console

Offline tests

QA Steps

Same as tests
// TODO: These must be filled out, or the issue title must include "[No QA]."

  • Verify that no errors appear in the JS console

PR Author Checklist

  • I linked the correct issue in the ### Fixed Issues section above
  • I wrote clear testing steps that cover the changes made in this PR
    • I added steps for local testing in the Tests section
    • I added steps for the expected offline behavior in the Offline steps section
    • I added steps for Staging and/or Production testing in the QA steps section
    • I added steps to cover failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
    • I tested this PR with a High Traffic account against the staging or production API to ensure there are no regressions (e.g. long loading states that impact usability).
  • I included screenshots or videos for tests on all platforms
  • I ran the tests on all platforms & verified they passed on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • I verified there are no console errors (if there's a console error not related to the PR, report it or open an issue for it to be fixed)
  • I followed proper code patterns (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick)
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
      • If any non-english text was added/modified, I used JaimeGPT to get English > Spanish translation. I then posted it in #expensify-open-source and it was approved by an internal Expensify engineer. Link to Slack message:
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I followed the guidelines as stated in the Review Guidelines
  • I tested other components that can be impacted by my changes (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar are working as expected)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.ts or at the top of the file that uses the constant) are defined as such
  • I verified that if a function's arguments changed that all usages have also been updated correctly
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG))
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the UI (e.g. new buttons, new UI components, changing the padding/spacing/sizing, moving components, etc) or modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label and/or tagged @Expensify/design so the design team can review the changes.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • I added unit tests for any new feature or bug fix in this PR to help automatically prevent regressions in this user flow.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.

Screenshots/Videos

Android: Native
Screen.Recording.2025-03-27.at.18.01.07.mov
Android: mWeb Chrome
iOS: Native
Screen.Recording.2025-03-27.at.17.57.37.mov
iOS: mWeb Safari
MacOS: Chrome / Safari
MacOS: Desktop

@289Adam289 289Adam289 marked this pull request as ready for review March 27, 2025 17:21
@289Adam289 289Adam289 requested a review from a team as a code owner March 27, 2025 17:21
@melvin-bot melvin-bot bot requested a review from shubham1206agra March 27, 2025 17:21
Copy link

melvin-bot bot commented Mar 27, 2025

@shubham1206agra Please copy/paste the Reviewer Checklist from here into a new comment on this PR and complete it. If you have the K2 extension, you can simply click: [this button]

@melvin-bot melvin-bot bot removed the request for review from a team March 27, 2025 17:21
@289Adam289
Copy link
Contributor Author

The pr is ready to review

cc @grgia @shubham1206agra who worked on the original Native Share PR

@grgia grgia self-requested a review March 28, 2025 09:46
Copy link
Contributor

🚧 @grgia has triggered a test app build. You can view the workflow run here.

This comment has been minimized.

@grgia
Copy link
Contributor

grgia commented Mar 28, 2025

Hmm looks like there may be some build fails here?

@289Adam289
Copy link
Contributor Author

289Adam289 commented Mar 28, 2025

Looking at the build errors that's probably because of importing react-native-fs in non native files. Fix should not be hard. The android HybridApp error might be unrelated.

@289Adam289
Copy link
Contributor Author

@grgia Should be fixed

Copy link
Contributor

🚧 @grgia has triggered a test app build. You can view the workflow run here.

Copy link
Contributor

🧪🧪 Use the links below to test this adhoc build on Android, iOS, Desktop, and Web. Happy testing! 🧪🧪

Android 🤖 iOS 🍎
❌ FAILED ❌ ❌ FAILED ❌
The QR code can't be generated, because the Android build failed The QR code can't be generated, because the iOS build failed
Android Hybrid 🤖🔄 iOS Hybrid 🍎🔄
N/A N/A
N/A N/A
Desktop 💻 Web 🕸️
https://ad-hoc-expensify-cash.s3.amazonaws.com/desktop/59239/NewExpensify.dmg https://59239.pr-testing.expensify.com
Desktop Web

👀 View the workflow run that generated this build 👀

@289Adam289
Copy link
Contributor Author

I am not sure what is causing the Hybrid Android build fail. I hope that merging main will help.

Copy link
Contributor

🚧 @grgia has triggered a test app build. You can view the workflow run here.

Copy link
Contributor

🧪🧪 Use the links below to test this adhoc build on Android, iOS, Desktop, and Web. Happy testing! 🧪🧪

Android 🤖 iOS 🍎
Android 🤖🔄 iOS 🍎🔄
https://ad-hoc-expensify-cash.s3.amazonaws.com/android/59239-hybrid/index.html https://ad-hoc-expensify-cash.s3.amazonaws.com/ios/59239-hybrid/index.html
Android iOS
Desktop 💻 Web 🕸️
https://ad-hoc-expensify-cash.s3.amazonaws.com/desktop/59239/NewExpensify.dmg https://59239.pr-testing.expensify.com
Desktop Web

👀 View the workflow run that generated this build 👀

@@ -68,7 +68,7 @@ function ShareDetailsPage({
if (isTextShared) {
addComment(report.reportID, message);
const routeToNavigate = ROUTES.REPORT_WITH_ID.getRoute(reportOrAccountID);
Navigation.navigate(routeToNavigate);
Navigation.navigate(routeToNavigate, {forceReplace: true});
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what does this change do?

Copy link
Contributor Author

@289Adam289 289Adam289 Apr 1, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, I forgot to comment on this line. It fixes the problem with navigation I've fixed before but I forgot about the sharing plain text case. This way when we share (text or file) and click back button we wont end up in the share flow again.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you!

grgia
grgia previously approved these changes Apr 1, 2025
Copy link
Contributor

@grgia grgia left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code LGTM, minor Q for documentation sake

@grgia
Copy link
Contributor

grgia commented Apr 1, 2025

@shubham1206agra ready for you 🙏

@grgia
Copy link
Contributor

grgia commented Apr 3, 2025

@shubham1206agra bump

@grgia
Copy link
Contributor

grgia commented Apr 7, 2025

@shubham1206agra are you able to take this one?

@shubham1206agra
Copy link
Contributor

@grgia Can you trigger adhoc build here?

@grgia
Copy link
Contributor

grgia commented Apr 7, 2025

@shubham1206agra
Copy link
Contributor

Screen.Recording.2025-04-08.at.8.33.11.PM.mov

BUG: Able to move message input on dragging.

@shubham1206agra
Copy link
Contributor

BUG: I sometimes see the error modal twice. It's hard to repro, but I got this issue twice.

@shubham1206agra
Copy link
Contributor

Reviewer Checklist

  • I have verified the author checklist is complete (all boxes are checked off).
  • I verified the correct issue is linked in the ### Fixed Issues section above
  • I verified testing steps are clear and they cover the changes made in this PR
    • I verified the steps for local testing are in the Tests section
    • I verified the steps for Staging and/or Production testing are in the QA steps section
    • I verified the steps cover any possible failure scenarios (i.e. verify an input displays the correct error message if the entered data is not correct)
    • I turned off my network connection and tested it while offline to ensure it matches the expected behavior (i.e. verify the default avatar icon is displayed if app is offline)
  • I checked that screenshots or videos are included for tests on all platforms
  • I included screenshots or videos for tests on all platforms
  • I verified tests pass on all platforms & I tested again on:
    • Android: Native
    • Android: mWeb Chrome
    • iOS: Native
    • iOS: mWeb Safari
    • MacOS: Chrome / Safari
    • MacOS: Desktop
  • If there are any errors in the console that are unrelated to this PR, I either fixed them (preferred) or linked to where I reported them in Slack
  • I verified proper code patterns were followed (see Reviewing the code)
    • I verified that any callback methods that were added or modified are named for what the method does and never what callback they handle (i.e. toggleReport and not onIconClick).
    • I verified that comments were added to code that is not self explanatory
    • I verified that any new or modified comments were clear, correct English, and explained "why" the code was doing something instead of only explaining "what" the code was doing.
    • I verified any copy / text shown in the product is localized by adding it to src/languages/* files and using the translation method
    • I verified all numbers, amounts, dates and phone numbers shown in the product are using the localization methods
    • I verified any copy / text that was added to the app is grammatically correct in English. It adheres to proper capitalization guidelines (note: only the first word of header/labels should be capitalized), and is either coming verbatim from figma or has been approved by marketing (in order to get marketing approval, ask the Bug Zero team member to add the Waiting for copy label to the issue)
    • I verified proper file naming conventions were followed for any new files or renamed files. All non-platform specific files are named after what they export and are not named "index.js". All platform-specific files are named for the platform the code supports as outlined in the README.
    • I verified the JSDocs style guidelines (in STYLE.md) were followed
  • If a new code pattern is added I verified it was agreed to be used by multiple Expensify engineers
  • I verified that this PR follows the guidelines as stated in the Review Guidelines
  • I verified other components that can be impacted by these changes have been tested, and I retested again (i.e. if the PR modifies a shared library or component like Avatar, I verified the components using Avatar have been tested & I retested again)
  • I verified all code is DRY (the PR doesn't include any logic written more than once, with the exception of tests)
  • I verified any variables that can be defined as constants (ie. in CONST.ts or at the top of the file that uses the constant) are defined as such
  • If a new component is created I verified that:
    • A similar component doesn't exist in the codebase
    • All props are defined accurately and each prop has a /** comment above it */
    • The file is named correctly
    • The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone
    • The only data being stored in the state is data necessary for rendering and nothing else
    • For Class Components, any internal methods passed to components event handlers are bound to this properly so there are no scoping issues (i.e. for onClick={this.submit} the method this.submit should be bound to this in the constructor)
    • Any internal methods bound to this are necessary to be bound (i.e. avoid this.submit = this.submit.bind(this); if this.submit is never passed to a component event handler like onClick)
    • All JSX used for rendering exists in the render method
    • The component has the minimum amount of code necessary for its purpose, and it is broken down into smaller components in order to separate concerns and functions
  • If any new file was added I verified that:
    • The file has a description of what it does and/or why is needed at the top of the file if the code is not self explanatory
  • If a new CSS style is added I verified that:
    • A similar style doesn't already exist
    • The style can't be created with an existing StyleUtils function (i.e. StyleUtils.getBackgroundAndBorderStyle(theme.componentBG)
  • If the PR modifies code that runs when editing or sending messages, I tested and verified there is no unexpected behavior for all supported markdown - URLs, single line code, code blocks, quotes, headings, bold, strikethrough, and italic.
  • If the PR modifies a generic component, I tested and verified that those changes do not break usages of that component in the rest of the App (i.e. if a shared library or component like Avatar is modified, I verified that Avatar is working as expected in all cases)
  • If the PR modifies a component related to any of the existing Storybook stories, I tested and verified all stories for that component are still working as expected.
  • If the PR modifies a component or page that can be accessed by a direct deeplink, I verified that the code functions as expected when the deeplink is used - from a logged in and logged out account.
  • If the PR modifies the UI (e.g. new buttons, new UI components, changing the padding/spacing/sizing, moving components, etc) or modifies the form input styles:
    • I verified that all the inputs inside a form are aligned with each other.
    • I added Design label and/or tagged @Expensify/design so the design team can review the changes.
  • If a new page is added, I verified it's using the ScrollView component to make it scrollable when more elements are added to the page.
  • For any bug fix or new feature in this PR, I verified that sufficient unit tests are included to prevent regressions in this flow.
  • If the main branch was merged into this PR after a review, I tested again and verified the outcome was still expected according to the Test steps.
  • I have checked off every checkbox in the PR reviewer checklist, including those that don't apply to this PR.

Screenshots/Videos

Android: Native
Screen.Recording.2025-04-11.at.11.08.40.PM.mov
iOS: Native
Screen.Recording.2025-04-11.at.10.07.59.PM.mov

@melvin-bot melvin-bot bot requested a review from grgia April 11, 2025 17:41
grgia
grgia previously approved these changes Apr 14, 2025
@grgia
Copy link
Contributor

grgia commented Apr 14, 2025

@289Adam289 could you fix conflicts?

Also do we need to merge mobile PR first?

@289Adam289
Copy link
Contributor Author

The mobile pr is connected to a different pr. This one should work on it's own. Let me just fix the conflicts and we are good to merge here.

@289Adam289
Copy link
Contributor Author

@grgia once the checks pass we are good to go

@289Adam289
Copy link
Contributor Author

@grgia Would you mind starting the perf-test workflow again? The fail was unrelated and should be fixed now

@grgia
Copy link
Contributor

grgia commented Apr 14, 2025

@289Adam289 retriggered again

@grgia grgia merged commit 148c3f7 into Expensify:main Apr 16, 2025
15 checks passed
@OSBotify
Copy link
Contributor

✋ This PR was not deployed to staging yet because QA is ongoing. It will be automatically deployed to staging after the next production release.

@github-actions github-actions bot added the DeployBlockerCash This issue or pull request should block deployment label Apr 16, 2025
Copy link
Contributor

Performance Comparison Report 📊 (1/4)

⚠️ Some tests did not pass successfully, so some results are omitted from final report: Linking

Significant Changes To Duration

Name Duration
App start time contentAppeared_To_screenTTI 1055.065 ms → 1188.843 ms (+133.778 ms, +12.7%) 🔴
App start time TTI 1736.482 ms → 1871.573 ms (+135.090 ms, +7.8%) 🔴
Show details
Name Duration
App start time contentAppeared_To_screenTTI Baseline
Mean: 1055.065 ms
Stdev: 235.451 ms (22.3%)
Runs: 597.151062999852 612.8677580002695 625.0086759999394 634.2372740004212 645.118710000068 661.3304509995505 661.4037410002202 667.5430269995704 677.1078650001436 685.0922170002013 697.1485419999808 701.2062600003555 711.7243370003998 735.7186139998958 746.7014750000089 755.6856479998678 1058.7179530002177 1079.9751490000635 1080.1607670001686 1090.5118709998205 1105.8281230004504 1115.1290480000898 1124.381582999602 1129.9677069997415 1137.3387089995667 1145.6435890002176 1147.2359849996865 1159.5522590000182 1166.9216970000416 1167.7353849997744 1168.2592650000006 1169.042014000006 1171.3438290003687 1184.243491999805 1184.3062829999253 1186.9449110003188 1190.7375429999083 1195.665090000257 1200.9959770003334 1201.2314120000228 1209.7372789997607 1210.1950190002099 1211.3477450003847 1216.1046390002593 1232.3556319996715 1237.3874629996717 1238.0770159997046 1238.4510709997267 1241.5754559999332 1244.8178150001913 1248.3166800001636 1249.393056999892 1254.9473750004545 1255.7618389995769 1258.035903999582 1261.258229999803 1263.0177849996835 1267.4356639999896 1277.6780970003456 1311.1183059997857

Current
Mean: 1188.843 ms
Stdev: 57.666 ms (4.9%)
Runs: 1063.6440580002964 1063.9993150001392 1086.3076680004597 1099.8176450002939 1105.7384550003335 1117.4284889996052 1124.2919349996373 1131.671927999705 1135.443795000203 1145.9348889999092 1146.9574180003256 1147.1480299998075 1147.6948640001938 1152.5850440002978 1152.9047309998423 1154.8480040002614 1163.727963999845 1171.4399859998375 1175.9603760000318 1176.0400000000373 1176.6905960002914 1177.7952209999785 1178.2488320004195 1187.7032899996266 1188.9734669998288 1196.5444059995934 1202.6071549998596 1207.667011000216 1208.3158529996872 1210.2941439999267 1212.6841730000451 1214.1261179996654 1218.5279769999906 1219.23166900035 1221.1437959996983 1226.1372400000691 1237.9912630002946 1240.6562339998782 1245.278365000151 1260.4153739996254 1262.72251399979 1263.3184879999608 1264.093297000043 1267.5595190003514 1268.9288699999452 1274.4285620003939 1280.859725999646 1287.955675999634
App start time TTI Baseline
Mean: 1736.482 ms
Stdev: 235.919 ms (13.6%)
Runs: 1292.3304509995505 1316.2372740004212 1325.2062600003555 1332.151062999852 1334.1485419999808 1336.0922170002013 1339.0086759999394 1362.4037410002202 1370.118710000068 1372.6856479998678 1375.701475000009 1394.1078650001436 1396.5430269995704 1400.8677580002695 1414.7243370003998 1441.7186139998958 1660.5118709998205 1732.381582999602 1744.3387089995667 1755.6435890002176 1756.2592650000006 1760.2359849996865 1764.1290480000898 1777.5522590000182 1793.1607670001686 1809.9216970000416 1812.9751490000635 1831.7179530002177 1831.7372789997607 1843.243491999805 1845.2314120000228 1854.1950190002099 1858.665090000257 1859.3062829999253 1861.9677069997415 1867.1046390002593 1872.7375429999083 1876.3438290003687 1885.5754559999332 1898.0770159997046 1902.8281230004504 1912.042014000006 1916.7353849997744 1919.0177849996835 1920.393056999892 1922.3166800001636 1924.3556319996715 1934.035903999582 1938.9449110003188 1939.9473750004545 1943.3477450003847 1944.7618389995769 1946.4510709997267 1950.9959770003334 1953.8178150001913 1959.4356639999896 1963.6780970003456 1969.258229999803 1981.3874629996717 1988.1183059997857

Current
Mean: 1871.573 ms
Stdev: 82.243 ms (4.4%)
Runs: 1699.8176450002939 1715.9574180003256 1724.2919349996373 1727.3076680004597 1751.671927999705 1752.443795000203 1760.6948640001938 1782.2488320004195 1789.9047309998423 1797.6440580002964 1801.9348889999092 1813.8480040002614 1821.7952209999785 1824.4399859998375 1837.23166900035 1846.667011000216 1846.6905960002914 1847.7384550003335 1853.9603760000318 1857.6071549998596 1858.1261179996654 1868.0400000000373 1868.6841730000451 1874.2941439999267 1876.9734669998288 1880.1437959996983 1883.9993150001392 1885.5444059995934 1891.7032899996266 1901.9288699999452 1902.3158529996872 1903.278365000151 1908.4284889996052 1910.5850440002978 1927.3184879999608 1931.093297000043 1944.72251399979 1945.4285620003939 1948.5279769999906 1953.1372400000691 1961.5595190003514 1970.859725999646 1982.1480299998075 1986.4153739996254 1987.9912630002946 1997.6562339998782 2008.727963999845 2021.955675999634

Copy link
Contributor

Performance Comparison Report 📊 (2/4)

Meaningless Changes To Duration (1/3)

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 75.877 ms → 78.267 ms (+2.389 ms, +3.1%)
App start time nativeLaunch 25.661 ms → 25.034 ms (-0.627 ms, -2.4%)
App start time runJsBundle 310.542 ms → 307.500 ms (-3.042 ms, -1.0%)
App start time appCreation 70.817 ms → 69.967 ms (-0.850 ms, -1.2%)
App start time appCreationEnd_To_contentAppeared 507.117 ms → 496.339 ms (-10.777 ms, -2.1%)
App start time regularAppStart 0.020 ms → 0.025 ms (+0.004 ms, +21.1%) 🟡
App start time (CPU) 145.692 % → 147.325 % (+1.632 %, +1.1%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 383.530 MB → 387.853 MB (+4.322 MB, +1.1%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 23.927 % → 24.468 % (+0.541 %, +2.3%)
Open search router TTI Load Search Options 167.816 ms → 166.385 ms (-1.431 ms, -0.9%)
Open search router TTI Open Search Router TTI 1223.545 ms → 1163.897 ms (-59.648 ms, -4.9%)
Open search router TTI (CPU) 143.990 % → 141.470 % (-2.520 %, -1.7%)
Open search router TTI (FPS) 59.538 FPS → 60.000 FPS (+0.462 FPS, -0.8%)
Open search router TTI (RAM) 410.993 MB → 410.297 MB (-0.696 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 21.825 % → 22.286 % (+0.461 %, +2.1%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 482.763 ms → 479.852 ms (-2.911 ms, -0.6%)
Report typing (CPU) 91.723 % → 91.833 % (+0.109 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 478.518 MB → 478.274 MB (-0.244 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 19.576 % → 19.839 % (+0.263 %, +1.3%)
Chat opening Chat TTI 653.743 ms → 677.508 ms (+23.765 ms, +3.6%)
Chat opening (CPU) 155.985 % → 153.239 % (-2.745 %, -1.8%)
Chat opening (FPS) 59.653 FPS → 60.000 FPS (+0.347 FPS, -0.6%)
Chat opening (RAM) 401.788 MB → 402.416 MB (+0.628 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 28.358 % → 28.605 % (+0.248 %, +0.9%)
Money request - Open Manual Tracking 127.049 ms → 125.792 ms (-1.257 ms, -1.0%)
Money request - Open Contacts 379.837 ms → 397.068 ms (+17.231 ms, +4.5%)
Money request - Open Create 125.466 ms → 124.318 ms (-1.149 ms, -0.9%)
Money request (CPU) 169.719 % → 168.659 % (-1.059 %, -0.6%)
Money request (FPS) 59.283 FPS → 59.339 FPS (+0.057 FPS, ±0.0%)
Money request (RAM) 471.871 MB → 472.557 MB (+0.685 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 39.218 % → 39.251 % (+0.033 %, ±0.0%)
Show details
Name Duration
App start time nativeLaunchEnd_To_appCreationStart Baseline
Mean: 75.877 ms
Stdev: 9.529 ms (12.6%)
Runs: 60 62 63 63 64 64 65 65 65 66 66 66 67 68 69 69 70 70 70 70 71 71 72 72 73 73 73 74 75 76 78 78 78 79 79 79 79 79 79 80 80 80 81 81 81 83 84 85 85 89 90 90 91 94 94 95 102

Current
Mean: 78.267 ms
Stdev: 10.001 ms (12.8%)
Runs: 60 63 65 65 67 67 68 68 69 69 69 69 69 69 69 70 70 70 70 71 72 72 73 73 74 75 75 75 77 78 78 78 78 79 79 79 79 80 82 82 82 83 83 84 85 85 86 87 87 89 90 90 93 93 94 94 96 97 99 104
App start time nativeLaunch Baseline
Mean: 25.661 ms
Stdev: 3.564 ms (13.9%)
Runs: 21 21 21 22 22 22 22 22 22 22 22 23 23 23 23 23 23 23 23 23 24 24 24 24 24 24 24 24 24 25 25 25 25 25 25 25 25 26 26 26 26 28 28 28 28 29 29 30 30 30 30 30 31 31 32 32 34 34 34

Current
Mean: 25.034 ms
Stdev: 3.415 ms (13.6%)
Runs: 21 21 21 21 22 22 22 22 22 22 22 22 22 22 22 22 23 23 23 23 23 23 23 23 23 23 23 24 24 24 24 24 24 25 25 25 25 25 25 25 26 26 26 27 27 28 28 28 29 29 30 30 30 31 31 31 32 33 35
App start time runJsBundle Baseline
Mean: 310.542 ms
Stdev: 19.608 ms (6.3%)
Runs: 271 271 273 273 280 280 280 280 281 281 284 284 286 286 287 287 290 290 290 290 294 294 295 295 295 295 295 295 296 296 299 299 300 300 300 300 300 300 300 300 301 301 302 302 302 302 303 303 303 303 303 303 303 303 305 305 308 308 308 308 310 310 310 310 311 311 314 314 315 315 315 315 315 315 316 316 319 319 319 319 320 320 321 321 324 324 324 324 325 325 326 326 331 331 331 331 335 335 336 336 336 336 337 337 337 337 339 339 341 341 343 343 344 344 344 344 350 350

Current
Mean: 307.500 ms
Stdev: 20.855 ms (6.8%)
Runs: 264 264 271 271 271 271 275 275 279 279 280 280 283 283 285 285 285 285 286 286 287 287 289 289 289 289 290 290 291 291 292 292 292 292 294 294 295 295 296 296 298 298 298 298 300 300 300 300 300 300 300 300 304 304 304 304 304 304 305 305 307 307 307 307 307 307 307 307 308 308 308 308 317 317 317 317 317 317 318 318 319 319 320 320 320 320 320 320 321 321 322 322 323 323 328 328 328 328 329 329 334 334 334 334 335 335 335 335 338 338 341 341 343 343 345 345 347 347 348 348
App start time appCreation Baseline
Mean: 70.817 ms
Stdev: 10.648 ms (15.0%)
Runs: 52 54 55 57 57 58 58 58 59 59 59 60 61 62 62 62 63 63 63 63 64 64 64 65 66 66 67 69 70 70 71 72 72 72 73 73 73 75 75 75 76 76 77 79 80 80 81 81 82 82 83 84 84 86 87 88 90 90 90 92

Current
Mean: 69.967 ms
Stdev: 9.279 ms (13.3%)
Runs: 53 53 55 58 59 59 60 60 60 60 60 60 61 61 61 62 63 63 64 64 65 66 67 67 67 67 67 67 68 70 70 70 70 72 72 72 73 73 73 74 75 76 76 76 76 77 78 78 79 79 79 80 80 81 81 84 85 88 91 93
App start time appCreationEnd_To_contentAppeared Baseline
Mean: 507.117 ms
Stdev: 45.765 ms (9.0%)
Runs: 429 431 442 445 446 455 455 456 460 460 463 463 466 469 469 470 476 477 477 478 482 482 484 488 494 496 497 497 500 500 502 504 506 511 513 515 517 517 520 520 521 522 523 531 532 540 543 545 547 554 556 558 564 570 583 585 595 598 603 625

Current
Mean: 496.339 ms
Stdev: 40.926 ms (8.2%)
Runs: 414 430 436 440 443 454 455 456 457 459 461 461 465 468 469 470 470 472 477 478 478 479 479 483 485 486 486 490 491 498 499 500 500 504 507 509 509 509 510 511 511 512 512 514 517 526 536 546 552 559 560 562 563 572 596 609
App start time regularAppStart Baseline
Mean: 0.020 ms
Stdev: 0.003 ms (16.8%)
Runs: 0.01607200037688017 0.016439000144600868 0.016560999676585197 0.01664199959486723 0.01676500029861927 0.01680499967187643 0.016805000603199005 0.016846000216901302 0.017131000757217407 0.01749700028449297 0.017537000589072704 0.017619000747799873 0.017740999348461628 0.017782000824809074 0.01782199926674366 0.017862999811768532 0.017904000356793404 0.018188999965786934 0.018188999965786934 0.01822900027036667 0.018309999257326126 0.018432999961078167 0.0186769999563694 0.01887999940663576 0.018920999951660633 0.018920999951660633 0.018961000256240368 0.01912400033324957 0.019286999478936195 0.019287999719381332 0.019613000564277172 0.01969399955123663 0.019896999932825565 0.019977999851107597 0.020101000554859638 0.020305000245571136 0.020995999686419964 0.021077999845147133 0.02128100022673607 0.02128100022673607 0.021402999758720398 0.02148399967700243 0.021564999595284462 0.022216999903321266 0.02254199981689453 0.023031000047922134 0.02339700050652027 0.023763000033795834 0.02412900049239397 0.02412900049239397 0.02433199994266033 0.02555400040000677 0.025675000622868538 0.027831999585032463 0.027994999662041664 0.029134999960660934 0.030923999845981598

Current
Mean: 0.025 ms
Stdev: 0.002 ms (9.4%)
Runs: 0.019898000173270702 0.020100999623537064 0.0213620001450181 0.021687999367713928 0.021728000603616238 0.021729000844061375 0.021850000135600567 0.021932000294327736 0.022257999517023563 0.022622999735176563 0.0226239999756217 0.022827000357210636 0.022867999970912933 0.02307100035250187 0.02307100035250187 0.023111999966204166 0.023152999579906464 0.023275000043213367 0.023680999875068665 0.0238859998062253 0.023926000110805035 0.024007000029087067 0.024007000029087067 0.024130000732839108 0.02433300018310547 0.0244140001013875 0.024495000019669533 0.024536000564694405 0.024575999937951565 0.024577000178396702 0.024577000178396702 0.024779999628663063 0.024861999787390232 0.02498399931937456 0.024984000250697136 0.025268999859690666 0.025349999777972698 0.02571599930524826 0.02571599930524826 0.025756999850273132 0.025756999850273132 0.025961000472307205 0.026081999763846397 0.02612300030887127 0.026285000145435333 0.02632599975913763 0.026612000539898872 0.026652000844478607 0.026652000844478607 0.028197999112308025 0.028768000192940235 0.028970999643206596 0.029378000646829605 0.030150999315083027 0.030679999850690365
App start time (CPU) Baseline
Mean: 145.692 %
Stdev: 5.237 % (3.6%)
Runs: 134.64652952002027 137.18714546488204 138.33360449412646 138.52314374158013 138.575970125441 139.6652252092235 139.71841531979285 139.88703276194556 140.3521904991533 140.57009581756716 140.98479767493853 141.18303983117386 141.36325361686303 141.64447232784661 141.90792688996032 142.02792789239095 142.15245348824857 142.30373230373223 143.0950112555115 143.21627948442384 143.47502336855786 143.57452582670527 143.91731670512345 144.0024172343251 144.37760528279128 144.5891438887051 144.70635325819742 145.04018975023845 145.21791900994347 145.2569169960475 145.38768358124727 145.4781719682118 145.70394181527115 145.93762724855688 146.7297396406307 146.7417288200421 146.9687698523323 147.06857443582584 147.16996047430828 147.1918331092073 148.00058358572824 148.40602018367431 149.85975648626254 149.89620758483034 149.9103065883888 150.03596694701736 150.4561937068663 151.20027099976974 151.74900398406382 151.99489080344628 153.02721975118425 153.85628742514982 154.11018730856787 154.8020738389665 156.41495653482474 156.76431830277974 158.09690778393838

Current
Mean: 147.325 %
Stdev: 5.232 % (3.6%)
Runs: 138.50794354748817 139.82058410111605 140.1819196589039 140.41802332482362 140.81121760154335 141.71214044074515 141.92015968063868 142.20960469499244 142.6735064638086 142.81007824218577 142.86091489272184 142.88681717970044 142.91075639968855 142.9260965385923 143.00845723882009 143.11664639163487 143.3009050741354 143.67429588905784 143.95725100080986 144.13498906037782 144.33216082569632 144.37181996086105 144.58677396617392 144.63618290258452 144.67294541178046 145.15635395874918 145.7733786517244 145.92496546878616 146.32837168326805 146.3878822451281 146.49011191777697 146.63721976831405 146.98704380503406 147.13859716024072 147.21973608720597 147.91259165036664 148.03144665734644 148.10565198914708 148.11725267014896 148.23695560070328 149.5450748082327 149.9928398676171 150.2380141461985 150.68265210644674 151.17305953619226 151.68648734686587 152.1163708086785 152.34265262392333 152.76477408096514 152.9197298428068 153.28399560610202 153.63374229269476 154.4153293909399 154.49718063692976 156.31063688482945 157.44781783681213 157.56833887898603 157.79728816255118 162.8411455699481
App start time (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
App start time (RAM) Baseline
Mean: 383.530 MB
Stdev: 7.310 MB (1.9%)
Runs: 363.8828125 367.2734375 369.32421875 372.0234375 372.88671875 373.701171875 374.1041666666667 374.18359375 374.6328125 375.8385416666667 376.1158854166667 376.517578125 378.060546875 379.12109375 380.3541666666667 380.35546875 380.4140625 380.501953125 380.8919270833333 381.0234375 381.3958333333333 381.8984375 382.546875 383.26171875 383.3072916666667 383.55078125 383.75 383.955078125 384.0299479166667 384.515625 384.6028645833333 385.0013020833333 385.0013020833333 385.2734375 385.8268229166667 385.9075520833333 386.3385416666667 386.87890625 387.2669270833333 387.5520833333333 387.7317708333333 388.3333333333333 388.8190104166667 389.0559895833333 389.82421875 390.1223958333333 390.3138020833333 390.6783854166667 391.15625 392.2356770833333 392.2395833333333 393.0234375 393.26953125 393.7799479166667 393.8489583333333 394.5130208333333 399.2161458333333

Current
Mean: 387.853 MB
Stdev: 4.945 MB (1.3%)
Runs: 376.48828125 376.6419270833333 376.9986979166667 377.798828125 378.4375 380.8815104166667 382.4427083333333 382.638671875 383.28125 384.5390625 384.7096354166667 384.89453125 385.0416666666667 385.181640625 385.2838541666667 385.3958333333333 385.8125 385.8232421875 385.89453125 386.0572916666667 386.205078125 386.3072916666667 386.4765625 386.5807291666667 387.0442708333333 387.2275390625 387.2314453125 387.6901041666667 388.1591796875 388.51171875 389.42578125 389.8177083333333 389.9231770833333 389.9557291666667 390.3138020833333 390.3736979166667 390.7447916666667 390.8291015625 390.8515625 391.04296875 391.0651041666667 392.0065104166667 392.2265625 392.2513020833333 392.7565104166667 392.953125 393.08984375 393.8515625 393.88671875 393.9127604166667 394.1354166666667 394.5143229166667 394.6744791666667 395.7447916666667 395.8697916666667
App start time (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
App start time (CPU/UI) Baseline
Mean: 23.927 %
Stdev: 3.128 % (13.1%)
Runs: 17 18 18.9 19.9 20 20 21 21.3 21.3 21.4 21.7 21.7 21.8 21.9 21.9 22 22 22.1 22.2 22.6 22.6 22.6 22.6 22.6 22.6 22.7 22.7 23 23.1 23.3 23.8 23.9 24 24 24 24 24.6 24.7 24.7 24.8 25 25.3 25.3 25.3 25.4 26 26.2 26.7 26.9 27.1 27.4 27.4 27.4 28 28.5 28.7 31.9 32.1 32.1

Current
Mean: 24.468 %
Stdev: 2.533 % (10.4%)
Runs: 17.8 19 20.9 21.1 21.3 21.3 21.8 22 22 22 22 22.1 22.1 22.4 22.5 22.6 22.6 22.8 23.2 23.3 23.4 23.5 23.8 23.9 23.9 23.9 24 24 24.5 24.6 24.6 24.6 24.6 24.6 24.7 24.7 24.8 24.9 25.3 25.3 25.4 25.9 26.1 26.4 26.4 26.5 26.6 26.7 26.7 27 27 27 27.1 27.3 27.9 28 28 28.7 29.1 31.9
Open search router TTI Load Search Options Baseline
Mean: 167.816 ms
Stdev: 6.783 ms (4.0%)
Runs: 151.26403900049627 151.79573599994183 151.83199100010097 152.5157870007679 152.66288299951702 154.2193200001493 162.55102499946952 163.27905299980193 163.57490999996662 163.72534199990332 164.681641000323 165.21618700027466 165.84765600040555 166.33960000053048 166.41276099998504 166.42024799995124 166.57381200045347 166.7205410003662 166.81949799973518 166.8514000000432 167.63785800058395 167.64404299948364 167.76399700064212 167.86682200059295 167.89111299999058 168.10953699983656 168.26924599986523 168.36319999955595 168.3981929998845 168.49418100062758 168.82564300019294 168.83951899968088 169.01965299993753 170.47163899987936 170.5779210003093 170.9211019994691 171.23429299984127 171.41870099958032 171.85709600057453 172.3286540005356 172.4012050004676 172.43367599975318 172.6314690001309 173.3669429998845 174.17643299978226 174.3762210002169 174.43664499931037 175.59798199962825 176.80244999937713 177.3612879998982 177.89628100022674 177.95414199959487 179.57340500038117

Current
Mean: 166.385 ms
Stdev: 7.369 ms (4.4%)
Runs: 149.32613100018352 150.0228679999709 151.43444899935275 152.1387529997155 152.39701400045305 152.7633050000295 153.61995400022715 153.8128660004586 159.84851100016385 159.87894700001925 161.05444400012493 162.13891600072384 162.228800999932 163.50947999954224 164.40181499999017 164.578125 164.7748210001737 164.86478700023144 164.91048199962825 164.91499800048769 164.99650099966675 165.06506299972534 165.20849600061774 165.6422939999029 165.72151700034738 166.60599800013006 166.61425799969584 166.66031900048256 166.74833200033754 166.74987800046802 166.91483499947935 167.384318000637 167.71659399941564 167.95373499952257 169.06665099970996 169.34289600048214 169.47265600040555 169.63472499977797 169.6626380002126 169.9302979996428 170.02327399980277 171.43656400032341 172.3667399995029 172.68668700009584 172.9767660005018 173.0257570007816 173.25451599992812 174.35050399973989 174.3509929999709 174.40511099994183 175.05098500009626 175.68322800006717 175.98596199974418 176.10477699991316 176.21732600033283 177.39681000076234 178.90791799966246
Open search router TTI Open Search Router TTI Baseline
Mean: 1223.545 ms
Stdev: 164.944 ms (13.5%)
Runs: 960.8356529995799 978.8916020002216 994.478800999932 995.9197599999607 998.8750820001587 1000.5558679997921 1008.369547999464 1016.2266039997339 1016.3143310006708 1017.1518550002947 1017.2395020006225 1027.3674729997292 1028.218913000077 1080.9597580004483 1087.5177410002798 1099.5807299995795 1101.1254489999264 1101.2574469996616 1101.8595379991457 1102.2981770001352 1105.830932999961 1106.5322669995949 1108.106324000284 1110.1741949999705 1110.6418050006032 1110.955811000429 1111.0242519993335 1112.9021410001442 1113.6084400005639 1113.919108999893 1114.410768000409 1115.1119790002704 1115.976603999734 1116.7279460001737 1118.5175780002028 1118.5988370003179 1121.1478279996663 1126.3155930005014 1127.1881929999217 1129.4713540002704 1129.7463800003752 1135.6298829996958 1137.0460620000958 1139.784911999479 1142.9010419994593 1144.7971189999953 1145.1146660000086 1147.814005999826 1150.912476000376 1154.6695969998837 1161.7531749997288 1162.1492109997198 1167.5432139998302 1167.6086029997095 1172.8038340006024 1176.5677500003949 1177.9455979997292 1186.1830239994451 1186.2601330000907 1212.0000419998541 1221.329346000217 1221.3641370004043 1226.7027599997818 1251.6808270001784 1252.425578000024 1261.45967700053 1271.7272139992565 1281.0574549995363 1286.6248789997771 1286.6248789997771 1286.7877200003713 1288.644897999242 1292.8359380001202 1302.48852599971 1302.692139999941 1306.8266199994832 1317.300456999801 1320.214844999835 1346.7003579996526 1371.272705999203 1386.9486089991406 1397.2244880003855 1407.4312749998644 1411.0161540005356 1416.663208000362 1429.0821130005643 1440.6566169997677 1441.1146650006995 1450.8480230001733 1455.406128000468 1463.4784350004047 1470.7676600003615 1475.9542650002986 1489.6553960004821 1498.4230559999123 1503.4773770002648 1511.8886730000377 1523.1756189996377 1545.1129970001057 1574.842042000033 1589.4395350003615 1596.5259199999273 1607.8011480001733

Current
Mean: 1163.897 ms
Stdev: 113.721 ms (9.8%)
Runs: 984.6750900000334 998.9651290001348 1004.136921999976 1005.8582359999418 1006.5654710000381 1007.9240319998935 1010.0795900002122 1022.7449139999226 1027.7696939995512 1034.048543999903 1034.4485269999132 1080.810792000033 1083.2062579998747 1090.2143560005352 1095.1053879996762 1095.1340749999508 1095.8863930003718 1096.4948730003089 1099.207154000178 1100.737509000115 1101.7551270006225 1106.102579999715 1107.9649670002982 1108.9327400000766 1109.6020509991795 1110.6621510004625 1110.8265789998695 1112.9932459993288 1113.7725430000573 1114.3742680000141 1115.205120000057 1115.8786620004103 1116.851440999657 1122.0270999995992 1126.559570000507 1129.8389900000766 1130.6734629999846 1131.7499600006267 1132.2844650000334 1133.0951739996672 1133.8057459993288 1137.242187999189 1140.6597499996424 1141.337849999778 1141.9580080006272 1143.1179619999602 1143.8287760000676 1147.3758960003033 1149.0458180001006 1150.8033040007576 1152.0577399991453 1152.532797000371 1153.5260830000043 1154.2958990000188 1158.1140549993142 1158.9984949994832 1161.0463059991598 1162.126505999826 1165.3894859999418 1167.5616870000958 1169.032797000371 1169.1088060000911 1174.6841239994392 1178.0931810000911 1179.0913089998066 1179.3756110006943 1191.9837239999324 1200.1071370001882 1214.8300779992715 1225.9632569998503 1240.3291429998353 1266.9525560000911 1283.5638429997489 1286.6716310000047 1290.3567310003564 1304.5385339995846 1305.20418300014 1310.55912300013 1326.503866000101 1326.503866000101 1339.5797129999846 1343.3069270001724 1364.189005999826 1488.660563999787 1504.275391000323 1520.3459069998935 1535.2681080000475

Copy link
Contributor

Performance Comparison Report 📊 (3/4)

Meaningless Changes To Duration (2/3)

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 75.877 ms → 78.267 ms (+2.389 ms, +3.1%)
App start time nativeLaunch 25.661 ms → 25.034 ms (-0.627 ms, -2.4%)
App start time runJsBundle 310.542 ms → 307.500 ms (-3.042 ms, -1.0%)
App start time appCreation 70.817 ms → 69.967 ms (-0.850 ms, -1.2%)
App start time appCreationEnd_To_contentAppeared 507.117 ms → 496.339 ms (-10.777 ms, -2.1%)
App start time regularAppStart 0.020 ms → 0.025 ms (+0.004 ms, +21.1%) 🟡
App start time (CPU) 145.692 % → 147.325 % (+1.632 %, +1.1%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 383.530 MB → 387.853 MB (+4.322 MB, +1.1%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 23.927 % → 24.468 % (+0.541 %, +2.3%)
Open search router TTI Load Search Options 167.816 ms → 166.385 ms (-1.431 ms, -0.9%)
Open search router TTI Open Search Router TTI 1223.545 ms → 1163.897 ms (-59.648 ms, -4.9%)
Open search router TTI (CPU) 143.990 % → 141.470 % (-2.520 %, -1.7%)
Open search router TTI (FPS) 59.538 FPS → 60.000 FPS (+0.462 FPS, -0.8%)
Open search router TTI (RAM) 410.993 MB → 410.297 MB (-0.696 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 21.825 % → 22.286 % (+0.461 %, +2.1%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 482.763 ms → 479.852 ms (-2.911 ms, -0.6%)
Report typing (CPU) 91.723 % → 91.833 % (+0.109 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 478.518 MB → 478.274 MB (-0.244 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 19.576 % → 19.839 % (+0.263 %, +1.3%)
Chat opening Chat TTI 653.743 ms → 677.508 ms (+23.765 ms, +3.6%)
Chat opening (CPU) 155.985 % → 153.239 % (-2.745 %, -1.8%)
Chat opening (FPS) 59.653 FPS → 60.000 FPS (+0.347 FPS, -0.6%)
Chat opening (RAM) 401.788 MB → 402.416 MB (+0.628 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 28.358 % → 28.605 % (+0.248 %, +0.9%)
Money request - Open Manual Tracking 127.049 ms → 125.792 ms (-1.257 ms, -1.0%)
Money request - Open Contacts 379.837 ms → 397.068 ms (+17.231 ms, +4.5%)
Money request - Open Create 125.466 ms → 124.318 ms (-1.149 ms, -0.9%)
Money request (CPU) 169.719 % → 168.659 % (-1.059 %, -0.6%)
Money request (FPS) 59.283 FPS → 59.339 FPS (+0.057 FPS, ±0.0%)
Money request (RAM) 471.871 MB → 472.557 MB (+0.685 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 39.218 % → 39.251 % (+0.033 %, ±0.0%)
Show details
Name Duration
Open search router TTI (CPU) Baseline
Mean: 143.990 %
Stdev: 2.610 % (1.8%)
Runs: 139.93812451198548 140.24970121662108 140.33783802465777 140.47920891285167 140.5835553723735 140.70196632693626 141.19124610201533 141.206424416218 141.21497458327036 141.31283070088324 141.3844507988082 141.53042459468068 141.6351285468642 141.83505097129876 141.8406307435691 141.99065613269832 142.04512388914796 142.0500462587969 142.08184675171066 142.09615451860773 142.14347366057055 142.38345787253098 142.55255312654728 142.55563127099606 143.02230887083013 143.06552427150845 143.20172708318904 143.28983031803867 143.31337826337037 143.690666378076 144.13049016310984 144.22312909903266 144.43982057192042 144.45892409033033 144.47817885510918 144.52736485897347 144.6656630190365 144.81822761814442 144.87547293773827 144.8807602072357 144.88515064618915 144.89586378581504 145.37667450880218 145.4245711337845 145.5145785864395 145.95638013247978 146.16563681370565 146.20064384620648 147.23711880413637 147.43792017368378 147.50373409616722 147.61457052216724 147.76185041348566 147.9668676010887 148.00175060932682 148.04852809597037 149.13584340867064 149.3386454183268 150.4963091091924

Current
Mean: 141.470 %
Stdev: 2.781 % (2.0%)
Runs: 135.36927538550958 137.36392639000897 137.51052473582902 137.57472608908768 137.6767400131901 137.8128046694993 137.85584859646772 138.07280196016916 138.18079141350586 138.19675539012175 138.62126111864262 139.27991764968732 139.6806917763305 139.71056603572316 139.75897503948292 139.76801436808682 139.86891446260466 139.8978922271021 140.09766364918192 140.22350611983592 140.3302957173464 140.3481581058127 140.45605567879937 140.53869584457308 140.8016466247462 140.88947724854938 141.02553346269355 141.03394570861067 141.26290676343592 141.27258116948443 141.3175278231873 141.40946963970333 141.41756858129685 141.76693900303633 141.80020167705035 142.09095998956656 142.1561646659801 142.24661592402794 142.27259427282877 142.50924637801091 142.66438003419339 142.8053903515593 143.28438366182033 143.4691355672532 143.62043531983656 143.8128920260701 143.92297255968734 144.1819855932958 144.49837742809112 144.58492916251092 144.64369125860048 144.77802012056267 144.95422827266464 145.0699895522769 145.53132451242217 146.46603368758136 148.19206630452027 149.30567701240463
Open search router TTI (FPS) Baseline
Mean: 59.538 FPS
Stdev: 0.338 FPS (0.6%)
Runs: 58.864335263816024 58.87866845760708 58.907388512365856 58.944994552588675 59.07312645192479 59.11038029984445 59.13990573975875 59.176900826629264 59.18973642836968 59.19086580565761 59.22866456431621 59.232984727739336 59.276988636542434 59.2801074870166 59.280862411805266 59.29993848943965 59.32073518948911 59.346429959912086 59.3651317138159 59.39321946441739 59.41649319455528 59.41664810484766 59.41830236863124 59.41860559121226 59.42416912703134 59.469009173905675 59.500792360902075 59.504771736323185 59.51928220984204 59.52001674892517 59.57571003786484 59.590212800696015 59.66657522239634 59.669928770386015 59.71304952348675 59.720373842764054 59.74395534634251 59.76899314378517 59.77086590044323 59.78133567070557 59.88338143586705 59.89053842067227 59.903106059285854 59.90886167606421 59.944389999856384 59.96281609789301 59.978680185366954 59.9938153882286 60 60 60 60 60 60 60

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
Open search router TTI (RAM) Baseline
Mean: 410.993 MB
Stdev: 4.087 MB (1.0%)
Runs: 402.925 404.0436197916667 404.55859375 404.73828125 405.0384114583333 405.1673177083333 405.2994791666667 405.440625 405.6432291666667 405.9811197916667 406.5481770833333 406.576171875 406.625 406.88515625 407.2942708333333 407.431640625 407.9329427083333 408.2994791666667 409.0546875 409.2703125 409.5755208333333 409.65625 409.8977864583333 410.2024739583333 410.4602864583333 410.703125 410.8684895833333 410.9055989583333 411.2096354166667 411.6067708333333 411.630859375 412.225 412.4055989583333 412.5442708333333 412.6625 412.787109375 413.001953125 413.22578125 413.50390625 413.669921875 413.70390625 413.83046875 413.928125 414.13671875 414.2415364583333 414.4498697916667 415.0026041666667 415.0546875 415.2180989583333 415.3079427083333 415.5970052083333 415.7376302083333 415.8078125 415.8600260416667 416.83828125 417.27890625 417.8815104166667 420.2174479166667

Current
Mean: 410.297 MB
Stdev: 3.698 MB (0.9%)
Runs: 403.8190104166667 404.2350260416667 404.4328125 404.619140625 404.6848958333333 405.7194010416667 405.8171875 406.4641927083333 406.47890625 406.6126302083333 406.662109375 406.7565104166667 406.9251302083333 406.9700520833333 406.9934895833333 407.4954427083333 407.5930989583333 407.9895833333333 407.9908854166667 408.14453125 408.31328125 408.3658854166667 408.81640625 408.875 409.2141927083333 409.22421875 409.2591145833333 409.4609375 409.5247395833333 409.71328125 409.9375 409.9856770833333 410.662109375 410.826171875 411.0768229166667 411.8346354166667 412.14453125 412.47265625 412.58984375 412.666015625 412.8444010416667 412.9583333333333 413.0234375 413.3873697916667 413.5533854166667 413.6705729166667 414.125 414.2356770833333 414.310546875 414.6901041666667 415.05 415.208984375 415.4251302083333 415.490234375 415.5598958333333 416.5546875 416.6171875 419.1484375
Open search router TTI (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Open search router TTI (CPU/UI) Baseline
Mean: 21.825 %
Stdev: 0.932 % (4.3%)
Runs: 19.6 20.1 20.2 20.2 20.3 20.6 20.6 20.7 20.8 20.9 20.9 21 21 21 21.3 21.3 21.5 21.5 21.6 21.6 21.6 21.6 21.6 21.6 21.6 21.6 21.9 21.9 21.9 21.9 21.9 21.9 22 22 22.2 22.3 22.3 22.3 22.4 22.4 22.4 22.5 22.5 22.6 22.6 22.6 22.6 22.8 22.9 23 23.1 23.2 23.3 23.4 23.5 23.6

Current
Mean: 22.286 %
Stdev: 0.993 % (4.5%)
Runs: 20.3 20.3 20.3 20.6 20.9 21.2 21.3 21.4 21.5 21.5 21.5 21.5 21.6 21.6 21.6 21.6 21.6 21.6 21.7 21.7 21.8 21.8 21.9 21.9 21.9 21.9 21.9 21.9 22 22 22.2 22.2 22.3 22.3 22.3 22.3 22.6 22.6 22.6 22.7 22.9 22.9 23 23.2 23.2 23.2 23.3 23.5 23.5 23.5 23.6 23.6 23.6 23.7 23.7 23.8 23.8 24.2 24.3
Report typing Composer typing rerender count Baseline
Mean: 1.000 renders
Stdev: 0.000 renders (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1

Current
Mean: 1.000 renders
Stdev: 0.000 renders (0.0%)
Runs: 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Report typing Message sent Baseline
Mean: 482.763 ms
Stdev: 29.975 ms (6.2%)
Runs: 427.16137699969113 430.66918999888003 433.04313199967146 436.07202199846506 436.1004230007529 440.8137619998306 444.01061999984086 445.5072019994259 448.4652510005981 450.0090330000967 450.0862630009651 451.08178699947894 454.36271199956536 455.75581900030375 456.777668999508 457.8587239999324 458.6011560000479 458.8391120005399 459.71272799931467 461.05281599983573 461.7249750010669 463.2506920006126 467.8825279995799 472.5089929997921 474.9483240004629 479.9053140003234 480.0858559999615 484.4684250000864 486.8197429999709 489.2306730002165 489.2684739995748 490.2587899994105 490.9617110006511 490.97245300002396 491.34863300062716 493.2441409993917 495.6611329987645 496.3353269994259 497.25236100144684 497.8144540004432 498.10351499915123 499.13623099960387 499.9360349997878 499.9823409989476 500.39917100034654 502.90572199970484 505.1918539982289 507.1713870000094 520.4831949993968 521.4992279987782 522.3826909996569 522.9611410014331 523.1405040007085 523.7780769988894 523.8714599981904 524.0509850010276 525.265503000468 525.8389890007675 533.8143310006708 535.9584960006177

Current
Mean: 479.852 ms
Stdev: 28.088 ms (5.9%)
Runs: 419.34016900137067 434.71122300066054 435.4895029999316 435.6789140012115 437.00341800041497 437.88399199955165 441.64681000076234 441.75516800023615 445.05122900009155 448.6656090002507 448.718913000077 449.84973200038075 450.34395400062203 451.7567139994353 452.16215099953115 457.57466699928045 458.25488300062716 460.3577880002558 463.6203209999949 463.91963700018823 464.0023190006614 465.2639569994062 466.90625 472.19201700016856 477.1271160002798 477.96309399977326 479.24035700038075 479.7336840014905 481.1614989992231 482.83996599912643 485.3239750005305 489.00223799981177 489.00699900090694 490.1575520001352 490.5076090004295 491.4444169998169 491.48148600012064 492.9658620003611 493.22249300032854 495.50472099892795 498.25561599992216 499.46630800142884 499.690389001742 500.67175299860537 500.75647000037134 501.3300780002028 501.60709699988365 501.7386469990015 501.82686400040984 503.31603999994695 503.94401100091636 504.05684399977326 509.9986569993198 522.8797210007906 523.1465249992907 524.437826000154 524.7381180003285 524.8111579995602 525.0362149998546 530.5909840017557
Report typing (CPU) Baseline
Mean: 91.723 %
Stdev: 3.049 % (3.3%)
Runs: 85.7077313919469 86.01609803668258 86.1785209032819 87.08404447621544 87.62153306048222 87.71309856709424 87.73352695978976 88.11771754950594 88.13251059369426 88.56289592336094 88.87443350711168 88.87778730554747 88.95726634912617 89.19836305486277 89.21665054580278 89.30630448125481 89.5838849967543 89.85231271779182 89.91178164261629 90.00683738046962 90.26315114036056 90.67157823524471 90.95857605196207 91.00214575850697 91.06342498082468 91.2474543526741 91.2726034411703 91.69815954930226 91.73583601561242 91.74050062794242 91.85817163138849 91.89792215196634 91.95300867467081 92.19703115034213 92.20212818170852 92.21142313804665 92.433648324529 93.03530869514418 93.07705784997556 93.1161078848685 94.15031556121949 94.40445071612321 94.54067398702982 94.59050530007129 94.62533775966875 94.66994718918716 95.12380750976207 95.16935168217036 95.18926608400278 95.23996866131837 95.24831402693715 95.53111724493434 95.55322586302667 95.71779148067978 95.80715037863665 96.81058478251163 97.23054731479408 98.06682949852441

Current
Mean: 91.833 %
Stdev: 3.048 % (3.3%)
Runs: 85.84737458380012 86.34733090570397 87.43151327661936 87.55879443388568 87.56525908443051 87.87415682231855 88.4286640799748 88.84680002749515 88.85774048378637 88.97641925353237 89.19183376112889 89.20978747893366 89.21621716010708 89.23332155883078 89.23714918151435 89.59049940203319 89.78064525716569 89.94446499060376 90.09064303136414 90.17248466023239 90.29192705878866 90.4688322373965 90.50286416383187 90.69558777276184 90.87755620690524 90.9267010075536 90.95737748690209 91.31281574570362 91.43640143982363 91.98817426034188 92.05958348394695 92.16401916356148 92.22079531163622 92.26667662756554 92.5404323944736 92.63381542222491 92.9868487156409 93.14616038992486 93.24472372787267 93.26336538159134 93.29722966169484 93.62772674956038 93.96175784561403 94.05920532715616 94.1862637918338 94.37129178432605 94.39586915121089 94.48476435690867 94.52607348379408 94.58011425145475 94.71484289287628 95.27415692028497 95.61924439365903 96.13957928706604 96.76252378715547 96.82075844136956 99.9059421686213 100.1751920968485
Report typing (FPS) Baseline
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
Report typing (RAM) Baseline
Mean: 478.518 MB
Stdev: 4.481 MB (0.9%)
Runs: 470.05691964285717 470.83274147727275 470.8375355113636 471.1253720238095 472.06569602272725 472.71484375 473.84921875 474.25088778409093 474.3103515625 474.53835227272725 474.66281960227275 474.8336292613636 474.8452380952381 475.326171875 475.7462890625 475.79545454545456 475.95028409090907 476.1285511363636 476.16459517045456 476.19815340909093 476.25337357954544 476.26953125 476.3380681818182 476.63262648809524 476.7679332386364 476.80983664772725 477.10475852272725 477.20614346590907 477.40234375 478.0491832386364 478.190625 478.2425426136364 478.31906960227275 478.51260653409093 478.56374289772725 478.8009588068182 478.91778273809524 479.07865767045456 480.14932528409093 480.38174715909093 480.4720703125 480.59286221590907 480.67826704545456 480.9985119047619 481.91885653409093 482.46732954545456 482.638671875 483.1599786931818 483.3466796875 484.2008167613636 484.29315476190476 484.91654829545456 484.96011513157896 484.96235795454544 484.9856770833333 485.66034226190476 487.12571022727275 487.5333806818182 489.425

Current
Mean: 478.274 MB
Stdev: 4.519 MB (0.9%)
Runs: 469.1917613636364 469.40287642045456 470.0990953947368 471.97922585227275 472.51438210227275 472.72377232142856 473.18235085227275 473.2794744318182 473.49144345238096 473.5055042613636 473.787109375 474.1658380681818 474.23604910714283 474.5120738636364 474.685546875 474.71590909090907 475.47284226190476 475.53267045454544 475.5859375 475.58913352272725 475.7464488636364 476.4068080357143 476.7421875 477.03000710227275 477.262890625 477.32883522727275 477.5255681818182 477.69477982954544 477.78013392857144 477.9107142857143 478.01953125 478.3123224431818 478.54776278409093 478.5765269886364 479.4351917613636 479.63210227272725 479.6384943181818 479.716796875 479.7513671875 480.02645596590907 481.43046875 481.5524259868421 481.73065476190476 482.0699573863636 482.16938920454544 482.37890625 482.4993832236842 482.57315340909093 482.73916903409093 482.77511160714283 482.81143465909093 483.051953125 483.26029829545456 483.83735795454544 484.4116443452381 484.5865542763158 485.74013157894734 486.67075892857144 491.1521484375
Report typing (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Report typing (CPU/UI) Baseline
Mean: 19.576 %
Stdev: 0.745 % (3.8%)
Runs: 17.8 18 18 18.3 18.4 18.5 18.5 18.6 18.6 18.8 18.9 18.9 18.9 18.9 19.1 19.2 19.3 19.4 19.5 19.5 19.5 19.5 19.5 19.5 19.5 19.6 19.6 19.6 19.7 19.7 19.7 19.8 19.8 19.8 19.8 19.8 19.9 19.9 19.9 19.9 20 20 20 20 20.1 20.1 20.2 20.2 20.3 20.3 20.3 20.4 20.4 20.5 20.5 20.7 20.8 21.5

Current
Mean: 19.839 %
Stdev: 0.624 % (3.1%)
Runs: 18.3 18.4 18.4 18.5 18.8 19.1 19.2 19.2 19.3 19.4 19.5 19.5 19.5 19.5 19.5 19.5 19.6 19.6 19.6 19.6 19.7 19.8 19.8 19.8 19.8 19.8 19.9 19.9 19.9 19.9 19.9 20 20 20.1 20.1 20.1 20.2 20.2 20.2 20.3 20.3 20.3 20.4 20.4 20.4 20.4 20.5 20.6 20.6 20.6 20.7 20.8 20.9 21
Chat opening Chat TTI Baseline
Mean: 653.743 ms
Stdev: 48.222 ms (7.4%)
Runs: 547.5016690008342 548.5052899997681 565.4351400006562 570.4982910007238 575.422079000622 577.6110840011388 580.2991140000522 581.0846759993583 591.0082189999521 597.7948410008103 598.8208009991795 602.1329750008881 606.9182140007615 607.2020670007914 620.0985920000821 620.8830980006605 623.4612629991025 630.1433109994978 634.6539309993386 636.9428710006177 639.6909989994019 644.8315440006554 649.9427489992231 654.1379400007427 656.9574790000916 657.6624759994447 659.225627001375 660.2097579985857 666.6738689988852 667.6953529994935 673.2621259987354 676.1861579995602 677.1916100010276 677.8021649997681 680.3324379995465 680.5253500007093 680.9662679992616 681.1669110003859 683.1491710003465 684.4868980012834 685.9296059999615 686.0017899982631 686.5101729985327 689.7923590000719 690.8798830006272 692.1486409995705 696.4914960004389 697.3343510013074 699.2937019988894 700.0730389989913 700.7021079994738 709.857137998566 715.0881350003183 715.4849849995226 715.6389159988612 717.3779300004244 720.841390999034 729.1305749993771

Current
Mean: 677.508 ms
Stdev: 32.190 ms (4.8%)
Runs: 584.1389159988612 588.7986660003662 625.973348999396 628.1853030007333 629.6636560000479 633.6900230012834 634.254883999005 638.2484539989382 647.3737789988518 651.0815019998699 651.9890139997005 652.8734540008008 653.863362999633 656.484294001013 657.1670329999179 665.484090000391 666.0847979988903 669.0572919994593 669.4318850003183 673.4659020006657 675.2603770010173 675.6885169986635 676.3647460006177 676.4564619995654 677.9489750005305 679.3291420005262 679.7412519995123 682.1306559983641 682.8515630010515 683.6843260005116 685.8683279994875 686.2197259999812 686.5144449993968 687.4770099986345 690.2918299995363 693.016235999763 693.6333010010421 696.8532720003277 697.4165040012449 698.2965500000864 698.9526370000094 699.7998869996518 700.4488530009985 701.8305669985712 703.2080080006272 703.5921229999512 704.8687749989331 707.3284110017121 710.5322270002216 712.3729260005057 714.7290039993823 721.9161379989237 723.344239000231 725.6868900004774 751.9963790010661

Copy link
Contributor

Performance Comparison Report 📊 (4/4)

Meaningless Changes To Duration (3/3)

Show entries
Name Duration
App start time nativeLaunchEnd_To_appCreationStart 75.877 ms → 78.267 ms (+2.389 ms, +3.1%)
App start time nativeLaunch 25.661 ms → 25.034 ms (-0.627 ms, -2.4%)
App start time runJsBundle 310.542 ms → 307.500 ms (-3.042 ms, -1.0%)
App start time appCreation 70.817 ms → 69.967 ms (-0.850 ms, -1.2%)
App start time appCreationEnd_To_contentAppeared 507.117 ms → 496.339 ms (-10.777 ms, -2.1%)
App start time regularAppStart 0.020 ms → 0.025 ms (+0.004 ms, +21.1%) 🟡
App start time (CPU) 145.692 % → 147.325 % (+1.632 %, +1.1%)
App start time (FPS) 60.000 FPS → 60.000 FPS
App start time (RAM) 383.530 MB → 387.853 MB (+4.322 MB, +1.1%)
App start time (CPU/JS) 0.000 % → 0.000 %
App start time (CPU/UI) 23.927 % → 24.468 % (+0.541 %, +2.3%)
Open search router TTI Load Search Options 167.816 ms → 166.385 ms (-1.431 ms, -0.9%)
Open search router TTI Open Search Router TTI 1223.545 ms → 1163.897 ms (-59.648 ms, -4.9%)
Open search router TTI (CPU) 143.990 % → 141.470 % (-2.520 %, -1.7%)
Open search router TTI (FPS) 59.538 FPS → 60.000 FPS (+0.462 FPS, -0.8%)
Open search router TTI (RAM) 410.993 MB → 410.297 MB (-0.696 MB, ±0.0%)
Open search router TTI (CPU/JS) 0.000 % → 0.000 %
Open search router TTI (CPU/UI) 21.825 % → 22.286 % (+0.461 %, +2.1%)
Report typing Composer typing rerender count 1.000 renders → 1.000 renders
Report typing Message sent 482.763 ms → 479.852 ms (-2.911 ms, -0.6%)
Report typing (CPU) 91.723 % → 91.833 % (+0.109 %, ±0.0%)
Report typing (FPS) 60.000 FPS → 60.000 FPS
Report typing (RAM) 478.518 MB → 478.274 MB (-0.244 MB, ±0.0%)
Report typing (CPU/JS) 0.000 % → 0.000 %
Report typing (CPU/UI) 19.576 % → 19.839 % (+0.263 %, +1.3%)
Chat opening Chat TTI 653.743 ms → 677.508 ms (+23.765 ms, +3.6%)
Chat opening (CPU) 155.985 % → 153.239 % (-2.745 %, -1.8%)
Chat opening (FPS) 59.653 FPS → 60.000 FPS (+0.347 FPS, -0.6%)
Chat opening (RAM) 401.788 MB → 402.416 MB (+0.628 MB, ±0.0%)
Chat opening (CPU/JS) 0.000 % → 0.000 %
Chat opening (CPU/UI) 28.358 % → 28.605 % (+0.248 %, +0.9%)
Money request - Open Manual Tracking 127.049 ms → 125.792 ms (-1.257 ms, -1.0%)
Money request - Open Contacts 379.837 ms → 397.068 ms (+17.231 ms, +4.5%)
Money request - Open Create 125.466 ms → 124.318 ms (-1.149 ms, -0.9%)
Money request (CPU) 169.719 % → 168.659 % (-1.059 %, -0.6%)
Money request (FPS) 59.283 FPS → 59.339 FPS (+0.057 FPS, ±0.0%)
Money request (RAM) 471.871 MB → 472.557 MB (+0.685 MB, ±0.0%)
Money request (CPU/JS) 0.000 % → 0.000 %
Money request (CPU/UI) 39.218 % → 39.251 % (+0.033 %, ±0.0%)
Show details
Name Duration
Chat opening (CPU) Baseline
Mean: 155.985 %
Stdev: 6.062 % (3.9%)
Runs: 144.09101778363663 147.90046044153027 147.9818629686857 148.55836605501315 148.96912611306777 149.18301852065963 149.30505204729982 149.66421262828044 149.72618838916586 150.04769397039829 150.41838153295657 150.5348587054456 150.93434046224849 151.1711637427806 151.19829166251284 151.29685171489695 151.3170864052155 151.5979457092098 151.79505918268407 151.83971206927336 152.4422139323459 152.57610628545294 152.80852222717522 152.8411608034918 153.20976542486542 153.23013857247687 153.59090379195717 153.59745837310837 153.970811191241 154.0968455387701 154.5875810936053 155.5613206249531 155.57291981818193 155.71962570288858 156.64463257576958 156.82268762769505 157.26335479355123 157.4660068846816 157.85520728085993 158.0453503468982 158.18849575499104 158.36041176342934 158.67313120736972 158.93560491177848 159.84689600132492 160.48019684648634 160.58317961217213 161.0769448852573 162.07501512122377 162.1000055444227 162.31110480617227 164.63351822347855 165.16949471191546 165.4019055600125 165.5445583049212 166.53721102449916 166.60188574637175 168.3393525233424 168.42415169660683 170.3608315571103

Current
Mean: 153.239 %
Stdev: 6.274 % (4.1%)
Runs: 144.8805126118888 145.0671486938173 145.41416188854407 145.50139718255917 145.9360105840523 146.08181287150458 146.09076225879556 146.10627341430603 146.59200871387063 146.9854895356662 147.35632917961962 147.817517274206 147.98784426112107 148.10990588308294 148.11021981731363 148.21745778821798 148.2447702895505 148.825941045218 149.59897859399734 149.91641457359577 150.13689517888386 150.24398602568297 150.30789438356763 150.79815875207842 150.8504408519627 150.8698144881722 150.9720828427864 150.9942865846048 151.18905637559217 151.47170223930982 151.6289343217118 151.95561132136194 152.3467137493807 152.49711692214655 152.7001052707182 153.09264339846212 153.41997168282722 153.82238250920634 154.80645130742556 154.98425962967008 155.0642088248624 155.59587863568314 155.87588539806538 156.36673969012853 156.96904553877036 157.31422654977666 158.18718213592717 159.47365938766367 160.46492873642003 161.27047960601976 162.24463185844374 162.59002937072333 162.93590365862124 163.35566944652072 164.26650165016497 165.01962047624397 167.07159835965783 167.49806867040857 167.61922439100167
Chat opening (FPS) Baseline
Mean: 59.653 FPS
Stdev: 0.577 FPS (1.0%)
Runs: 57.46339880895581 57.7599905404159 58.426763131427315 58.74285198716186 58.863911721441376 59.024869889624185 59.145342759886695 59.19694523931513 59.21714007369194 59.22179819225548 59.30462625516327 59.34751490231305 59.4066165517821 59.56013805189959 59.60860251962813 59.72573321877494 59.76454617406174 59.78063589882163 59.78868289326486 59.86188282526186 59.887250962447936 59.95078851693302 59.96649932014567 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60

Current
Mean: 60.000 FPS
Stdev: 0.000 FPS (0.0%)
Runs: 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
Chat opening (RAM) Baseline
Mean: 401.788 MB
Stdev: 6.341 MB (1.6%)
Runs: 388.7802734375 389.494140625 390.3921875 391.1859375 391.5078125 392.1640625 392.68984375 393.78125 394.85703125 395.4203125 395.828125 395.91796875 395.9287109375 396.1279296875 396.896875 397.975 398.1630859375 398.1904296875 398.47734375 398.76484375 398.7861328125 399.5171875 400.125 400.8701171875 400.97734375 401.1123046875 401.2734375 402.234375 402.2671875 402.9859375 403.181640625 403.203125 403.434375 404.15703125 404.16484375 404.1767578125 404.4375 404.45703125 404.69921875 404.93671875 405.3151041666667 405.61875 405.70390625 405.825 405.861328125 406.4541015625 406.915625 406.94609375 407.0171875 407.4986979166667 407.8640625 407.92734375 408.89453125 408.9401041666667 409.19375 409.30078125 413.67734375 414.63671875 418.3330078125

Current
Mean: 402.416 MB
Stdev: 4.748 MB (1.2%)
Runs: 391.196875 393.7890625 394.475 394.640625 395.359375 395.92109375 396.13359375 396.5419921875 397.81328125 397.82421875 397.84375 398.06484375 398.841796875 398.871875 398.871875 399.1953125 399.349609375 399.421875 399.6375 399.96171875 400.4697265625 400.5046875 400.7640625 400.86875 401.7734375 401.8546875 402.3958333333333 402.45 402.64296875 402.6705729166667 403.5859375 403.7578125 403.779296875 403.903125 403.91953125 404.193359375 404.29375 404.38515625 404.4328125 404.63671875 404.75859375 404.8625 404.9192708333333 405.03359375 405.19453125 405.378125 405.39921875 405.62265625 405.89296875 405.98125 406.169921875 407.1109375 407.7610677083333 408.52421875 410.03828125 410.271484375 412.12109375 412.66171875 413.7978515625
Chat opening (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Chat opening (CPU/UI) Baseline
Mean: 28.358 %
Stdev: 2.551 % (9.0%)
Runs: 24 24.4 24.4 24.5 24.7 25 25.4 25.4 25.4 25.6 25.9 26.2 26.3 26.3 26.5 26.7 26.7 26.8 27.1 27.2 27.2 27.3 27.4 27.4 27.5 27.5 27.8 27.9 28 28 28.1 28.2 28.3 28.3 28.3 28.7 28.9 29 29.1 29.2 29.4 29.4 29.6 30 30.4 30.5 30.7 30.8 30.9 30.9 31.5 31.6 32 32.2 32.4 32.4 32.9 33.3 35.6

Current
Mean: 28.605 %
Stdev: 2.281 % (8.0%)
Runs: 24.8 25.8 25.9 26 26 26.2 26.3 26.4 26.4 26.4 26.5 26.6 26.6 26.7 26.7 26.7 26.7 27.1 27.2 27.3 27.4 27.4 27.5 27.5 27.7 27.8 27.8 27.8 27.8 27.9 28 28 28.3 28.4 28.7 28.9 29.2 29.3 29.4 29.5 30 30.2 30.2 30.3 30.3 30.4 30.5 30.7 31.1 31.1 31.3 31.4 31.5 31.5 33 33.4 34.6 35
Money request - Open Manual Tracking Baseline
Mean: 127.049 ms
Stdev: 8.927 ms (7.0%)
Runs: 113.73311400040984 115.26025399938226 115.3577469997108 115.8112380001694 117.06335400044918 117.43530299887061 117.96256499923766 118.35693300142884 118.4366859998554 118.91247599944472 119.48881099931896 119.64705399982631 120.43632000125945 121.02608199976385 121.2032060008496 121.30501300096512 121.4641930013895 121.47945199906826 121.60551000013947 121.70576999895275 121.90474399924278 121.90694199874997 121.95629899948835 122.28544100001454 122.79500299878418 123.43212899938226 123.80456600151956 123.92488600127399 124.24617500044405 124.50565600022674 124.7731529995799 124.7961429990828 125.18599499948323 125.60148200020194 126.04370100051165 126.64274100027978 126.64623999968171 127.70373499952257 129.61608900129795 130.233642000705 130.3019609991461 130.3358559999615 130.93880200013518 131.2401130013168 133.09562199935317 133.23942100070417 133.44681799970567 133.9257809985429 134.95206700079143 135.29756699874997 136.8445640001446 137.60152200050652 138.5555010009557 142.53076200000942 144.68180300109088 147.24918700009584 147.2799069993198 148.70227000117302 149.99540200084448

Current
Mean: 125.792 ms
Stdev: 8.896 ms (7.1%)
Runs: 104.88557900115848 111.02042599953711 112.7988690007478 113.89819299988449 114.45459000021219 114.93473399989307 115.61551899835467 115.91870100051165 116.0143630001694 116.47843400016427 117.64164199866354 118.07547999918461 118.59549999982119 119.09407499991357 119.56660999916494 119.59509200043976 120.07560300081968 120.37479700148106 121.05387400090694 121.23559599928558 121.28259299881756 121.73181100003421 122.49352999962866 123.00443500094116 123.01590899936855 123.38033000007272 123.41174300014973 123.48584000021219 124.01965400017798 125.54838100075722 126.08361800014973 126.77347799949348 126.965860998258 127.17224099859595 127.50386499986053 127.51302099972963 127.65238399989903 128.36287400126457 128.40519300103188 129.48046899959445 129.6676030009985 130.2895919997245 130.843586999923 131.69942299835384 132.15738900005817 132.59757499955595 132.6233719997108 135.64497900009155 136.4392910003662 137.42297400161624 137.71093699894845 138.2685960009694 139.3441160004586 140.26407900080085 141.92036900110543 142.98034700006247 143.0963950008154 144.3701990004629
Money request - Open Contacts Baseline
Mean: 379.837 ms
Stdev: 105.650 ms (27.8%)
Runs: 247.14856000058353 252.1855879984796 253.28169699944556 256.05122900009155 258.9512529987842 262.5644530002028 264.75366199947894 268.92549600079656 270.76057899929583 274.0381269995123 274.25394699908793 274.7195640001446 274.7603360004723 277.4082440007478 277.66780599951744 278.71333799883723 278.88956700079143 279.6861569993198 279.9071859996766 283.1658129990101 289.9331060014665 292.27323399856687 292.5416260007769 298.6729330010712 300.43493700027466 300.59733099862933 300.98783399909735 301.1707359999418 307.49780300073326 323.74800699949265 384.4670409988612 398.07255099900067 430.85339400172234 432.6195880006999 441.80550200119615 443.43595400080085 447.3050539996475 447.99312299862504 452.4046629983932 455.5493980012834 458.15332099981606 459.7948409989476 461.83829700015485 468.87894699908793 474.316244000569 475.6310230009258 482.1636149995029 486.73270700126886 493.3275959994644 494.01688599959016 507.99820999987423 511.58325199969113 511.89298499934375 513.0996909998357 513.4295649994165 519.5986739993095 527.3977060001343 551.0241700001061 573.4074709992856 575.7192379999906

Current
Mean: 397.068 ms
Stdev: 105.120 ms (26.5%)
Runs: 250.69946300052106 250.72570800036192 259.48697900027037 259.66931200027466 267.5687659997493 268.5457769986242 268.9368489999324 269.8079430013895 269.9075119998306 271.1201990004629 272.2351890001446 272.51188199967146 273.45694999955595 276.57100399956107 281.65112300030887 282.8346759993583 283.83076999895275 284.87235500104725 285.4751379992813 288.00366199947894 288.95401999913156 290.0712489988655 298.7282309997827 326.8072099983692 330.84204100072384 418.9958500005305 422.73852599970996 428.5078129991889 431.56909200176597 437.0329189989716 442.3423669990152 447.5442299991846 455.27970400080085 455.43623900040984 456.566529000178 458.57942800037563 459.5402839984745 459.934651998803 471.0283199995756 471.56652799993753 471.6587730012834 473.3518060017377 476.6520189996809 478.4543869998306 478.8356929998845 479.5637619998306 480.11791999824345 480.9186200015247 482.51456700079143 485.8020029999316 496.51875799894333 508.1632889993489 513.4396979995072 517.5186769999564 518.8928230013698 539.878744000569 551.0246169995517 560.8811039999127 569.3523770011961 570.5490720011294
Money request - Open Create Baseline
Mean: 125.466 ms
Stdev: 9.121 ms (7.3%)
Runs: 104.27889000065625 105.66178400069475 108.35534599982202 109.43180299922824 110.87695400044322 112.37036100029945 114.49609399959445 114.51924600079656 115.0698649995029 115.34277300164104 115.62426800094545 118.34891800023615 118.52384500019252 119.10599800013006 119.37097200006247 119.79284700006247 121.15897599980235 121.43017599917948 121.72517899982631 121.77876800112426 122.23258499987423 122.4442139994353 122.6226399987936 122.66210999898612 123.71284999884665 124.55448400042951 124.60937600024045 124.6825770009309 124.69445799849927 125.33833800069988 125.72131399996579 126.20161999948323 126.60697500035167 126.65808199904859 126.86971000023186 127.49719300121069 127.93322700075805 128.62951700016856 129.33862300030887 129.62442999891937 129.69494700059295 131.2558180000633 131.25777199864388 132.2954099997878 132.4401450008154 133.23706100136042 133.4600419998169 133.73852499946952 134.06770899891853 134.25866699963808 134.49922700040042 135.47123299911618 136.02063000015914 136.46948199905455 136.58605999872088 137.07051600143313 138.9838459994644 139.11258999817073 139.64131700061262 148.52437399886549

Current
Mean: 124.318 ms
Stdev: 10.748 ms (8.6%)
Runs: 105.7945959996432 106.3972570002079 106.69840499944985 107.2253009993583 109.11849000118673 109.15893500111997 110.54496300034225 111.41097000055015 113.54520699940622 115.13659599982202 115.56416799873114 115.71061200089753 115.7159419991076 116.10209099948406 116.18225099891424 116.21061200089753 116.92561900056899 117.3961589988321 117.40759300068021 118.61531599983573 119.56388400122523 119.99503600038588 120.07580599933863 120.218302000314 120.53202299959958 120.81701700016856 121.13077799975872 121.52771000005305 121.9527589995414 122.140177000314 122.32665999978781 122.8859870005399 123.17769400030375 123.36022900044918 124.17110200040042 124.25406900048256 124.78800399973989 125.88081900030375 129.12288399972022 130.9215089995414 130.98933999985456 131.23893200047314 131.49804699979722 132.01273600012064 132.18420499935746 132.7835290003568 133.55790199898183 133.88700399920344 134.37988299876451 134.5167239997536 135.41491699963808 136.0975750014186 138.20609599910676 138.26159599982202 139.73653100058436 141.28430199995637 141.9282629992813 142.64074700139463 145.07633499987423 153.66752099990845
Money request (CPU) Baseline
Mean: 169.719 %
Stdev: 2.887 % (1.7%)
Runs: 164.61220025593335 164.896439739779 165.68976577550893 166.16135832823903 166.25213606332335 166.30026079063853 166.31406413790162 166.32277553737916 166.4601444940262 166.62502845878774 166.88114541211894 167.2764300442949 167.29608454965478 167.3485480797642 167.87270861768025 168.32802572798153 168.37630293901682 168.4878831005043 168.63717257175105 168.650179046686 168.66121499417963 168.73935765197558 168.8375802100713 168.97840173055806 169.05061732750704 169.07364709175647 169.09197318318704 169.15050671007393 169.32706670811848 169.48002242354295 169.51668906418126 169.53767621176254 169.60595579400334 169.79053765387138 169.79194694788907 170.16856090445364 170.51744252527266 170.5743137312377 170.95877318184873 171.06067725188626 171.11583320618348 171.6568675365687 172.0640755970778 172.15858345922663 172.37778302936664 172.39469820245557 172.7165968613979 172.89361000102434 173.82965580885275 174.47200115521966 174.78740958971395 175.150885251793 175.59571084018833 176.2206234490217 176.3999814418495

Current
Mean: 168.659 %
Stdev: 3.113 % (1.8%)
Runs: 160.9261477045908 162.14282765306513 164.0504420188817 164.68040517905408 164.77404169359045 164.84112538967298 165.17738832371128 165.45269165709556 165.4738548839355 166.11204462796067 166.44914521829958 166.48058975776468 166.51400474070945 166.56632181795237 166.74409619337385 166.7758891889556 167.00771997275348 167.1351955381468 167.1548555487325 167.1966264607881 167.59691714273816 167.6436123339992 167.74570808001113 167.74608007026023 167.8877149123305 168.03210453451692 168.0663348422824 168.29828838937914 168.70548447451222 168.86889808189758 168.8701631554542 169.0146202294504 169.14172005514544 169.31137083873253 169.40330898123676 169.41874279660203 169.69568017332256 169.7352633609077 169.74981523707868 169.83403076123827 170.06167135336273 170.33725137348728 170.5903170925344 170.5999919953014 170.80152912056656 171.1973969275708 171.21398098597078 171.66212272782192 171.84139219361586 172.85522729707677 172.856310898095 173.19665972651967 173.72953651320182 175.11008044032175 175.70112606049196 176.75217093084098
Money request (FPS) Baseline
Mean: 59.283 FPS
Stdev: 0.742 FPS (1.3%)
Runs: 57.90661630135215 57.91297781806806 57.91709289705112 57.976115940555616 57.99386696515667 58.06106166603333 58.082610224718074 58.119985146436605 58.17386034785406 58.260632846071466 58.3834954518437 58.39830113731642 58.44136363132003 58.46011301541227 58.46047197971805 58.5655551316955 58.73094029827447 58.87849532783111 58.928201024187835 59.07449167505688 59.18179373429929 59.288035163113896 59.31846166172685 59.355937864200236 59.44832052306722 59.51752034810173 59.51964438854151 59.54064100976619 59.55060336735791 59.604862506028134 59.63473263207441 59.68065568902203 59.72467321943739 59.76374216101081 59.823137144393144 59.82870412852082 59.83052114745941 59.83294316908421 59.84264328150584 59.84882060335052 59.8930597626553 59.894155494323385 59.90672177629993 59.93096067574979 59.95804710200923 59.972066007059425 59.99203389666913 59.99702783713726 60 60 60 60 60 60 60 60 60 60

Current
Mean: 59.339 FPS
Stdev: 0.676 FPS (1.1%)
Runs: 57.19819772531535 57.73952238395216 58.08377046706979 58.22297518589688 58.229402344085386 58.282121739067556 58.45467655859876 58.5516091608144 58.64813558702838 58.71140728343708 58.736076074423515 58.86158816585007 58.86783001849509 58.875382596738554 58.934252088947396 58.9455431027349 58.976120369874785 59.01773446176333 59.02244044482136 59.11227423865197 59.1150331731792 59.15589434514668 59.23771621364131 59.30853681851266 59.32033092639376 59.32385031878068 59.38729120647436 59.38905732395278 59.4106315765771 59.43732180896267 59.44686815873051 59.60424777395196 59.62048327291632 59.70533788682013 59.77773500042076 59.89995533025279 59.90053197172207 59.925630889100425 59.934809604580586 59.98493032170061 59.990285591196525 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60 60
Money request (RAM) Baseline
Mean: 471.871 MB
Stdev: 7.702 MB (1.6%)
Runs: 452.75830078125 457.45033482142856 458.1841517857143 460.25341796875 461.78738839285717 463.02197265625 463.20089285714283 463.4345703125 463.74565972222223 463.97998046875 464.7974330357143 465.80636160714283 466.13330078125 466.1439732142857 466.21651785714283 466.30712890625 466.5439453125 468.09814453125 468.13560267857144 468.3076171875 468.80580357142856 469.3955078125 469.57899305555554 469.63895089285717 471.33203125 471.537109375 471.64019097222223 471.78515625 471.8916015625 472.3671875 472.3681640625 472.49072265625 472.73974609375 472.87548828125 473.81396484375 474.01025390625 474.080078125 474.84423828125 475.0009765625 475.08251953125 475.31752232142856 475.3583984375 475.5322265625 476.1513671875 476.1923828125 476.79991319444446 477.34228515625 478.8017578125 478.91064453125 479.61474609375 480.7509765625 481.6931423611111 482.6591796875 482.98779296875 484.9068080357143 485.302734375 489.2109375 491.4228515625

Current
Mean: 472.557 MB
Stdev: 7.173 MB (1.5%)
Runs: 456.25537109375 458.5361328125 459.5494791666667 461.42689732142856 461.83370535714283 462.6875 462.98095703125 463.44287109375 463.94810267857144 464.8861607142857 465.3115234375 465.458984375 465.58203125 466.4326171875 467.869140625 468.02783203125 468.93191964285717 468.9814453125 469.1591796875 470.22309027777777 470.3984375 470.6650390625 470.73604910714283 471.0576171875 471.443359375 471.4771205357143 471.50341796875 472.283203125 472.34130859375 472.44677734375 472.46240234375 472.98716517857144 473.10302734375 473.1450892857143 473.20269097222223 473.37646484375 473.43191964285717 473.89208984375 474.50737847222223 475.1494140625 476.02455357142856 476.49267578125 476.9501953125 477.0424107142857 477.9408482142857 478.4873046875 478.64453125 478.7314453125 479.13671875 479.28466796875 480.67529296875 480.80322265625 481.17529296875 481.85107421875 483.0263671875 483.234375 484.9931640625 485.23828125 485.76025390625 486.767578125
Money request (CPU/JS) Baseline
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Current
Mean: 0.000 %
Stdev: 0.000 % (NaN%)
Runs: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Money request (CPU/UI) Baseline
Mean: 39.218 %
Stdev: 1.231 % (3.1%)
Runs: 36.2 37.1 37.4 37.6 37.8 37.8 38 38.1 38.2 38.3 38.3 38.3 38.4 38.4 38.5 38.5 38.5 38.5 38.6 38.7 38.7 38.7 38.7 38.8 38.8 38.9 39 39.1 39.1 39.1 39.1 39.1 39.2 39.2 39.3 39.4 39.4 39.5 39.6 39.7 39.8 39.8 40 40 40.2 40.2 40.4 40.5 40.7 41 41.2 41.2 41.6 41.8 42.1 42.1

Current
Mean: 39.251 %
Stdev: 1.142 % (2.9%)
Runs: 36.6 37 37.4 37.5 37.7 37.7 37.8 38 38 38.1 38.2 38.2 38.3 38.3 38.4 38.4 38.5 38.5 38.5 38.5 38.6 38.8 38.9 38.9 39 39.1 39.3 39.4 39.4 39.6 39.6 39.7 39.7 39.7 39.8 39.8 39.9 39.9 39.9 39.9 39.9 40 40 40 40.1 40.1 40.1 40.2 40.3 40.4 40.5 41 41 41 41.1 41.2 41.9

Copy link
Contributor

@Expensify/mobile-deployers 📣 Please look into this performance regression as it's a deploy blocker.

Copy link
Contributor

🚀 Deployed to staging by https://github.com/grgia in version: 9.1.29-0 🚀

platform result
🖥 desktop 🖥 success ✅
🕸 web 🕸 success ✅
🤖 android 🤖 success ✅
🍎 iOS 🍎 success ✅

@289Adam289
Copy link
Contributor Author

289Adam289 commented Apr 18, 2025

@kavimuru There might be some confusion regarding #59017 probably caused by my testing steps. The behavior on phones you have provided is expected. The user should not be able to swipe down on an image before taping and opening a new screen with image only. The reproduction can be seen in an original video from #59017. cc @grgia @shubham1206agra for confirmation

Copy link
Contributor

🚀 Deployed to production by https://github.com/marcaaron in version: 9.1.29-10 🚀

platform result
🖥 desktop 🖥 success ✅
🕸 web 🕸 success ✅
🤖 android 🤖 failure ❌
🍎 iOS 🍎 success ✅

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
DeployBlockerCash This issue or pull request should block deployment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants