I got the same errors with the following configuration:
-Arduino IDE 1.0
-Grove Serial LCD v1.1b (from Grove Starter Bundle)
-SerialLCD v1.0b-Library (from Wiki)
-NewSoftLibrary (from the Wiki)
The following sample code from the wiki:
// include the library code:
#include <SerialLCD.h>
#include <NewSoftSerial.h> //this is a must
// initialize the library
SerialLCD slcd(11,12);//this is a must, assign soft serial pins
void setup() {
// set up :
slcd.begin();
// Print a message to the LCD.
slcd.print("hello, world!");
}
void loop() {
// Turn off the blinking cursor:
slcd.noBlink();
delay(1000);
// Turn on the blinking cursor:
slcd.blink();
delay(1000);
}
Having done a quick google, it seems that the SerialLCD lib may need to be updated for Android 1.0. It looks like WProgram.h has been deprecated/replaced.