Thanks everyone for your help. Managed to download everything following Jason's method.
However upon building Android image, I got the following error
cts/apps/CtsVerifier/tests/src/com/android/cts/verifier/CtsVerifierActivityTest.java:47: cannot find symbol
symbol : variable welcome
location: class com.android.cts.verifier.R.id
mWelcomeTextView = (TextView) mActivity.findViewById(R.id.welcome);
^
1 error
make: *** [out/target/common/obj/APPS/CtsVerifierTests_intermediates/classes-full-debug.jar] Error 41
Complete the build, I need to change the source to
mWelcomeTextView = (TextView) mActivity.findViewById(R.id.welcome_text);
Is this correct?