1) Remove the library-4.0.0.jar and android-support-4.0.jar from the lib project directory (or delete the link). In my opinion, the setup guide is a bit unclear. The Android Support Library should be added to the ABS-Library-Project, and not to your project.
2) Try to clear both the library project and the implementation project. In addition, right-click each of the projects and select Android -> Fix project properties
3) Make sure that the “Is a library” checkbox on the “Properties → Android” screen of the library project is checked and the library project is added on this screen in the implementation project (and NOT as an external / Java library)
4) Try importing the “ABS Trial”, which can be downloaded from the ABS website to see if there is the same error.
5) In Java classes where you get errors related to "R cannot be resolved ...", make sure you import import com.yourcompany.yourapp.R; rather than ABS- R Fix all the errors you get (or just temporarily remove the code that throws the errors) so that your R file project can be generated properly. The error in the manifest should disappear after that.
source share