Library upload and example build

This topic refers to issue #3900 of platformio-core repository. I try to upload a library “fortuneteller” for SD card management, available here: GitHub - stoire/fortune-teller: A PlatformIO package to handle SD content and files. The examples do not run. My suspicion of error refers to some syntax or logic mistake, but I need some peer review for this conundrum. The setup files are as recommended by the platform.

I thank you sincerely for the help.

I don’t have these problems.

Testing with

[env:uno]
platform = atmelavr
board = uno
framework = arduino
lib_deps = 
    painlessmesh/arduinoUnity@^0.0.2
    https://github.com/brunolnetto/einstein.git
    https://github.com/brunolnetto/fortuneteller.git
    arduino-libraries/SD @ ^1.2.4
    SPI

and src\main.cpp

#include <Arduino.h>
#include <converters/fundamental.h>

long int TIME_SPAN = 1000;
long int BAUD_RATE = 9600;

void setup(){
	Serial.begin(BAUD_RATE);
}

void loop() {
	Serial.println(now());
	delay(TIME_SPAN);
}
Checking size .pio\build\uno\firmware.elf
Building .pio\build\uno\firmware.hex
Advanced Memory Usage is available via "PlatformIO Home > Project Inspect"
RAM:   [=         ]   9.8% (used 200 bytes from 2048 bytes)
Flash: [=         ]  13.2% (used 4258 bytes from 32256 bytes)
=================== [SUCCESS] Took 2.70 seconds ===================

I wonder if the examples may be on src folder. I will try and come back with a response.

It worked with your platformio.ini. It does not work with the following library dependencies setup, although naively similar:

lib_deps =
brunolnetto/Einstein@^1.2.0
brunolnetto/FortuneTeller@^1.0.1
arduino-libraries/SD @ ^1.2.4
painlessmesh/arduinoUnity@^0.0.2
SPI

If I use that library version description I get the version with the missing ; and it won’t work.

String now(bool = false) 

hence I why I used a git reference https://github.com/brunolnetto/einstein.git.

You got my back. Thanks!