From what I understand from your post, you are trying to build the Sample_BackgroundScan application and run it on your Samsung Tablet. You have run into issues at both the compilation step and the run step, and you are using Android Developer Tools Plugin for Eclipse (
ADT).
It looks like your issue is that when you imported the project, before you built it, you exported a signed application package and ran in on the tablet. This is when you saw the logCat errors. Then you cleaned the project (which runs a build) and saw compilation issues.
The following are the general steps to run ANT Android Projects from source successfully:
1. When you import the project into ADT, create a
libs\ folder under the root directory. In that libs folder, add
android_antlib.jar (found under Android_ANT_SDK_4.2\API of the SDK).
2. Ensure your
Build Path is set-up correctly, and is set to export Android Private Libraries and Android Dependencies. See
http://www.thisisant.com/forum/viewthread/3983/.
3.
Clean the project. Then
Run it as an Android Application. There is no need to export Sample_BackgroundScan as running it as an Android Application will suffice for development puproses. See
Building and Running from Eclipse with ADT for more information.
I would recommend searching for general help on the internet on how to use ADT to develop Android Applications to help with you adjust to the new environment, as well as reading up on the documentation available at
Android Developer Tools.