HOW TO PORT ROM FOR QUALCOMM DEVICES.( BY RAUSH)

HOW TO PORT ANY ROMS FOR QUALCOMM DEVICES.

THIS GUIDE IS FOR PORTING ROMS OF QUALCOMM DEVICES SHARING SAME CHIPSET. AND BY THIS METHOD YOU CAN PORT ANY ROM LIKE, MIUI,CYANOGEN MODE ROMS AND ANY ONE OF YOUR CHOICE.

DISCLAIMER: This guide is written to help the emerging devs. Soft bricking is common in porting ROMs. But, I am not responsible if you somehow hard-brick your device. Do it at your own risk.but I will take all the credit you can give me if it works for you.


                                                            PREREQUISITES

                                                           Things required for porting:


➤ Device for which the ROM you want to port.
➤ Port ROM i.e. the ROM of other devices sharing same chipsets which you want to port(here we have MIUI7)
➤ Base ROM i.e. the ROM which is exclusively made for your device.
➤ PC with windows or any linux OS.
➤ Android Image Kitchen to modify boot.img
➤ Notepad++ to edit scripts.
Meld to compare files and folders
➤ Winrar or 7zip for dealing zips
➤ Apktool (for advance tasks only)
➤ And a normal working mind and some common sense

                                                COMMON INFORMATIONS


➤ This guide will teach you to port ROMs from devices with similar hardware specs and same Qualcomm Snapdragon chipset.
➤ The Port ROM and the Base ROM should have the same android version.
➤ ROMs containing DAT(system.new.dat) files should be properly unpacked. For base ROM you can follow my youtube video for this.
➤ I'm writing this guide on the basis of this configuration:

                                             ⏩ BASE ROM: Micromax Knight (ARM64)(MSM8939)      
                                             ⏩ BASE ROM: Stock system( system.img from firmware)   
                                             ⏩ ANDROID VERSION: 5.0.2 Lollipop                                 
                                             ⏩ PORT DEVICE: YU Yureka (ARM64)(MSM8939)           
                                             ⏩ PORT ROM: MIUI7 Lollipop                                              

                                                          Now let's start porting.

                                                PREPARING PORTING ENVIRONMENT

 1  Make sure you have plenty of storage in your PC.
 2  Make a folder named EXP MIUI (you can take wahtever name you want)
 3  Inside that folder create two folders: (i) BOOT-EDITING (ii) ROM-PORTING
  In ROM-PORTING folder create two folder named as BASE and PORT and Create same folder as BASE and PORT in BOOT-EDITING folder too.
 5  Now place the extracted Port ROM(i.e. MUI7) in PORT folder and Base ROM(i.e. STOCK) in BASE follder.
 6  Similarly place the MIUI7 boot.img in BOOT-PORT folder and STOCK boot.img in BOOT-BASE folder.

These steps are required to properly organize the project and will be helpful in our later discussions.

                                                            CLEANING UP:
Just delete some unwanted files and keep only 'META-INF' folder, 'data' folder(if available), 'system' folder, 'boot.img' and 'file_contexts' file(if available) in PORT Folder.

                     Now let's do some work to make the Port ROM boot first.

  Open the updater-script file in PORT/META-INF/com/google/android/ with Notepad++.
 2  Delete the first line containing "get_device_compatible(...."or"assert(getprop..." which restricts the flashing process to other devices,
 3  Then delete the lines containing scripts for flashing radio,modem image etc. which are not required for our base device.

                                                    Now you are ready to go.
                                                          boot.img editing

1. Use Android Image Kitchen to unpack the base and port boot.img in BOOT-BASE and BOOT-PORT folder.

2. Replace the files boot.img-zImageboot.img-dtbboot.img-ramdisk.cpio.gz (not so important) in BOOT-PORT/split_img/ with that of BOOT-BASE/split_img.


                                                                 REPLACING boot.img FILES

3. Then in the BOOT-PORT/ramdisk/ folder compare the file fstab.qcom with that of the base i.e. BOOT-BASE/ramdisk/fstab.qcom. (You can use Meld for it.)


                                                  EDITING fstab.qcom USING MELD: STEP 1


                                               EDITING fstab.qcom USING MELD: STEP 2

After this repack your boot.img and place it in your port ROM folder (i.e. PORT) and create a flashable zip. You will be able to boot this time. But, you may face sensors, sound, camera, ext sd-card etc. issues. So let us move on to fix those issues through boot.img first.


4. If the port device doesn’t support external sd-card but your base device does then you make the following changes to your BOOT-PORT/ramdisk/init.qcom.rc file:

Remove ‘#’ from the lines containing scripts for mounting or fusing ‘sdcard1’. You can do this simply by comparing the port init.qcom.rc with that of base through Meld application. (Note: You may also need to add some lines if missing in the port init.qcom.rc)

5. After sd-card, let’s move towards fixing camera, led, sensors etc. issues. For that we need to edit the init.rc and init.target.rc files.

6. Even after doing the above steps you may find that sensors are not working. So for that you have to do the following step –

Compare the port uneventd.qcom.rc in BOOT-PORT/ramdisk folder with that of base and add the missing lines to the port. This will fix your sensors issue.

7. Similarly compare other BOOT-PORT files like uneventd.rcfile_contexts etc. with that of BOOT-BASE and use your brain to replace required lines.

8. To fix other issues use your common sense.

9. If you are doing boot.img editing at the beginning of your project, then some of you may find that even after doing all these steps, sensors, led, camera etc. are not working. But don’t lose heart, for that you have to start your ROM Porting.

ROM Porting

Before starting ROM porting, your base and port ROM should be properly deodexed as I discussed before. If you have correctly edited the boot.img then the following steps will help you to solve your bugs.

1. Debloating Port ROM: Just delete unwanted apps or bloatwares from your port ROM. You will find them in /data/, /system/app/ and /system/priv-app/ folders.

2. According to my previous instructions you should have placed your port ROM to PORT folder and base ROM to BASE folder.

3. Adding missing files and folders: You may add missing files from BASE/system/bin/to PORT/system/bin/. For this you can just copy all the files from BASE/system/bin/to your PORT/system/bin/ without replacing any file.
Similarly you can do the same process in system/xbin/system/fonts/system/etc/system/usr/ etc. and their sub-folders.

But always use your brain to decide which files you should add and which you should not.

You may also add some missing folders from your base ROM  to your port ROM, e.g. system/tts folder, system/etc/init.d and other important folders.

4. Fixing permission related issues: Now you have to work on system/etc/permissionsfolder. Just compare handheld_core_hardware.xml and platform.xml of port ROM with that of base and add or replace some lines if required.

You can do the same for some other permission files if required, but as I am always saying use your common sense.

5. Replacing files: Copy and replace files in system/etc/firmware and in system/etc/wifi from base to port.

Copy and replace the files goodix.klgpio-keys.klGeneric.kl in system/usr/keylayout/from base to port.

We will discuss more about replacing files in bug-fixing section.

6. Open system/framework/framework-res.apk of both base and port with Winrar in two different windows but don’t extract. Then navigate to framework-res.apk/res/xml/ of base and copy storage_list.xml and power_profile (optional) and paste to the Winrar window of port framework-res.apk/res/xml/ and replace the existing files. Then close the Winrar window.

Now let’s move on to our bug-fixing section.

Bug-Fixing

If you have properly edited the boot.img then only these fixes will help you.

Copy and replace the following files from Base (ROM-PORTING/BASE) to Port (ROM-PORTING/PORT) to solve the given issues:

No sound issue:

system/lib/hw/
audio.primary.msm8916.so
audio.primary.default.so
system/lib64/hw/
audio.primary.msm8916.so
audio.primary.default.so


Home or any other button not working:
system/usr/keylayout/
goodix.kl
gpio-keys.kl (important)
Generik.kl

External sd-card not showing:
Follow the Step 6 in ROM Porting section. 


Video hw encoding/decoding not working:
system/etc/firmware/
venus.*** (all files starting with ‘venus’)
Distorted Outgoing Sound during Phone call:
system/etc/acdbdata/MTP/
MTP_***.acdb (all files)
Sensors not working:
system/lib/hw/sensors.msm8916.so (or sensors.lsm6db0.so)
system/lib64/hw/sensors.msm8916.so (or sensors.lsm6db0.so)
system/lib/libsensorservice.so
system/lib64/libsensorservice.so


Led notification not working:
system/lib/hw/lights.msm8916.so
system/lib64/hw/lights.msm8916.so


Vibration not working:
system/lib/libhardware_legacy.so
system/lib64/libhardware_legacy.so


FM not working:
system/lib/qcomfm_jni.so
system/lib64/qcomfm_jni.so


Wifi not working:
system/lib/modules/wlan.ko
[Note: In MIUI, wlan.ko is renamed as pronto_wlan.ko and is also kept in system/lib/modules/pronto/ folder, so you have to replace in both the places.]


In some phones you may not find wlan.ko file. In that case you may try replacing these files (thanks @Divyansh747):
system/lib/libwcnss_qmi.so
system/lib64/libwcnss_qmi.so


For slow WiFi network and other WiFi related issues replace these files:
system/etc/wifi/ -- all files
system/etc/firmware/wlan/ -- all files



Camera and flash not working:
system/vendor/lib/
libactuator_***.so (all files starting with ‘libactuator’)
libchromatix_***.so (all files starting with ‘libchromatix’)
libmmcamera_***.so (all files starting with ‘libmmcamera’)
[Note: If such files are also available in your BASE/system/vendor/lib64/ then you have to copy those files also to their respective place in PORT]


WARNING: Do not replace any file unnecessarily, because it may give rise to new bugs in place of solving it. Always be specific!

Build.Prop Editing

You can edit required parts of build.prop to reflect the brand, model no. etc. according to your preference. You may also add some tweaks and other things to save battery and to add features.

(But in MIUI 7 according to my experience changing the ro.product.manufacturer gives rise to issue in video recording through third-party apps and changing the ro.product.device trims some features from the ROM.)

Now your Porting Project is ready to be flashed and to be reviewed. Congrats!


You Can Also Follow My Youtube Video For This Guide. Watch Here.


Giving Credits

Last but not least when you successfully port your ROM, always give credits to the Port and Base Rom developers. Also give credits to the people from whom you took help. Always be generous in giving credits because it will not take anything from you, on the other hand it will increase your reputation and strengthen people’s faith in your work.


If you are taking help from this guide in your ROM Porting then don't forget to give some credit to me too.

Follow me on:

Facebook     Instagram     Telegram


CREDIT:
NITESH PRASAD

119 comments:

  1. how to solve rear camera not open issue but selfy camera full ok

    ReplyDelete
    Replies
    1. you mean your rear camera option is not showing in your camera app,right?
      which device do have?

      Delete
    2. camera app fully ok selfy always sowing but rear not sowing.tested for camera 360--google camera

      Delete
    3. walton primo v2 qualcomm 615

      Delete
    4. https://drive.google.com/file/d/0B7NvG6wa_DI2bDBWZ09WaXgzWGM/view

      Download this zip and extract it and replace the files in system folder from your stock's system folder. And flash it.
      Don't copy any extra folder and don't edit updater-script.

      Delete
    5. it's working boss.very very thx & fb id link plz

      Delete
    6. https://m.facebook.com/raushankumarrko?ref=bookmarks

      And that's my work & also welcome

      Delete
  2. octa-core Qualcomm Snapdragon 615 (MSM8939) processor clocked at 1.5GHz, the smartphone comes with 2GB of RAM and packs 16GB of storage. ...camera 13+8

    plz suggest custom rom cynogenmode 13.plz boss

    ReplyDelete
  3. https://drive.google.com/file/d/0B7NvG6wa_DI2bWktOVVQZ2FQdjg/view

    Download this and port this.
    And there is a lot of ROM supporting cm13, search for custom ROM of lux for more.

    ReplyDelete
  4. Replies
    1. https://alpharom.blogspot.co.uk/p/how-to-port-any-roms-for-qualcomm.html?showComment=1481902185633&m=1

      Delete
    2. same to same port.ok or added other tuturial

      Delete
  5. no same to same follow this post for porting.
    and tell if any problem occurs.

    ReplyDelete
    Replies
    1. Bro how to fix bugs camera not working and sound not working and flash not working and google play service not working my device is oppo a37f (rom mui8)

      Delete
  6. mm 6.0 or 7.0 custom rom suggest 3 best rom link plz

    ReplyDelete
  7. i am port all tuturial step by step aicp rom.but repack system.new.dat not installed.plz solve this problem

    ReplyDelete
  8. This comment has been removed by the author.

    ReplyDelete
  9. Attempting to port CM13 rom, my boot.img in both the stock rom and the rom I wish to port does not contain "boot.img-dtb" can I omit moving it over or will I not be able to port without this file?

    ReplyDelete
    Replies
    1. You can give that a try.
      And did you used the Android image kitchen for extracting boot.img?

      Delete
  10. Sir what I have to edit in updater scrip do I want to delete the first line contain "asser(getprop......);" or other sir

    ReplyDelete
  11. I can carry a rom of a moto g3 for the lg spirit h440
    -I have the 6.0 stock of the lg spirit as a base
    -y cyanogenmod 13 of moto g3 as port

    ReplyDelete
  12. Yes, you can take moto g3 cm 13 rom as port rom if both share the same chipset.

    ReplyDelete
  13. ROM of all motorola it is a 32bit ROM offline.

    ReplyDelete
  14. Hey, um I wanted to port a Grace UX ROM for Galaxy A5 (16) to my Redmi 2. SD 410, same android version as base and port and same resolution. But I'm having difficulties in porting the boot image correctly. It always gives me a bootloop, can you please help? I can link you to the stock and the port rom's boot img

    ReplyDelete
    Replies
    1. Only change files from split_img folder. Don't do anything with ramdisk folder or you can say leave fstab.qcom of port rom.

      Delete
  15. Hey I am porting the same rom for my knight2 e471 can you please tell me exactly which line I have to delete in
    /META-INF/com/google/android/

    ReplyDelete
    Replies
    1. Change the line related to get_prop from updater script from the folder you mentioned.

      Delete
  16. Using very unpopular phone lyf water 7. No custom ROM developed for it yet. What should I use as a base ROM? Will miui 8 ROM from yu yureka work as a port ROM.?
    Specs of lyf water 7:
    Processor-1.5GHz octa-core,
    Processor make-Qualcomm Snapdragon 615,
    RAM-2GB,camera-13 & 5.
    Pls help..

    ReplyDelete
    Replies
    1. Cm12.1 booted..only mobile data sent recieve bug remain

      Delete
    2. You can port it for your device.

      Delete
    3. You can take Lenovo vibe k5 roms as port....same specs latest k5 with sd615 ....

      Delete
  17. How to fix..mobile data connected but no data sent recieve..pls help. Device lyf water 7 SD615

    ReplyDelete
    Replies
    1. You have to change few files from stock's system.
      Contact me @ fb.com/imraush

      Delete
  18. How to fix no sum card issue I am porting resurrection remix from for Knight 2

    ReplyDelete
    Replies
    1. Message me @ fb.com/imraush
      I'll tell you which files do you need to change.

      Delete
  19. I got a Asus max, with snapdragon 615 marshmallow, msm 8916. Can I get a rom which I can probably port please?

    ReplyDelete
    Replies
    1. Yup, but you gotta search for the similar chipset devices and then pick the custom ROM and port it.

      Delete
  20. Boss , can yu port a custom rom for walton VX ? We are helpless

    ReplyDelete
  21. Boss can you port a custom rom for walton VX ?

    ReplyDelete
  22. Hai
    I have a Lyf wind 4s with qulcom snapdragon 210 msm8909 with 2gb ram and 1.3 GHz quadcore processor .5 inch 720* 1280 can u please find a custom ROM to port .I can't find it can u help me...?? Pls..

    ReplyDelete
    Replies
    1. Use Honor y6 as port rom ...search XDA for roms ....

      Delete
  23. Can i use this guide on exynos chipset?

    ReplyDelete
  24. Sir how to extract system.new.DAT I was unable to extract and repack plz guide me this is my email I'd plz mail me:- ak8334974@gmail.com
    Plz send your reply on this mail I'd

    ReplyDelete
  25. Sir I really wanna port colours is for my yu yunique for yu yuphoria both are same chipset and specs can port plz tell me the new method
    I have ported using your given method and when I flashed ROM through twrp there is only showing yu logo and not booting what can I do now
    Is there any new method plz reply me sir

    ReplyDelete
  26. in latest roms we are not geting etc lib etc folders jus they are publishing only build.prop
    whats to do for that
    for that

    ReplyDelete
  27. Can you help me port cm13 for my Lyf water f1s having sd652 processor ?

    ReplyDelete
    Replies
    1. Follow above steps carefully.
      And text me on fb for more help.
      Thanks.
      @ fb.com/imraush

      Delete
    2. I want to port nougat on my lyf f1s which is marshmallow exclusive
      Can i port via this method

      Delete
  28. Suggest me custom room for Amazon fire phone which can easily ported

    ReplyDelete
    Replies
    1. Please find it by yourself on Google.
      Because I'll do the same to find it.
      And text me if anything you want to know related to porting or bug fixing.
      @ fb.com/imraush

      Delete
  29. Fire phone has Snapdragon 800

    ReplyDelete
  30. Sir Can't Cross port of android versions take like 5.1.1 stock and 6.0 as port

    ReplyDelete
    Replies
    1. Means having a lolipop kernel i can port Marshmallow ROMs?

      Cuz my device doesn't has source code

      Delete
  31. Brother, which custom rom(nougat) should I port for this: octa-core Qualcomm Snapdragon 615 (MSM8939), 2GB of RAM, 16GB of storage, camera 13+8 and it's lollipop(5.0.2) version.

    ReplyDelete
  32. When I flashed the port rom, it flashes quickly and says installed successfully. But when I pressed reboot, it said no os installed

    ReplyDelete
  33. Please Fix, Rom Miui 8 On Device Oppo A37f,
    Bug :
    Sound
    Kamera Not work
    Video

    Please Fix it..

    ReplyDelete
  34. Sir I have Lyf wind 4 powered by 1.1GHz quad-core Qualcomm Snapdragon 210 MSM8909 processor and with 1GB of RAM.
    Which is the best ROM to my device

    ReplyDelete
  35. I ported CM 12.1 from CM 11 on my Galaxy Avant. I can't receive incoming calls (nothing happens, even though the person on the other end has ringing), and I can make outgoing calls fine. Any idea on where to start to fix this?

    ReplyDelete
  36. My rom is successfully installed but it not booting it stuck. It also not going to bootanimation
    My device is galaxy grand prime
    Please reply fast what should i do

    ReplyDelete
  37. i trying to port nubia ui to yureka mobile but i try flash it gives error like symlink: some symlinks failed error how to fix this.

    ReplyDelete
  38. This comment has been removed by the author.

    ReplyDelete
  39. I ported RR rom for cool 1 dual it is stucked on starting apps what to do plz help

    ReplyDelete
  40. can anyone port flyme 6 os latest build for yureka with no bug and stable

    ReplyDelete
  41. can anyone port flyme 6 os latest build for yureka with no bug and stable

    ReplyDelete
  42. Sorry for late replies on your comments.
    Please if anyone wants to know something more or facing issues with the guide, text me on my fb.
    Fb.com/imraush

    ReplyDelete
  43. How to fix sensor and wifi in my ported rom msm8939 based on msm8916 from which device I ported is same as mine but only one thing that porting device has sensor.lsm6db0.so but mine has sensor.goldfish.so

    Plz help

    ReplyDelete
    Replies
    1. change file system/bin/sensor
      system/lib/libsensorservices
      system/lib/hw/sensor....

      Delete
  44. Im having le2 x526 sd 652 octacore 1.8ghz suggest me a rom to port plz

    ReplyDelete
  45. bro sim cards are geting detecting what i should edit in boot.img

    ReplyDelete
  46. sir plz suggest a volt rom for my Snapdragon 615 chipset..

    ReplyDelete
  47. I need help on fixing camera bug
    Msm8916

    ReplyDelete
  48. can i port cm14.1(moto g4 play) for vivo y51?

    ReplyDelete
  49. hello sir
    i have qualcomm msm8926 chinese phone m811
    how to port twrp or rom in it

    ReplyDelete
  50. Hello Can U Help me To Port RR Nougat from Resmi 2 To Vivo Y51 ?? Because I have delete 1 line (assert) in meta-inf but always Eror 7 in twrp

    ReplyDelete
    Replies
    1. My Phone Is MSM8916 Snapdragon 410 64bit Android 5.1.1 LMY47V

      Delete
    2. Follow the same process.
      If you want some personal stuff then text me @ fb.com/imraush

      Delete
  51. This comment has been removed by the author.

    ReplyDelete
  52. Hello, great tutorial, thanks!
    Just a pair of questions, first, when unpacking boot.img with Android Kitchen, I'm not obtaining the boot.img-dtb file, is it important?
    Second, should I simply replace the fstab.qcom from base to port? Because if we compare it to make it the same of the original, then we can simply replacing, but surely I'm missing something...
    Thank you!

    ReplyDelete
  53. Hey bro.
    Recently I ported a Oreo rom for my device.
    And the port was successful and it booted.
    And it's having very less issues.
    But there are some.
    Which you can call major issues.
    1. Baseband is unknown now and both sim not working.
    2.audio is not working after that bug fix too.

    Your help will be appreciated answer soon.

    ReplyDelete
  54. great thread bro
    can you please suggest to me the roms i can port it to my c9 pro
    thanks in advance

    ReplyDelete
  55. Bro. I have LYF Wind 6. With Snapdragon 210 MSM6909 SoC with 1 GB of ram and android 5.1.1. Suggest me good custom ROMs. Please boss. Thank you!

    ReplyDelete
  56. Thank you for a great post! I notice it's written for porting between two ROMs of the same Android version. It also limits to Qualcomm. Here is my situation. I have a Canadian version of Note 8.0 tablet, SGH-I467M. It is based on Exynos. I bought this one over the AT&T version, SGH-I467, because the Canadian one has the bootloader unlocked, and they share the same LTE bands with the U.S. I didn't buy the international version, GT-N5120 because the radio wouldn't work in the U.S. Unfortunately, most of the custom ROMs out there are made for GT-N5120. I'm porting for the purpose of upgrading my stock ROM from Android 4.4.2 to a more recent OS. Since GT-N5120 and SGH-I467M are the same hardware except programmed with different modem codes, is it possible to port the Lineage OS (Nougat 7.1.2) made for GT-N5120 to my SGH-I467M (on 4.4.2 today) even though they are not the same Android version and not Qualcomm either? Thanks

    ReplyDelete
  57. Would you please suggest me a port ROM for my device which is LYF water 1 running lollipop 5.1.1 and sd615 msm8939 processor , screen:5 inches , screen resolution:1080×1920 p , ram:2GB , ROM:16GB .?????
    Can I port Nougat ROM for my lollipop device??

    ReplyDelete
  58. Would you please suggest me a port ROM for my device which is LYF water 1 running lollipop 5.1.1 and sd615 msm8939 processor , screen:5 inches , screen resolution:1080×1920 p , ram:2GB , ROM:16GB .?????
    Can I port Nougat ROM for my lollipop device??

    ReplyDelete
  59. How to fix Infra red sensors?

    ReplyDelete
  60. Model number: LS-5016

    processor info: Qualcomm technologies, Inc MSM8909

    android version: 5.1.1

    kernel version : 3.10.49

    build number: LS-5016-S17A_LYF_L11EN_202_160229

    software version:LYF_LS-5016_00_211_170215

    Twrp: twrp recovery img port

    ReplyDelete
  61. Base
    SM-G530H XXU
    Los13
    MSM8916
    Port
    SM-J320V
    Stock TW-MM
    MSM8916
    I did eevrything you had said with the kernel. But the problem is:my phone stucks in splash logo(beore bootanimation), then reboots to recovery. What should i do?

    ReplyDelete
  62. I want to port nexus 5x stock rom for my qiku terra, but when extract boot.img that don't have boot.img-dtb. Edit init.qcom.rc and init.bullhead.rc is ok ? If i can port miui v9 android 7.0 for my device(android 6.01) is ok ? Thank!

    ReplyDelete
  63. Bro how to solve when logo appears after it dies back And keept repeating
    I port from Lollipop to nougat miui 10

    ReplyDelete
  64. Hi, I own a unpopular smartphone that is smartron tphone, due to which no custom Roms found till date. My phone is still in marshmallow and no updates OEM. Can you please suggest me a suitable rom for port. Specs SD 810, 4 GB, 64 gb

    ReplyDelete
    Replies
    1. Sorry for inconvenience, I am new to editing roms, if possible to provide detailed guide would be highly appreciated. Thanks

      Delete
  65. Hi everyone! I have successfully ported mini 8 to my phone following this guide but the only bug that I am faced with is that the InCallUI keeps crashing.
    Please I need help fixing it.
    Thanks

    ReplyDelete
  66. Hi sir
    While extracting boot.img I dont get the file named boot.img-dtb. Is it normal??

    ReplyDelete
  67. Need custom ROM for Lyf wind 4s

    ReplyDelete
  68. Need cyanogen based custom ROM for LS-5018

    ReplyDelete
  69. how to contact you fb.com/imraush

    ReplyDelete
  70. i flashed mi4i rom to z9mini it booted successfully, but no network sim is detected and region is fixed pls any help is welcome

    ReplyDelete
  71. Would you please suggest me a port ROM for my device ZTE G720T, running Kitkat 4.4.4 and sd615 msm8939 processor , screen:5 inches,screen resolution:1080×1920p,ram:2GB, ROM:16GB?

    ReplyDelete
  72. Will it work for android 10..??

    ReplyDelete
  73. This comment has been removed by the author.

    ReplyDelete
  74. How to fix the fingerprint scanner

    ReplyDelete
  75. Im trying to fix finger print on display on my Redmi k20 pro, moving from miui to oxygen os. What is that im missing here?

    ReplyDelete
  76. this work on 2021?
    with diferent processor?

    ReplyDelete