Particle Dev can't find library

Hi there,
i’m new to particle and I have a problem with the inclusion of a library.

I connected my RaspberryPi Zero W to particle and I want to read the BMP180 sensor.

Into Particle Dev (on Windows) i create a new project and I included the library “Adafruit_BMP085” from Particle library panel. I copied the library into my project.

To include the library i used "#include “Adafruit_BMP085.h”.

When I compile I receive the error “…/Adafruit_BMP085.h: No such file or directory”.

I also try to include: "#include “Adafruit_BMP085/Adafruit_BMP085.h” but nothing change.

If i use the web compiler everything work and I can read the temperature.

Where I’m wrong during the library inclusion?

Thanks for the help!

That is a known issue with the “compatibility” directory inside the src folder which only contains .h files with the single line like #include "../sameName.h".
If you copy a library to your project, you need to remove this folder (in your case probably ./lib/BMP180/src/BMP180) and you should also remove the examples folder.