Hello. I am not a programmer but I often use Processing. Now I am trying to use the amazonaws library with very bad results. First of all I built the folder structure to store the 3 files named “aws-iot-device-sdk-java.jar”, in the only way Processing accepted it.
If I build the folder
libraries ┐
aws-iot-device-sdk-java-1.3.10 ┐
library ┐
files
Processing generate the following error at the starup
The library “aws-iot-device-sdk-java-1.3.10” cannot be used. Library names must contain only basic letters and numbers. (ASCII only and no spaces, and it cannot start with a number)
but if I don’t create the last folder “library” the startup is ok.
Now I start to write the program, but the line
import com.amazonaws.services.iot.client.*;
generate the errors
No library found for com.amazonaws.services.iot.client
and
Libraries must be installed in a folder named ‘libraries’ inside the sketchbook folder (see the Preferences window).
The package “com.amazonaws.services” does not exist. You might be missing a library.
Someone have a suggestion?
Thank you very much