Problem with adding libraries!

I will be glad to help! Can’t add libraries!
Throws an error - #include errors were detected. Change includePath. Wavy lines are disabled for this translation unit


Снимок экрана от 2022-10-22 20-42-00

  1. You have to combine all used libraries into one lib_deps statement
  2. For a library stored in a git repository, you just give the link to the repository as it appears in “Code”, don’t give the link to a single .h file
    grafik

So you would have to write

lib_deps =
   asukiaaa/SomeSerial@^1.1.3
   https://github.com/amperka/gprs-shield.git

in the platformio.ini, like the documentation says.

Thank you so much!!!