I'm very new to Android Programming. I've developed many programmes in .net but I've no experience about Android. My problem is:
I've created a java class and I want to call it from main activity.
myClass newMyClass = new myClass();
String memberID = newMyClass.executeHttpGet("http://www.mysite.com");
Android studio puts a red underline at the newMyClass.executeHttpGet.
Error description is: Unhandled exception: java.lang.Exception.
I'm sure, there is a very simple solution, but I couldn't find it yet!
Could you please help me ?