0

enter image description here

I am trying to send an email using my application made in Android Studio, but something is wrong. Android Studio says that the symbols cannot be resolved, so nothing won't work. Are there any solutions for this problem?

thehulk
  • 53
  • 1
  • 3
  • 8

2 Answers2

1

Make it as library Source

Copy Required .jar file as per version from here

Then copy it and paste it into libs(recommended) folder or any where you want in project directory. Lastly right click on the .jar (which is you pasted) file and select Add As Library.

Abhishek
  • 3,348
  • 3
  • 15
  • 34
0

Put your library in the lib folder and in your root dependency add the line

compile files('libs/your library name')

and then sync your gradle Try this

Rakshit Nawani
  • 2,604
  • 14
  • 27