我不知道谷歌应用程序计费中的IInAppBillingService.aidl文件是什么。它是java文件还是它在项目中的工作方式。同样主要的是我们如何在android中使用这个类型的文件来实现其他功能。还想知道当我们构建apk时它是如何编译的。有没有人知道.aidl文件
发布于 2016-03-29 11:36:14
如果您想了解aidl文件,可以在这里查看详细信息:
http://developer.android.com/guide/components/aidl.html
另外,如果您想了解InAppBillingService.aidl,请看以下内容:
IInAppBillingService.aidl is an Android Interface Definition Language (AIDL) file that defines the interface to the In-app Billing Version 3 service. You will use this interface to make billing requests by invoking IPC method calls.
integrate.html
发布于 2016-03-29 11:32:21
根据文件,
IInAppBillingService.aidl is an Android Interface Definition Language (AIDL) file that defines the interface to the In-app Billing Version 3 service. You will use this interface to make billing requests by invoking IPC method calls.本链接integrate.html#billing-add-aidl中有更多详细信息
发布于 2016-03-29 11:43:48
InAppBillingService是提供应用程序内计费版本3及更高版本的服务。
该服务提供以下功能:
1. Provides a new API to get details of in-app items published for the app including
price, type, title and description.
2. The purchase flow is synchronous and purchase information is available immediately
after it completes.
3. Purchase information of in-app purchases is maintained within the Google Play system
till the purchase is consumed.
4. An API to consume a purchase of an inapp item. All purchases of one-time
in-app items are consumable and thereafter can be purchased again.
5. An API to get current purchases of the user immediately. This will not contain any
consumed purchases.https://stackoverflow.com/questions/36282852
复制相似问题