Search results

  1. P

    Post [GUIDE] How to flash Treble GSI ROM

    Please read this: https://source.android.com/devices/bootloader/fastbootd and use fastboot from decent platform-tools https://developer.android.com/studio/releases/platform-tools your fastboot MUST support userland fastboot & related commands.
  2. P

    Post [GUIDE] How to flash Treble GSI ROM

    You need userland fastboot, not bootloader fastboot because bootloader cannot access system partition in dynamic partition.
  3. P

    Post [GUIDE] How to flash Treble GSI ROM

    Can you test the audio jack with the following options enabled? Phh Treble Settings > Qualcomm features > Use alternate audio policy Phh Treble Settings > Misc features > Disable audio effects
  4. P

    Post [GUIDE] How to flash Treble GSI ROM

    Try setting current camera position through app's menu button ( set cam out, set cam in)
  5. P

    Post [GUIDE] How to flash Treble GSI ROM

    Could you open Windows device manager and check status of device called Lmi? (USB VID = 0x0000, PID = 0x4ee0) If Windows complains about missing driver, use this utility to set up driver for it (requires dotnet 3.5) https://github.com/fawazahmed0/Latest-adb-fastboot-installer-for-windows/
  6. P

    Post [GUIDE] How to flash Treble GSI ROM

    Headphone jack fix: Enable following options in settings: Phh Treble Settings > Qualcomm features > Use alternate audio policy Phh Treble Settings > Misc features > Disable audio effects and reboot
  7. P

    Thread [GUIDE] How to flash Treble GSI ROM

    * I'm not responsible for bricked devices, dead SD cards, thermonuclear war, or you getting fired because the alarm app failed The bootloader needs to be unlocked. (http://en.miui.com/unlock/) You need fastboot from the latest platform-tools (at least, it MUST support fastbootd(userland...
  8. P

    Post GSI for Xiaomi Poco F2 Pro (Redmi K30 Pro)

    Update: Installing https://github.com/KhushrajRathod/VoLTE-Fix enables VoLTE and fixes MMS. (VoLTE and MMS work on SIM slot 1. Did not tested on slot 2) Since there is no TWRP that can mount system in super partition, I repackaged it into the Magisk module. Here is Magisk repackaged version of...
  9. P

    Post GSI for Xiaomi Poco F2 Pro (Redmi K30 Pro)

    Camera works, but fingerprint seems not working. Also, VoLTE does not work if you need that feature. (didn't find a way to re-enable VoLTE) Yes, if I got some time, I'll post step by step tutorial ---------- Post added at 14:40 ---------- Previous post was at 14:38 ---------- SMS only text...
  10. P

    Post GSI for Xiaomi Poco F2 Pro (Redmi K30 Pro)

    Flashed phh AOSP and currently using it. MMS does not works and tethering seems broken.
  11. P

    Post [BUG] MagiskHide does not work on Hanabank app. (strace log attached)

    Hmm, I used sh which included in LineageOS.... I think Android's default sh couldn't handle that script's syntax properly. Default sh is quite crippled compared to GNU/Linux's one (bash, zsh, etc..) Could you try running this script using bash instead of sh? If you don't have bash on your...
  12. P

    Post Magisk General Support / Discussion

    First, sorry for late reply. I was on vacation. :) I think you need this little helper script: while true; do while ! ps | grep -q -i $1; do :; done; ps | grep -i $1 | while read a b c; do strace -e open -f -e trace=file,ptrace -p $b 2>&1; done; done If you saved this script as...
  13. P

    Post [BUG] MagiskHide does not work on Hanabank app. (strace log attached)

    First, sorry for late reply. I was on vacation. :) I used this script to attach strace to fresh app process. while true; do while ! ps | grep -q -i $1; do :; done; ps | grep -i $1 | while read a b c; do strace -e open -f -e trace=file,ptrace -p $b 2>&1; done; done For example, if...
  14. P

    Thread [BUG] MagiskHide does not work on Hanabank app. (strace log attached)

    Hello, everyone. Few days ago, I found Hanabank app (com.hanabank.ebk.channel.android.hananbank) detects Magisk hide. I ran strace against Hanabank app, and I got some suspicious openat(2) returns -EACCES and even some files are not filtered by Magisk Hide (returns file descriptor successfully)...
  15. P

    Post Magisk General Support / Discussion

    Magisk don't work on Hanabank app (strace log attached & suspicious syscall) Hello everyone. Today, I found Hanabank app (com.hanabank.ebk.channel.android.hananbank) detects Magisk hide. I ran strace against Hanabank app, and I got some suspicious openat(2) returns -EACCES and even some files...