In the google generated code, that comes with the google play APK expansion i get the following error:
I didn’t touch the code, so I don’t think it’s my bad. can any one help me out here?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Your project in Eclipse is probably configured to use Java 1.5 , but the generated classes are using the
@Overrideannotation for interface methods. In Java 1.5@Overridecan only be applied to methods overriding a superclass method, not methods implemented from an interface.Open the project properties and set the java compiler level to 1.6 and make sure on the Build Path > Libraries tab a Java 1.6 library is selected.