You are using an absolute path for the classpath but You have moved the project to a device with a different path structure. To solve this you have to use a relative pathing structure.
In your .classpath change:
<classpathentry kind="lib" path="C:/Users/Chris/Downloads/last.fm-bindings-0.1.1.jar" sourcepath=""/><classpathentry kind="lib" path="C:/Users/Chris/Downloads/last.fm-bindings-0.1.1.jar" sourcepath=""/>
to
<classpathentry kind="lib" path="last.fm-bindings-0.1.1.jar"/>
I hope this solves the issue.