-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Marvin W <[email protected]>
- Loading branch information
1 parent
f76f371
commit 667ac95
Showing
12 changed files
with
300 additions
and
4 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
...l/com/android/vending/billing/IInAppBillingCreateAlternativeBillingOnlyTokenCallback.aidl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* | ||
* SPDX-FileCopyrightText: 2024 microG Project Team | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
package com.android.vending.billing; | ||
|
||
import android.os.Bundle; | ||
|
||
interface IInAppBillingCreateAlternativeBillingOnlyTokenCallback { | ||
/** | ||
* @param bundle a Bundle with the following keys: | ||
* "RESPONSE_CODE" - Integer | ||
* "DEBUG_MESSAGE" - String | ||
* "CREATE_ALTERNATIVE_BILLING_ONLY_REPORTING_DETAILS" - String with JSON encoded reporting details with the following keys: | ||
* "externalTransactionToken" - String used to report a transaction made via alternative billing | ||
*/ | ||
void callback(in Bundle bundle); | ||
} |
16 changes: 16 additions & 0 deletions
16
...m/android/vending/billing/IInAppBillingCreateExternalPaymentReportingDetailsCallback.aidl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
* SPDX-FileCopyrightText: 2024 microG Project Team | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
package com.android.vending.billing; | ||
|
||
import android.os.Bundle; | ||
|
||
interface IInAppBillingCreateExternalPaymentReportingDetailsCallback { | ||
/** | ||
* @param bundle a Bundle with the following keys: | ||
* "RESPONSE_CODE" - Integer | ||
* "DEBUG_MESSAGE" - String | ||
*/ | ||
void callback(in Bundle bundle); | ||
} |
11 changes: 11 additions & 0 deletions
11
...app/src/main/aidl/com/android/vending/billing/IInAppBillingDelegateToBackendCallback.aidl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/* | ||
* SPDX-FileCopyrightText: 2024 microG Project Team | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
package com.android.vending.billing; | ||
|
||
import android.os.Bundle; | ||
|
||
interface IInAppBillingDelegateToBackendCallback { | ||
|
||
} |
17 changes: 17 additions & 0 deletions
17
...m/android/vending/billing/IInAppBillingGetAlternativeBillingOnlyDialogIntentCallback.aidl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* | ||
* SPDX-FileCopyrightText: 2024 microG Project Team | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
package com.android.vending.billing; | ||
|
||
import android.os.Bundle; | ||
|
||
interface IInAppBillingGetAlternativeBillingOnlyDialogIntentCallback { | ||
/** | ||
* @param bundle a Bundle with the following keys: | ||
* "RESPONSE_CODE" - Integer | ||
* "DEBUG_MESSAGE" - String | ||
* "ALTERNATIVE_BILLING_ONLY_DIALOG_INTENT" - PendingIntent | ||
*/ | ||
void callback(in Bundle bundle); | ||
} |
16 changes: 16 additions & 0 deletions
16
...-app/src/main/aidl/com/android/vending/billing/IInAppBillingGetBillingConfigCallback.aidl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
* SPDX-FileCopyrightText: 2023 microG Project Team | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
package com.android.vending.billing; | ||
|
||
import android.os.Bundle; | ||
|
||
interface IInAppBillingGetBillingConfigCallback { | ||
/** | ||
* @param bundle a Bundle with the following keys: | ||
* "BILLING_CONFIG" - String with JSON encoded billing config with following keys: | ||
* "countryCode" - String with customer's country code (ISO-3166-1 alpha2) | ||
*/ | ||
void callback(in Bundle bundle); | ||
} |
17 changes: 17 additions & 0 deletions
17
...aidl/com/android/vending/billing/IInAppBillingGetExternalPaymentDialogIntentCallback.aidl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* | ||
* SPDX-FileCopyrightText: 2024 microG Project Team | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
package com.android.vending.billing; | ||
|
||
import android.os.Bundle; | ||
|
||
interface IInAppBillingGetExternalPaymentDialogIntentCallback { | ||
/** | ||
* @param bundle a Bundle with the following keys: | ||
* "RESPONSE_CODE" - Integer | ||
* "DEBUG_MESSAGE" - String | ||
* "EXTERNAL_PAYMENT_DIALOG_INTENT" - PendingIntent | ||
*/ | ||
void callback(in Bundle bundle); | ||
} |
16 changes: 16 additions & 0 deletions
16
...l/com/android/vending/billing/IInAppBillingIsAlternativeBillingOnlyAvailableCallback.aidl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
* SPDX-FileCopyrightText: 2024 microG Project Team | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
package com.android.vending.billing; | ||
|
||
import android.os.Bundle; | ||
|
||
interface IInAppBillingIsAlternativeBillingOnlyAvailableCallback { | ||
/** | ||
* @param bundle a Bundle with the following keys: | ||
* "RESPONSE_CODE" - Integer | ||
* "DEBUG_MESSAGE" - String | ||
*/ | ||
void callback(in Bundle bundle); | ||
} |
16 changes: 16 additions & 0 deletions
16
...ain/aidl/com/android/vending/billing/IInAppBillingIsExternalPaymentAvailableCallback.aidl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/* | ||
* SPDX-FileCopyrightText: 2024 microG Project Team | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
package com.android.vending.billing; | ||
|
||
import android.os.Bundle; | ||
|
||
interface IInAppBillingIsExternalPaymentAvailableCallback { | ||
/** | ||
* @param bundle a Bundle with the following keys: | ||
* "RESPONSE_CODE" - Integer | ||
* "DEBUG_MESSAGE" - String | ||
*/ | ||
void callback(in Bundle bundle); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
vending-app/src/main/aidl/com/android/vending/billing/IInAppBillingServiceCallback.aidl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* | ||
* SPDX-FileCopyrightText: 2024 microG Project Team | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
package com.android.vending.billing; | ||
|
||
import android.os.Bundle; | ||
|
||
interface IInAppBillingServiceCallback { | ||
/** | ||
* @param bundle a Bundle with the following keys: | ||
* "KEY_LAUNCH_INTENT" - PendingIntent | ||
*/ | ||
void callback(in Bundle bundle); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters