File: IInAppBillingService.java

package info (click to toggle)
osmid 0.8.0~repack-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,968 kB
  • sloc: cpp: 69,544; ansic: 5,781; java: 3,000; sh: 41; makefile: 6
file content (971 lines) | stat: -rw-r--r-- 60,501 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
/*
  ==============================================================================

   This file is part of the JUCE library.
   Copyright (c) 2017 - ROLI Ltd.

   JUCE is an open source library subject to commercial or open-source
   licensing.

   The code included in this file is provided under the terms of the ISC license
   http://www.isc.org/downloads/software-support-policy/isc-license. Permission
   To use, copy, modify, and/or distribute this software for any purpose with or
   without fee is hereby granted provided that the above copyright notice and
   this permission notice appear in all copies.

   JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
   EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
   DISCLAIMED.

  ==============================================================================
*/

package com.android.vending.billing;
/**
 * InAppBillingService is the service that provides in-app billing version 3 and beyond.
 * This service provides the following features:
 * 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.
 *
 * All calls will give a response code with the following possible values
 * RESULT_OK = 0 - success
 * RESULT_USER_CANCELED = 1 - User pressed back or canceled a dialog
 * RESULT_SERVICE_UNAVAILABLE = 2 - The network connection is down
 * RESULT_BILLING_UNAVAILABLE = 3 - This billing API version is not supported for the type requested
 * RESULT_ITEM_UNAVAILABLE = 4 - Requested SKU is not available for purchase
 * RESULT_DEVELOPER_ERROR = 5 - Invalid arguments provided to the API
 * RESULT_ERROR = 6 - Fatal error during the API action
 * RESULT_ITEM_ALREADY_OWNED = 7 - Failure to purchase since item is already owned
 * RESULT_ITEM_NOT_OWNED = 8 - Failure to consume since item is not owned
 */
public interface IInAppBillingService extends android.os.IInterface
    {
        /** Local-side IPC implementation stub class. */
        public static abstract class Stub extends android.os.Binder implements com.android.vending.billing.IInAppBillingService
        {
            private static final java.lang.String DESCRIPTOR = "com.android.vending.billing.IInAppBillingService";
            /** Construct the stub at attach it to the interface. */
            public Stub()
            {
                this.attachInterface(this, DESCRIPTOR);
            }
            /**
             * Cast an IBinder object into an com.android.vending.billing.IInAppBillingService interface,
             * generating a proxy if needed.
             */
            public static com.android.vending.billing.IInAppBillingService asInterface(android.os.IBinder obj)
            {
                if ((obj==null)) {
                    return null;
                }
                android.os.IInterface iin = obj.queryLocalInterface(DESCRIPTOR);
                if (((iin!=null)&&(iin instanceof com.android.vending.billing.IInAppBillingService))) {
                    return ((com.android.vending.billing.IInAppBillingService)iin);
                }
                return new com.android.vending.billing.IInAppBillingService.Stub.Proxy(obj);
            }
            @Override public android.os.IBinder asBinder()
            {
                return this;
            }
            @Override public boolean onTransact(int code, android.os.Parcel data, android.os.Parcel reply, int flags) throws android.os.RemoteException
            {
                switch (code)
                {
                    case INTERFACE_TRANSACTION:
                    {
                        reply.writeString(DESCRIPTOR);
                        return true;
                    }
                    case TRANSACTION_isBillingSupported:
                    {
                        data.enforceInterface(DESCRIPTOR);
                        int _arg0;
                        _arg0 = data.readInt();
                        java.lang.String _arg1;
                        _arg1 = data.readString();
                        java.lang.String _arg2;
                        _arg2 = data.readString();
                        int _result = this.isBillingSupported(_arg0, _arg1, _arg2);
                        reply.writeNoException();
                        reply.writeInt(_result);
                        return true;
                    }
                    case TRANSACTION_getSkuDetails:
                    {
                        data.enforceInterface(DESCRIPTOR);
                        int _arg0;
                        _arg0 = data.readInt();
                        java.lang.String _arg1;
                        _arg1 = data.readString();
                        java.lang.String _arg2;
                        _arg2 = data.readString();
                        android.os.Bundle _arg3;
                        if ((0!=data.readInt())) {
                            _arg3 = android.os.Bundle.CREATOR.createFromParcel(data);
                        }
                        else {
                            _arg3 = null;
                        }
                        android.os.Bundle _result = this.getSkuDetails(_arg0, _arg1, _arg2, _arg3);
                        reply.writeNoException();
                        if ((_result!=null)) {
                            reply.writeInt(1);
                            _result.writeToParcel(reply, android.os.Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
                        }
                        else {
                            reply.writeInt(0);
                        }
                        return true;
                    }
                    case TRANSACTION_getBuyIntent:
                    {
                        data.enforceInterface(DESCRIPTOR);
                        int _arg0;
                        _arg0 = data.readInt();
                        java.lang.String _arg1;
                        _arg1 = data.readString();
                        java.lang.String _arg2;
                        _arg2 = data.readString();
                        java.lang.String _arg3;
                        _arg3 = data.readString();
                        java.lang.String _arg4;
                        _arg4 = data.readString();
                        android.os.Bundle _result = this.getBuyIntent(_arg0, _arg1, _arg2, _arg3, _arg4);
                        reply.writeNoException();
                        if ((_result!=null)) {
                            reply.writeInt(1);
                            _result.writeToParcel(reply, android.os.Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
                        }
                        else {
                            reply.writeInt(0);
                        }
                        return true;
                    }
                    case TRANSACTION_getPurchases:
                    {
                        data.enforceInterface(DESCRIPTOR);
                        int _arg0;
                        _arg0 = data.readInt();
                        java.lang.String _arg1;
                        _arg1 = data.readString();
                        java.lang.String _arg2;
                        _arg2 = data.readString();
                        java.lang.String _arg3;
                        _arg3 = data.readString();
                        android.os.Bundle _result = this.getPurchases(_arg0, _arg1, _arg2, _arg3);
                        reply.writeNoException();
                        if ((_result!=null)) {
                            reply.writeInt(1);
                            _result.writeToParcel(reply, android.os.Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
                        }
                        else {
                            reply.writeInt(0);
                        }
                        return true;
                    }
                    case TRANSACTION_consumePurchase:
                    {
                        data.enforceInterface(DESCRIPTOR);
                        int _arg0;
                        _arg0 = data.readInt();
                        java.lang.String _arg1;
                        _arg1 = data.readString();
                        java.lang.String _arg2;
                        _arg2 = data.readString();
                        int _result = this.consumePurchase(_arg0, _arg1, _arg2);
                        reply.writeNoException();
                        reply.writeInt(_result);
                        return true;
                    }
                    case TRANSACTION_stub:
                    {
                        data.enforceInterface(DESCRIPTOR);
                        int _arg0;
                        _arg0 = data.readInt();
                        java.lang.String _arg1;
                        _arg1 = data.readString();
                        java.lang.String _arg2;
                        _arg2 = data.readString();
                        int _result = this.stub(_arg0, _arg1, _arg2);
                        reply.writeNoException();
                        reply.writeInt(_result);
                        return true;
                    }
                    case TRANSACTION_getBuyIntentToReplaceSkus:
                    {
                        data.enforceInterface(DESCRIPTOR);
                        int _arg0;
                        _arg0 = data.readInt();
                        java.lang.String _arg1;
                        _arg1 = data.readString();
                        java.util.List<java.lang.String> _arg2;
                        _arg2 = data.createStringArrayList();
                        java.lang.String _arg3;
                        _arg3 = data.readString();
                        java.lang.String _arg4;
                        _arg4 = data.readString();
                        java.lang.String _arg5;
                        _arg5 = data.readString();
                        android.os.Bundle _result = this.getBuyIntentToReplaceSkus(_arg0, _arg1, _arg2, _arg3, _arg4, _arg5);
                        reply.writeNoException();
                        if ((_result!=null)) {
                            reply.writeInt(1);
                            _result.writeToParcel(reply, android.os.Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
                        }
                        else {
                            reply.writeInt(0);
                        }
                        return true;
                    }
                    case TRANSACTION_getBuyIntentExtraParams:
                    {
                        data.enforceInterface(DESCRIPTOR);
                        int _arg0;
                        _arg0 = data.readInt();
                        java.lang.String _arg1;
                        _arg1 = data.readString();
                        java.lang.String _arg2;
                        _arg2 = data.readString();
                        java.lang.String _arg3;
                        _arg3 = data.readString();
                        java.lang.String _arg4;
                        _arg4 = data.readString();
                        android.os.Bundle _arg5;
                        if ((0!=data.readInt())) {
                            _arg5 = android.os.Bundle.CREATOR.createFromParcel(data);
                        }
                        else {
                            _arg5 = null;
                        }
                        android.os.Bundle _result = this.getBuyIntentExtraParams(_arg0, _arg1, _arg2, _arg3, _arg4, _arg5);
                        reply.writeNoException();
                        if ((_result!=null)) {
                            reply.writeInt(1);
                            _result.writeToParcel(reply, android.os.Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
                        }
                        else {
                            reply.writeInt(0);
                        }
                        return true;
                    }
                    case TRANSACTION_getPurchaseHistory:
                    {
                        data.enforceInterface(DESCRIPTOR);
                        int _arg0;
                        _arg0 = data.readInt();
                        java.lang.String _arg1;
                        _arg1 = data.readString();
                        java.lang.String _arg2;
                        _arg2 = data.readString();
                        java.lang.String _arg3;
                        _arg3 = data.readString();
                        android.os.Bundle _arg4;
                        if ((0!=data.readInt())) {
                            _arg4 = android.os.Bundle.CREATOR.createFromParcel(data);
                        }
                        else {
                            _arg4 = null;
                        }
                        android.os.Bundle _result = this.getPurchaseHistory(_arg0, _arg1, _arg2, _arg3, _arg4);
                        reply.writeNoException();
                        if ((_result!=null)) {
                            reply.writeInt(1);
                            _result.writeToParcel(reply, android.os.Parcelable.PARCELABLE_WRITE_RETURN_VALUE);
                        }
                        else {
                            reply.writeInt(0);
                        }
                        return true;
                    }
                    case TRANSACTION_isBillingSupportedExtraParams:
                    {
                        data.enforceInterface(DESCRIPTOR);
                        int _arg0;
                        _arg0 = data.readInt();
                        java.lang.String _arg1;
                        _arg1 = data.readString();
                        java.lang.String _arg2;
                        _arg2 = data.readString();
                        android.os.Bundle _arg3;
                        if ((0!=data.readInt())) {
                            _arg3 = android.os.Bundle.CREATOR.createFromParcel(data);
                        }
                        else {
                            _arg3 = null;
                        }
                        int _result = this.isBillingSupportedExtraParams(_arg0, _arg1, _arg2, _arg3);
                        reply.writeNoException();
                        reply.writeInt(_result);
                        return true;
                    }
                }
                return super.onTransact(code, data, reply, flags);
            }
            private static class Proxy implements com.android.vending.billing.IInAppBillingService
            {
                private android.os.IBinder mRemote;
                Proxy(android.os.IBinder remote)
                {
                    mRemote = remote;
                }
                @Override public android.os.IBinder asBinder()
                {
                    return mRemote;
                }
                public java.lang.String getInterfaceDescriptor()
                {
                    return DESCRIPTOR;
                }
                @Override public int isBillingSupported(int apiVersion, java.lang.String packageName, java.lang.String type) throws android.os.RemoteException
                {
                    android.os.Parcel _data = android.os.Parcel.obtain();
                    android.os.Parcel _reply = android.os.Parcel.obtain();
                    int _result;
                    try {
                        _data.writeInterfaceToken(DESCRIPTOR);
                        _data.writeInt(apiVersion);
                        _data.writeString(packageName);
                        _data.writeString(type);
                        mRemote.transact(Stub.TRANSACTION_isBillingSupported, _data, _reply, 0);
                        _reply.readException();
                        _result = _reply.readInt();
                    }
                    finally {
                        _reply.recycle();
                        _data.recycle();
                    }
                    return _result;
                }
                /**
                 * Provides details of a list of SKUs
                 * Given a list of SKUs of a valid type in the skusBundle, this returns a bundle
                 * with a list JSON strings containing the productId, price, title and description.
                 * This API can be called with a maximum of 20 SKUs.
                 * @param apiVersion billing API version that the app is using
                 * @param packageName the package name of the calling app
                 * @param type of the in-app items ("inapp" for one-time purchases
                 *        and "subs" for subscriptions)
                 * @param skusBundle bundle containing a StringArrayList of SKUs with key "ITEM_ID_LIST"
                 * @return Bundle containing the following key-value pairs
                 *         "RESPONSE_CODE" with int value, RESULT_OK(0) if success, appropriate response codes
                 *                         on failures.
                 *         "DETAILS_LIST" with a StringArrayList containing purchase information
                 *                        in JSON format similar to:
                 *                        '{ "productId" : "exampleSku",
                 *                           "type" : "inapp",
                 *                           "price" : "$5.00",
                 *                           "price_currency": "USD",
                 *                           "price_amount_micros": 5000000,
                 *                           "title : "Example Title",
                 *                           "description" : "This is an example description" }'
                 */
                @Override public android.os.Bundle getSkuDetails(int apiVersion, java.lang.String packageName, java.lang.String type, android.os.Bundle skusBundle) throws android.os.RemoteException
                {
                    android.os.Parcel _data = android.os.Parcel.obtain();
                    android.os.Parcel _reply = android.os.Parcel.obtain();
                    android.os.Bundle _result;
                    try {
                        _data.writeInterfaceToken(DESCRIPTOR);
                        _data.writeInt(apiVersion);
                        _data.writeString(packageName);
                        _data.writeString(type);
                        if ((skusBundle!=null)) {
                            _data.writeInt(1);
                            skusBundle.writeToParcel(_data, 0);
                        }
                        else {
                            _data.writeInt(0);
                        }
                        mRemote.transact(Stub.TRANSACTION_getSkuDetails, _data, _reply, 0);
                        _reply.readException();
                        if ((0!=_reply.readInt())) {
                            _result = android.os.Bundle.CREATOR.createFromParcel(_reply);
                        }
                        else {
                            _result = null;
                        }
                    }
                    finally {
                        _reply.recycle();
                        _data.recycle();
                    }
                    return _result;
                }
                /**
                 * Returns a pending intent to launch the purchase flow for an in-app item by providing a SKU,
                 * the type, a unique purchase token and an optional developer payload.
                 * @param apiVersion billing API version that the app is using
                 * @param packageName package name of the calling app
                 * @param sku the SKU of the in-app item as published in the developer console
                 * @param type of the in-app item being purchased ("inapp" for one-time purchases
                 *        and "subs" for subscriptions)
                 * @param developerPayload optional argument to be sent back with the purchase information
                 * @return Bundle containing the following key-value pairs
                 *         "RESPONSE_CODE" with int value, RESULT_OK(0) if success, appropriate response codes
                 *                         on failures.
                 *         "BUY_INTENT" - PendingIntent to start the purchase flow
                 *
                 * The Pending intent should be launched with startIntentSenderForResult. When purchase flow
                 * has completed, the onActivityResult() will give a resultCode of OK or CANCELED.
                 * If the purchase is successful, the result data will contain the following key-value pairs
                 *         "RESPONSE_CODE" with int value, RESULT_OK(0) if success, appropriate response
                 *                         codes on failures.
                 *         "INAPP_PURCHASE_DATA" - String in JSON format similar to
                 *                                 '{"orderId":"12999763169054705758.1371079406387615",
                 *                                   "packageName":"com.example.app",
                 *                                   "productId":"exampleSku",
                 *                                   "purchaseTime":1345678900000,
                 *                                   "purchaseToken" : "122333444455555",
                 *                                   "developerPayload":"example developer payload" }'
                 *         "INAPP_DATA_SIGNATURE" - String containing the signature of the purchase data that
                 *                                  was signed with the private key of the developer
                 */
                @Override public android.os.Bundle getBuyIntent(int apiVersion, java.lang.String packageName, java.lang.String sku, java.lang.String type, java.lang.String developerPayload) throws android.os.RemoteException
                {
                    android.os.Parcel _data = android.os.Parcel.obtain();
                    android.os.Parcel _reply = android.os.Parcel.obtain();
                    android.os.Bundle _result;
                    try {
                        _data.writeInterfaceToken(DESCRIPTOR);
                        _data.writeInt(apiVersion);
                        _data.writeString(packageName);
                        _data.writeString(sku);
                        _data.writeString(type);
                        _data.writeString(developerPayload);
                        mRemote.transact(Stub.TRANSACTION_getBuyIntent, _data, _reply, 0);
                        _reply.readException();
                        if ((0!=_reply.readInt())) {
                            _result = android.os.Bundle.CREATOR.createFromParcel(_reply);
                        }
                        else {
                            _result = null;
                        }
                    }
                    finally {
                        _reply.recycle();
                        _data.recycle();
                    }
                    return _result;
                }
                /**
                 * Returns the current SKUs owned by the user of the type and package name specified along with
                 * purchase information and a signature of the data to be validated.
                 * This will return all SKUs that have been purchased in V3 and managed items purchased using
                 * V1 and V2 that have not been consumed.
                 * @param apiVersion billing API version that the app is using
                 * @param packageName package name of the calling app
                 * @param type of the in-app items being requested ("inapp" for one-time purchases
                 *        and "subs" for subscriptions)
                 * @param continuationToken to be set as null for the first call, if the number of owned
                 *        skus are too many, a continuationToken is returned in the response bundle.
                 *        This method can be called again with the continuation token to get the next set of
                 *        owned skus.
                 * @return Bundle containing the following key-value pairs
                 *         "RESPONSE_CODE" with int value, RESULT_OK(0) if success, appropriate response codes
                 on failures.
                 *         "INAPP_PURCHASE_ITEM_LIST" - StringArrayList containing the list of SKUs
                 *         "INAPP_PURCHASE_DATA_LIST" - StringArrayList containing the purchase information
                 *         "INAPP_DATA_SIGNATURE_LIST"- StringArrayList containing the signatures
                 *                                      of the purchase information
                 *         "INAPP_CONTINUATION_TOKEN" - String containing a continuation token for the
                 *                                      next set of in-app purchases. Only set if the
                 *                                      user has more owned skus than the current list.
                 */
                @Override public android.os.Bundle getPurchases(int apiVersion, java.lang.String packageName, java.lang.String type, java.lang.String continuationToken) throws android.os.RemoteException
                {
                    android.os.Parcel _data = android.os.Parcel.obtain();
                    android.os.Parcel _reply = android.os.Parcel.obtain();
                    android.os.Bundle _result;
                    try {
                        _data.writeInterfaceToken(DESCRIPTOR);
                        _data.writeInt(apiVersion);
                        _data.writeString(packageName);
                        _data.writeString(type);
                        _data.writeString(continuationToken);
                        mRemote.transact(Stub.TRANSACTION_getPurchases, _data, _reply, 0);
                        _reply.readException();
                        if ((0!=_reply.readInt())) {
                            _result = android.os.Bundle.CREATOR.createFromParcel(_reply);
                        }
                        else {
                            _result = null;
                        }
                    }
                    finally {
                        _reply.recycle();
                        _data.recycle();
                    }
                    return _result;
                }
                @Override public int consumePurchase(int apiVersion, java.lang.String packageName, java.lang.String purchaseToken) throws android.os.RemoteException
                {
                    android.os.Parcel _data = android.os.Parcel.obtain();
                    android.os.Parcel _reply = android.os.Parcel.obtain();
                    int _result;
                    try {
                        _data.writeInterfaceToken(DESCRIPTOR);
                        _data.writeInt(apiVersion);
                        _data.writeString(packageName);
                        _data.writeString(purchaseToken);
                        mRemote.transact(Stub.TRANSACTION_consumePurchase, _data, _reply, 0);
                        _reply.readException();
                        _result = _reply.readInt();
                    }
                    finally {
                        _reply.recycle();
                        _data.recycle();
                    }
                    return _result;
                }
                @Override public int stub(int apiVersion, java.lang.String packageName, java.lang.String type) throws android.os.RemoteException
                {
                    android.os.Parcel _data = android.os.Parcel.obtain();
                    android.os.Parcel _reply = android.os.Parcel.obtain();
                    int _result;
                    try {
                        _data.writeInterfaceToken(DESCRIPTOR);
                        _data.writeInt(apiVersion);
                        _data.writeString(packageName);
                        _data.writeString(type);
                        mRemote.transact(Stub.TRANSACTION_stub, _data, _reply, 0);
                        _reply.readException();
                        _result = _reply.readInt();
                    }
                    finally {
                        _reply.recycle();
                        _data.recycle();
                    }
                    return _result;
                }
                /**
                 * Returns a pending intent to launch the purchase flow for upgrading or downgrading a
                 * subscription. The existing owned SKU(s) should be provided along with the new SKU that
                 * the user is upgrading or downgrading to.
                 * @param apiVersion billing API version that the app is using, must be 5 or later
                 * @param packageName package name of the calling app
                 * @param oldSkus the SKU(s) that the user is upgrading or downgrading from,
                 *        if null or empty this method will behave like {@link #getBuyIntent}
                 * @param newSku the SKU that the user is upgrading or downgrading to
                 * @param type of the item being purchased, currently must be "subs"
                 * @param developerPayload optional argument to be sent back with the purchase information
                 * @return Bundle containing the following key-value pairs
                 *         "RESPONSE_CODE" with int value, RESULT_OK(0) if success, appropriate response codes
                 *                         on failures.
                 *         "BUY_INTENT" - PendingIntent to start the purchase flow
                 *
                 * The Pending intent should be launched with startIntentSenderForResult. When purchase flow
                 * has completed, the onActivityResult() will give a resultCode of OK or CANCELED.
                 * If the purchase is successful, the result data will contain the following key-value pairs
                 *         "RESPONSE_CODE" with int value, RESULT_OK(0) if success, appropriate response
                 *                         codes on failures.
                 *         "INAPP_PURCHASE_DATA" - String in JSON format similar to
                 *                                 '{"orderId":"12999763169054705758.1371079406387615",
                 *                                   "packageName":"com.example.app",
                 *                                   "productId":"exampleSku",
                 *                                   "purchaseTime":1345678900000,
                 *                                   "purchaseToken" : "122333444455555",
                 *                                   "developerPayload":"example developer payload" }'
                 *         "INAPP_DATA_SIGNATURE" - String containing the signature of the purchase data that
                 *                                  was signed with the private key of the developer
                 */
                @Override public android.os.Bundle getBuyIntentToReplaceSkus(int apiVersion, java.lang.String packageName, java.util.List<java.lang.String> oldSkus, java.lang.String newSku, java.lang.String type, java.lang.String developerPayload) throws android.os.RemoteException
                {
                    android.os.Parcel _data = android.os.Parcel.obtain();
                    android.os.Parcel _reply = android.os.Parcel.obtain();
                    android.os.Bundle _result;
                    try {
                        _data.writeInterfaceToken(DESCRIPTOR);
                        _data.writeInt(apiVersion);
                        _data.writeString(packageName);
                        _data.writeStringList(oldSkus);
                        _data.writeString(newSku);
                        _data.writeString(type);
                        _data.writeString(developerPayload);
                        mRemote.transact(Stub.TRANSACTION_getBuyIntentToReplaceSkus, _data, _reply, 0);
                        _reply.readException();
                        if ((0!=_reply.readInt())) {
                            _result = android.os.Bundle.CREATOR.createFromParcel(_reply);
                        }
                        else {
                            _result = null;
                        }
                    }
                    finally {
                        _reply.recycle();
                        _data.recycle();
                    }
                    return _result;
                }
                /**
                 * Returns a pending intent to launch the purchase flow for an in-app item. This method is
                 * a variant of the {@link #getBuyIntent} method and takes an additional {@code extraParams}
                 * parameter. This parameter is a Bundle of optional keys and values that affect the
                 * operation of the method.
                 * @param apiVersion billing API version that the app is using, must be 6 or later
                 * @param packageName package name of the calling app
                 * @param sku the SKU of the in-app item as published in the developer console
                 * @param type of the in-app item being purchased ("inapp" for one-time purchases
                 *        and "subs" for subscriptions)
                 * @param developerPayload optional argument to be sent back with the purchase information
                 * @extraParams a Bundle with the following optional keys:
                 *        "skusToReplace" - List<String> - an optional list of SKUs that the user is
                 *                          upgrading or downgrading from.
                 *                          Pass this field if the purchase is upgrading or downgrading
                 *                          existing subscriptions.
                 *                          The specified SKUs are replaced with the SKUs that the user is
                 *                          purchasing. Google Play replaces the specified SKUs at the start of
                 *                          the next billing cycle.
                 * "replaceSkusProration" - Boolean - whether the user should be credited for any unused
                 *                          subscription time on the SKUs they are upgrading or downgrading.
                 *                          If you set this field to true, Google Play swaps out the old SKUs
                 *                          and credits the user with the unused value of their subscription
                 *                          time on a pro-rated basis.
                 *                          Google Play applies this credit to the new subscription, and does
                 *                          not begin billing the user for the new subscription until after
                 *                          the credit is used up.
                 *                          If you set this field to false, the user does not receive credit for
                 *                          any unused subscription time and the recurrence date does not
                 *                          change.
                 *                          Default value is true. Ignored if you do not pass skusToReplace.
                 *            "accountId" - String - an optional obfuscated string that is uniquely
                 *                          associated with the user's account in your app.
                 *                          If you pass this value, Google Play can use it to detect irregular
                 *                          activity, such as many devices making purchases on the same
                 *                          account in a short period of time.
                 *                          Do not use the developer ID or the user's Google ID for this field.
                 *                          In addition, this field should not contain the user's ID in
                 *                          cleartext.
                 *                          We recommend that you use a one-way hash to generate a string from
                 *                          the user's ID, and store the hashed string in this field.
                 *                   "vr" - Boolean - an optional flag indicating whether the returned intent
                 *                          should start a VR purchase flow. The apiVersion must also be 7 or
                 *                          later to use this flag.
                 */
                @Override public android.os.Bundle getBuyIntentExtraParams(int apiVersion, java.lang.String packageName, java.lang.String sku, java.lang.String type, java.lang.String developerPayload, android.os.Bundle extraParams) throws android.os.RemoteException
                {
                    android.os.Parcel _data = android.os.Parcel.obtain();
                    android.os.Parcel _reply = android.os.Parcel.obtain();
                    android.os.Bundle _result;
                    try {
                        _data.writeInterfaceToken(DESCRIPTOR);
                        _data.writeInt(apiVersion);
                        _data.writeString(packageName);
                        _data.writeString(sku);
                        _data.writeString(type);
                        _data.writeString(developerPayload);
                        if ((extraParams!=null)) {
                            _data.writeInt(1);
                            extraParams.writeToParcel(_data, 0);
                        }
                        else {
                            _data.writeInt(0);
                        }
                        mRemote.transact(Stub.TRANSACTION_getBuyIntentExtraParams, _data, _reply, 0);
                        _reply.readException();
                        if ((0!=_reply.readInt())) {
                            _result = android.os.Bundle.CREATOR.createFromParcel(_reply);
                        }
                        else {
                            _result = null;
                        }
                    }
                    finally {
                        _reply.recycle();
                        _data.recycle();
                    }
                    return _result;
                }
                /**
                 * Returns the most recent purchase made by the user for each SKU, even if that purchase is
                 * expired, canceled, or consumed.
                 * @param apiVersion billing API version that the app is using, must be 6 or later
                 * @param packageName package name of the calling app
                 * @param type of the in-app items being requested ("inapp" for one-time purchases
                 *        and "subs" for subscriptions)
                 * @param continuationToken to be set as null for the first call, if the number of owned
                 *        skus is too large, a continuationToken is returned in the response bundle.
                 *        This method can be called again with the continuation token to get the next set of
                 *        owned skus.
                 * @param extraParams a Bundle with extra params that would be appended into http request
                 *        query string. Not used at this moment. Reserved for future functionality.
                 * @return Bundle containing the following key-value pairs
                 *         "RESPONSE_CODE" with int value: RESULT_OK(0) if success,
                 *         {@link IabHelper#BILLING_RESPONSE_RESULT_*} response codes on failures.
                 *
                 *         "INAPP_PURCHASE_ITEM_LIST" - ArrayList<String> containing the list of SKUs
                 *         "INAPP_PURCHASE_DATA_LIST" - ArrayList<String> containing the purchase information
                 *         "INAPP_DATA_SIGNATURE_LIST"- ArrayList<String> containing the signatures
                 *                                      of the purchase information
                 *         "INAPP_CONTINUATION_TOKEN" - String containing a continuation token for the
                 *                                      next set of in-app purchases. Only set if the
                 *                                      user has more owned skus than the current list.
                 */
                @Override public android.os.Bundle getPurchaseHistory(int apiVersion, java.lang.String packageName, java.lang.String type, java.lang.String continuationToken, android.os.Bundle extraParams) throws android.os.RemoteException
                {
                    android.os.Parcel _data = android.os.Parcel.obtain();
                    android.os.Parcel _reply = android.os.Parcel.obtain();
                    android.os.Bundle _result;
                    try {
                        _data.writeInterfaceToken(DESCRIPTOR);
                        _data.writeInt(apiVersion);
                        _data.writeString(packageName);
                        _data.writeString(type);
                        _data.writeString(continuationToken);
                        if ((extraParams!=null)) {
                            _data.writeInt(1);
                            extraParams.writeToParcel(_data, 0);
                        }
                        else {
                            _data.writeInt(0);
                        }
                        mRemote.transact(Stub.TRANSACTION_getPurchaseHistory, _data, _reply, 0);
                        _reply.readException();
                        if ((0!=_reply.readInt())) {
                            _result = android.os.Bundle.CREATOR.createFromParcel(_reply);
                        }
                        else {
                            _result = null;
                        }
                    }
                    finally {
                        _reply.recycle();
                        _data.recycle();
                    }
                    return _result;
                }
                @Override public int isBillingSupportedExtraParams(int apiVersion, java.lang.String packageName, java.lang.String type, android.os.Bundle extraParams) throws android.os.RemoteException
                {
                    android.os.Parcel _data = android.os.Parcel.obtain();
                    android.os.Parcel _reply = android.os.Parcel.obtain();
                    int _result;
                    try {
                        _data.writeInterfaceToken(DESCRIPTOR);
                        _data.writeInt(apiVersion);
                        _data.writeString(packageName);
                        _data.writeString(type);
                        if ((extraParams!=null)) {
                            _data.writeInt(1);
                            extraParams.writeToParcel(_data, 0);
                        }
                        else {
                            _data.writeInt(0);
                        }
                        mRemote.transact(Stub.TRANSACTION_isBillingSupportedExtraParams, _data, _reply, 0);
                        _reply.readException();
                        _result = _reply.readInt();
                    }
                    finally {
                        _reply.recycle();
                        _data.recycle();
                    }
                    return _result;
                }
            }
            static final int TRANSACTION_isBillingSupported = (android.os.IBinder.FIRST_CALL_TRANSACTION + 0);
            static final int TRANSACTION_getSkuDetails = (android.os.IBinder.FIRST_CALL_TRANSACTION + 1);
            static final int TRANSACTION_getBuyIntent = (android.os.IBinder.FIRST_CALL_TRANSACTION + 2);
            static final int TRANSACTION_getPurchases = (android.os.IBinder.FIRST_CALL_TRANSACTION + 3);
            static final int TRANSACTION_consumePurchase = (android.os.IBinder.FIRST_CALL_TRANSACTION + 4);
            static final int TRANSACTION_stub = (android.os.IBinder.FIRST_CALL_TRANSACTION + 5);
            static final int TRANSACTION_getBuyIntentToReplaceSkus = (android.os.IBinder.FIRST_CALL_TRANSACTION + 6);
            static final int TRANSACTION_getBuyIntentExtraParams = (android.os.IBinder.FIRST_CALL_TRANSACTION + 7);
            static final int TRANSACTION_getPurchaseHistory = (android.os.IBinder.FIRST_CALL_TRANSACTION + 8);
            static final int TRANSACTION_isBillingSupportedExtraParams = (android.os.IBinder.FIRST_CALL_TRANSACTION + 9);
        }
        public int isBillingSupported(int apiVersion, java.lang.String packageName, java.lang.String type) throws android.os.RemoteException;
        /**
         * Provides details of a list of SKUs
         * Given a list of SKUs of a valid type in the skusBundle, this returns a bundle
         * with a list JSON strings containing the productId, price, title and description.
         * This API can be called with a maximum of 20 SKUs.
         * @param apiVersion billing API version that the app is using
         * @param packageName the package name of the calling app
         * @param type of the in-app items ("inapp" for one-time purchases
         *        and "subs" for subscriptions)
         * @param skusBundle bundle containing a StringArrayList of SKUs with key "ITEM_ID_LIST"
         * @return Bundle containing the following key-value pairs
         *         "RESPONSE_CODE" with int value, RESULT_OK(0) if success, appropriate response codes
         *                         on failures.
         *         "DETAILS_LIST" with a StringArrayList containing purchase information
         *                        in JSON format similar to:
         *                        '{ "productId" : "exampleSku",
         *                           "type" : "inapp",
         *                           "price" : "$5.00",
         *                           "price_currency": "USD",
         *                           "price_amount_micros": 5000000,
         *                           "title : "Example Title",
         *                           "description" : "This is an example description" }'
         */
        public android.os.Bundle getSkuDetails(int apiVersion, java.lang.String packageName, java.lang.String type, android.os.Bundle skusBundle) throws android.os.RemoteException;
        /**
         * Returns a pending intent to launch the purchase flow for an in-app item by providing a SKU,
         * the type, a unique purchase token and an optional developer payload.
         * @param apiVersion billing API version that the app is using
         * @param packageName package name of the calling app
         * @param sku the SKU of the in-app item as published in the developer console
         * @param type of the in-app item being purchased ("inapp" for one-time purchases
         *        and "subs" for subscriptions)
         * @param developerPayload optional argument to be sent back with the purchase information
         * @return Bundle containing the following key-value pairs
         *         "RESPONSE_CODE" with int value, RESULT_OK(0) if success, appropriate response codes
         *                         on failures.
         *         "BUY_INTENT" - PendingIntent to start the purchase flow
         *
         * The Pending intent should be launched with startIntentSenderForResult. When purchase flow
         * has completed, the onActivityResult() will give a resultCode of OK or CANCELED.
         * If the purchase is successful, the result data will contain the following key-value pairs
         *         "RESPONSE_CODE" with int value, RESULT_OK(0) if success, appropriate response
         *                         codes on failures.
         *         "INAPP_PURCHASE_DATA" - String in JSON format similar to
         *                                 '{"orderId":"12999763169054705758.1371079406387615",
         *                                   "packageName":"com.example.app",
         *                                   "productId":"exampleSku",
         *                                   "purchaseTime":1345678900000,
         *                                   "purchaseToken" : "122333444455555",
         *                                   "developerPayload":"example developer payload" }'
         *         "INAPP_DATA_SIGNATURE" - String containing the signature of the purchase data that
         *                                  was signed with the private key of the developer
         */
        public android.os.Bundle getBuyIntent(int apiVersion, java.lang.String packageName, java.lang.String sku, java.lang.String type, java.lang.String developerPayload) throws android.os.RemoteException;
        /**
         * Returns the current SKUs owned by the user of the type and package name specified along with
         * purchase information and a signature of the data to be validated.
         * This will return all SKUs that have been purchased in V3 and managed items purchased using
         * V1 and V2 that have not been consumed.
         * @param apiVersion billing API version that the app is using
         * @param packageName package name of the calling app
         * @param type of the in-app items being requested ("inapp" for one-time purchases
         *        and "subs" for subscriptions)
         * @param continuationToken to be set as null for the first call, if the number of owned
         *        skus are too many, a continuationToken is returned in the response bundle.
         *        This method can be called again with the continuation token to get the next set of
         *        owned skus.
         * @return Bundle containing the following key-value pairs
         *         "RESPONSE_CODE" with int value, RESULT_OK(0) if success, appropriate response codes
         on failures.
         *         "INAPP_PURCHASE_ITEM_LIST" - StringArrayList containing the list of SKUs
         *         "INAPP_PURCHASE_DATA_LIST" - StringArrayList containing the purchase information
         *         "INAPP_DATA_SIGNATURE_LIST"- StringArrayList containing the signatures
         *                                      of the purchase information
         *         "INAPP_CONTINUATION_TOKEN" - String containing a continuation token for the
         *                                      next set of in-app purchases. Only set if the
         *                                      user has more owned skus than the current list.
         */
        public android.os.Bundle getPurchases(int apiVersion, java.lang.String packageName, java.lang.String type, java.lang.String continuationToken) throws android.os.RemoteException;
        public int consumePurchase(int apiVersion, java.lang.String packageName, java.lang.String purchaseToken) throws android.os.RemoteException;
        public int stub(int apiVersion, java.lang.String packageName, java.lang.String type) throws android.os.RemoteException;
        /**
         * Returns a pending intent to launch the purchase flow for upgrading or downgrading a
         * subscription. The existing owned SKU(s) should be provided along with the new SKU that
         * the user is upgrading or downgrading to.
         * @param apiVersion billing API version that the app is using, must be 5 or later
         * @param packageName package name of the calling app
         * @param oldSkus the SKU(s) that the user is upgrading or downgrading from,
         *        if null or empty this method will behave like {@link #getBuyIntent}
         * @param newSku the SKU that the user is upgrading or downgrading to
         * @param type of the item being purchased, currently must be "subs"
         * @param developerPayload optional argument to be sent back with the purchase information
         * @return Bundle containing the following key-value pairs
         *         "RESPONSE_CODE" with int value, RESULT_OK(0) if success, appropriate response codes
         *                         on failures.
         *         "BUY_INTENT" - PendingIntent to start the purchase flow
         *
         * The Pending intent should be launched with startIntentSenderForResult. When purchase flow
         * has completed, the onActivityResult() will give a resultCode of OK or CANCELED.
         * If the purchase is successful, the result data will contain the following key-value pairs
         *         "RESPONSE_CODE" with int value, RESULT_OK(0) if success, appropriate response
         *                         codes on failures.
         *         "INAPP_PURCHASE_DATA" - String in JSON format similar to
         *                                 '{"orderId":"12999763169054705758.1371079406387615",
         *                                   "packageName":"com.example.app",
         *                                   "productId":"exampleSku",
         *                                   "purchaseTime":1345678900000,
         *                                   "purchaseToken" : "122333444455555",
         *                                   "developerPayload":"example developer payload" }'
         *         "INAPP_DATA_SIGNATURE" - String containing the signature of the purchase data that
         *                                  was signed with the private key of the developer
         */
        public android.os.Bundle getBuyIntentToReplaceSkus(int apiVersion, java.lang.String packageName, java.util.List<java.lang.String> oldSkus, java.lang.String newSku, java.lang.String type, java.lang.String developerPayload) throws android.os.RemoteException;
        /**
         * Returns a pending intent to launch the purchase flow for an in-app item. This method is
         * a variant of the {@link #getBuyIntent} method and takes an additional {@code extraParams}
         * parameter. This parameter is a Bundle of optional keys and values that affect the
         * operation of the method.
         * @param apiVersion billing API version that the app is using, must be 6 or later
         * @param packageName package name of the calling app
         * @param sku the SKU of the in-app item as published in the developer console
         * @param type of the in-app item being purchased ("inapp" for one-time purchases
         *        and "subs" for subscriptions)
         * @param developerPayload optional argument to be sent back with the purchase information
         * @extraParams a Bundle with the following optional keys:
         *        "skusToReplace" - List<String> - an optional list of SKUs that the user is
         *                          upgrading or downgrading from.
         *                          Pass this field if the purchase is upgrading or downgrading
         *                          existing subscriptions.
         *                          The specified SKUs are replaced with the SKUs that the user is
         *                          purchasing. Google Play replaces the specified SKUs at the start of
         *                          the next billing cycle.
         * "replaceSkusProration" - Boolean - whether the user should be credited for any unused
         *                          subscription time on the SKUs they are upgrading or downgrading.
         *                          If you set this field to true, Google Play swaps out the old SKUs
         *                          and credits the user with the unused value of their subscription
         *                          time on a pro-rated basis.
         *                          Google Play applies this credit to the new subscription, and does
         *                          not begin billing the user for the new subscription until after
         *                          the credit is used up.
         *                          If you set this field to false, the user does not receive credit for
         *                          any unused subscription time and the recurrence date does not
         *                          change.
         *                          Default value is true. Ignored if you do not pass skusToReplace.
         *            "accountId" - String - an optional obfuscated string that is uniquely
         *                          associated with the user's account in your app.
         *                          If you pass this value, Google Play can use it to detect irregular
         *                          activity, such as many devices making purchases on the same
         *                          account in a short period of time.
         *                          Do not use the developer ID or the user's Google ID for this field.
         *                          In addition, this field should not contain the user's ID in
         *                          cleartext.
         *                          We recommend that you use a one-way hash to generate a string from
         *                          the user's ID, and store the hashed string in this field.
         *                   "vr" - Boolean - an optional flag indicating whether the returned intent
         *                          should start a VR purchase flow. The apiVersion must also be 7 or
         *                          later to use this flag.
         */
        public android.os.Bundle getBuyIntentExtraParams(int apiVersion, java.lang.String packageName, java.lang.String sku, java.lang.String type, java.lang.String developerPayload, android.os.Bundle extraParams) throws android.os.RemoteException;
        /**
         * Returns the most recent purchase made by the user for each SKU, even if that purchase is
         * expired, canceled, or consumed.
         * @param apiVersion billing API version that the app is using, must be 6 or later
         * @param packageName package name of the calling app
         * @param type of the in-app items being requested ("inapp" for one-time purchases
         *        and "subs" for subscriptions)
         * @param continuationToken to be set as null for the first call, if the number of owned
         *        skus is too large, a continuationToken is returned in the response bundle.
         *        This method can be called again with the continuation token to get the next set of
         *        owned skus.
         * @param extraParams a Bundle with extra params that would be appended into http request
         *        query string. Not used at this moment. Reserved for future functionality.
         * @return Bundle containing the following key-value pairs
         *         "RESPONSE_CODE" with int value: RESULT_OK(0) if success,
         *         {@link IabHelper#BILLING_RESPONSE_RESULT_*} response codes on failures.
         *
         *         "INAPP_PURCHASE_ITEM_LIST" - ArrayList<String> containing the list of SKUs
         *         "INAPP_PURCHASE_DATA_LIST" - ArrayList<String> containing the purchase information
         *         "INAPP_DATA_SIGNATURE_LIST"- ArrayList<String> containing the signatures
         *                                      of the purchase information
         *         "INAPP_CONTINUATION_TOKEN" - String containing a continuation token for the
         *                                      next set of in-app purchases. Only set if the
         *                                      user has more owned skus than the current list.
         */
        public android.os.Bundle getPurchaseHistory(int apiVersion, java.lang.String packageName, java.lang.String type, java.lang.String continuationToken, android.os.Bundle extraParams) throws android.os.RemoteException;
        public int isBillingSupportedExtraParams(int apiVersion, java.lang.String packageName, java.lang.String type, android.os.Bundle extraParams) throws android.os.RemoteException;
    }