I am trying to implement In app billing
service in my Andorid application.
I've added the IMarketBillingService.aidl
file to my project in Eclipse. Then Eclipse autogenerated the IMarketBillingService.java
file, but with many errors.
@Override public android.os.IBinder asBinder() { return mRemote; }
- implements android.os.IInterface.asBinder
- The method asBinder() of type IMarketBillingService.Stub.Proxy must override asuperclass method
@Override public android.os.Bundle sendBillingRequest(android.os.Bundle bundle) throws android.os.RemoteException
{
android.os.Parcel _data = android.os.Parcel.obtain();
android.os.Parcel _reply = android.os.Parcel.obtain();
android.os.Bundle _result;
......
}
- The method sendBillingRequest(Bundle) of type IMarketBillingService.Stub.Proxy must override a superclass method
- implements com.android.vending.billing.IMarketBillingService.sendBillingRequest
Can anyone help me with this?
I am using Mac, Eclipse Juno with last version of Android SDK.