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の最新バージョンで使用しています。