Still feeling my way around Android Studio. Looking at a bunch of tutorials and examples out on the web – and I'm finding out that studio must have evolved quiet a bit since it's 1st beta release and that many (perhaps most) of the information scattered out on the web references earlier versions of studio then what I'm currently running and some of the information may no longer apply and even be complexly wrong for my current version of Android Studio. I'm currently running
- Android Studio 1.1,0
- Build AI-135.1740770 built on February 18, 2015
- JRE 1.7.0_71614 amd64x
and my SDK is up to date as of 4/4/15
This has left me with a bunch of questions. My current question is about
import android.support.v4.app.Fragment;
Some tutorials say that when using studio, you need to find the .jar file and manually copy it into your projects .lib folder. Other examples just use the import statement and never talk about needing to manually copy it into your projects .lib folder. Or adding it to the manifest file.
Which method is correct?