我正在尝试In app billing
在我的 Andorid 应用程序中实现服务。
我已将该IMarketBillingService.aidl
文件添加到我在 Eclipse 中的项目中。然后 Eclipse 自动生成了该IMarketBillingService.java
文件,但有很多错误。
@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
谁能帮我这个?
我正在使用 Mac、Eclipse Juno 和最新版本的 Android SDK。