I have done something similar to this post Post
But getting these errors Error
I have downloaded the Java Mail API but I don't know how to import it into the android studio IDE. PLease could someone help me
I have done something similar to this post Post
But getting these errors Error
I have downloaded the Java Mail API but I don't know how to import it into the android studio IDE. PLease could someone help me
You need to put the *.jar files in project_path/src/main/libs. Right click *.jar file and add as library.
You could integrate your libs by editing your build.gradle file:
dependencies {
compile files('<path to your jar>')
}