Common issues and solutions.
Symptoms: Phone stuck in boot animation or infinite restart
Fixes:
- Boot to recovery:
adb reboot recovery - Wipe cache: Recovery β Wipe Cache Partition
- If still stuck: Format data and clean flash
- Check logcat:
adb logcat | grep -i error
Common causes:
- Flashed incompatible GApps
- Dirty flash from very different ROM
- Corrupted system partition
Might mean: System is still loading (wait 2-3 minutes)
If truly stuck:
- Reboot to recovery
- Flash original stock ROM
- Restore from backup
Try:
- Clear app cache: Settings β Apps β [app] β Clear Cache
- Reinstall app
- Wipe Dalvik cache in recovery
If all apps crash:
- May need clean flash
- Check if ROM is stable for your device
WiFi not detecting:
- Reboot device
- Check if WiFi driver is in ROM
- May need to flash custom kernel with WiFi support
Mobile data not working:
- Check APN settings (should auto-populate)
- Try airplane mode toggle
- Check if modem firmware matches ROM version
See: Battery Optimization Guide
- Reboot after flashing
- Check if ROM disabled init.d
- Flash Magisk again
- Check CPU frequency:
adb shell cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_max_freq - Try different governor (interactive, schedutil)
- May be thermal throttling β check temp
# Last 100 lines of logcat
adb logcat -d | tail -100
# Save full dmesg
adb shell dmesg > dmesg.txt
# bugreport (comprehensive)
adb bugreport bugreport.zipShare these when asking for help on XDA or GitHub!