2016-03-29 9 views
0

Ich weiß nicht, was ist IInAppBillingService.aidl Datei in Google In-App-Abrechnung. ist es Java-Datei oder wie es im Projekt funktioniert. auch Hauptsache ist, wie wir diese Dateityp für andere Funktion in Android Studio verwenden können. und wollen auch wissen, wie es kompiliert, wenn wir apk bauen. jemand wird wissen, über .aidl DateiWas ist IInAppBillingService.aidl in der Google In-App-Abrechnung?

+0

Es ist ein Weg Objekt zwischen zwei Verfahren zu übergeben. –

Antwort

2

Wenn Sie über AIDL Datei kennen Sie hier im Detail überprüfen:

http://developer.android.com/guide/components/aidl.html

auch wenn Sie InAppBillingService.aidl löschen möchten, hier ist es:

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.

http://developer.android.com/google/play/billing/billing_integrate.html

0

InAppBillingService ist der Service, die in-App-Abrechnung Version 3 und darüber hinaus zur Verfügung stellt.

Dieser Dienst bietet die folgenden Funktionen:

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. 
Verwandte Themen