Hi there
I have successfully exported my project to eclipse but have two errors during its building (Android 4.1 API 16):
The method onServiceConnected(ComponentName, IBinder) of type BillingService must override a superclass method BillingService.java /_Stack/src/com/giderosmobile/android/plugins/googlebilling line 657 Java Problem
The method onServiceDisconnected(ComponentName) of type BillingService must override a superclass method BillingService.java /_Stack/src/com/giderosmobile/android/plugins/googlebilling line 669 Java Problem
There are those methods:
@Override public void onServiceConnected(ComponentName name, IBinder service) {... }
@Override public void onServiceDisconnected(ComponentName name) { ... }
I have to comment
@Override directive every time when I want to deploy my project.
Comments
In Eclipse, can you right click project and then Properties > Java Compiler > Select "Enable project specific settings" > Compiler compliance level = 1.6 and then clean your project.
Likes: duke2017
Thank you
Likes: duke2017