I\'ve just started using Libgdx to practice making games and I used the project creation .jar provided on the site to create the initial projects. However an error shows up
The error you are seeing is related to the Android SDK configuration, and is not specific to libGDX. The compiler does not know which Android libraries to compile against.
Use the LibGDX tutorials to setup your projects correctly. (See https://github.com/libgdx/libgdx/wiki/Manual-project-setup#android-project-setup. The first step in there does the Android-specific setup.)
If you do not want to create a new project but fix an existing project, the following steps should configure a project to build against Android:
Properties
and pick the Android
sectionThat should add the required Android libraries to the build path as a side-effect.
Please, also check to have ADT installed on Eclipse.