G4lile0 / ESP32-WiFi-Hash-Monster

WiFi Hash Purple Monster, store EAPOL & PMKID packets in an SD CARD using a M5STACK / ESP32 device
MIT License
928 stars 104 forks source link

Fix for lib_deps not merging resolved versions in dep tree #33

Closed tobozo closed 2 years ago

tobozo commented 2 years ago

An automated build started to fail after LovyanGFX latest version was raised (0.4.3 => 0.4.4).

Apparently platformio would download two different versions of the LovyanGFX library and throw duplicate declaration errors at compilation. This didn't happen before because the version in plaformio.ini was equal to the latest version on the repository.

Changing the library order in lib_deps fixed it, platformio is now resolving LovyanGFX to a single version as expected.

G4lile0 commented 2 years ago

Thanks!