summaryrefslogtreecommitdiff
path: root/src/android/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/android/index.ts')
-rw-r--r--src/android/index.ts8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/android/index.ts b/src/android/index.ts
index 019fe1fb3..36a3d47a5 100644
--- a/src/android/index.ts
+++ b/src/android/index.ts
@@ -33,6 +33,7 @@ import {
} from "../util/http";
import { NodeHttpLib } from "../headless/NodeHttpLib";
import { WalletNotification } from "../types/notifications";
+import { WALLET_EXCHANGE_PROTOCOL_VERSION, WALLET_MERCHANT_PROTOCOL_VERSION } from "../operations/versions";
// @ts-ignore: special built-in module
//import akono = require("akono");
@@ -154,7 +155,12 @@ class AndroidWalletMessageHandler {
console.error("Error during wallet retry loop", e);
});
this.wp.resolve(w);
- return {};
+ return {
+ supported_protocol_versions: {
+ exchange: WALLET_EXCHANGE_PROTOCOL_VERSION,
+ merchant: WALLET_MERCHANT_PROTOCOL_VERSION,
+ }
+ };
}
case "abortProposal": {
const wallet = await this.wp.promise;