CTS Verifier Application Skeleton

Create a skeletal application for the CTS Verifier and tests
for the verifier itself. This is just a scaffold and
doesn't include any tests yet.

You should be be able to build the smoke tester and run the
tests for the verifier using:

runtest --path cts/apps/CtsVerifier

This should leave the smoke tester installed on your device.

Another way is build the app using "make cts"...

adb install -r out/target/product/generic/data/app/CtsVerifier.apk

Doing "make cts" will deposit the apk into the
repository/testcases directory. The app will be packaged as part
of the CTS zip bundle.

Change-Id: Ifd0080a444a0183736d064f68feb04ee49a4a1c6
diff --git a/apps/Android.mk b/apps/Android.mk
new file mode 100644
index 0000000..4343259
--- /dev/null
+++ b/apps/Android.mk
@@ -0,0 +1,17 @@
+#
+# Copyright (C) 2010 The Android Open Source Project
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#      http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+include $(call all-subdir-makefiles)