Courtesy of KonstaKANG

  • aluminium@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    ·
    7 months ago

    Yeah, Android when it comes to “smoothness” is an enigma to me. For games it makes sense since the GPU is weak. But for browsing and stuff it should be plenty fast.

    You could also try to AOT compile apps with these adb commands to maybe get better performance:

    adb shell pm compile -a -f --check-prof false -m everything

    adb shell pm compile -a -f --check-prof false --compile-layouts

    adb shell pm bg-dexopt-job

    • fury@lemmy.world
      cake
      OP
      link
      fedilink
      English
      arrow-up
      1
      ·
      7 months ago

      The first and third commands made things load up a bit quicker. Thanks! Second command seems to have been removed. I wish I could figure out what’s limiting the system to 30 fps on this display…it OUGHT to be able to handle 60 fps at this resolution

    • limerod@reddthat.comM
      link
      fedilink
      English
      arrow-up
      1
      ·
      7 months ago

      adb shell pm compile -a -f --check-prof false -m everything

      adb shell pm compile -a -f --check-prof false --compile-layouts

      adb shell pm bg-dexopt-job

      What do these commands do? From 1st to last.

      • aluminium@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        ·
        7 months ago

        in short : Android apps contain dex bytecode, which through these commands get compiled into native machine code.

        • limerod@reddthat.comM
          link
          fedilink
          English
          arrow-up
          1
          ·
          7 months ago

          I know that. I was just asking what the actual adb commands do like the compile-layouts parameter, the last bgdexopt job. Why are all 3 necessary. Samsung has a galaxy app booster that appears to do something similar.

          • aluminium@lemmy.world
            link
            fedilink
            English
            arrow-up
            2
            ·
            7 months ago

            Ah, unfortunately I don’t know it either. I always saw these 3 mentioned when talking about the topic. My guess with the --compile-layouts flag would be that it maybe precalculates layout xml files to your exact screen size and resolution.