Hi.
I want to use the code from the following website:
davanum.wordpress.com/2007/12/22/android-send-email-via-gmail-actually-via-smtp/
It starts with:
package org.apache.android.mail;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
I've downloaded a ZIP-file from the website. It contained 2 JAR-files and a lot of other files. I added the Jar-files to the Classpath.. but in vain. On the first line, Eclipse tells me:
The declared package "org.apache.android.mail" does not match the expected package ""
And on the other lines I am told:
The import android cannot be resolved
Can somebody please tell me what to do
