-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@ledgerhq/device-signer-kit-solana": patch | ||
--- | ||
|
||
Factorize device actions calling a task in an app |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@ledgerhq/device-management-kit-sample": patch | ||
--- | ||
|
||
Accept JSON ethereum transactions in the signer |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@ledgerhq/device-signer-kit-bitcoin": patch | ||
--- | ||
|
||
Factorize device actions calling a task in an app |
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@ledgerhq/device-signer-kit-bitcoin": patch | ||
--- | ||
|
||
Add sendApdu in internal API interface |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@ledgerhq/device-signer-kit-solana": patch | ||
--- | ||
|
||
Add sendApdu in internal API interface |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: "[Release] Build mobile sample app" | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
ref: | ||
description: The base branch to build mobile app from | ||
required: false | ||
default: "develop" | ||
|
||
env: | ||
FORCE_COLOR: "1" | ||
REF: ${{ inputs.ref }} | ||
TAG: ${{ inputs.tag }} | ||
|
||
permissions: | ||
id-token: write | ||
contents: write | ||
|
||
jobs: | ||
build-android: | ||
name: Build android app | ||
runs-on: ledgerhq-device-sdk | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.inputs.ref }} | ||
|
||
- uses: LedgerHQ/device-sdk-ts/.github/actions/setup-toolchain-composite@develop | ||
|
||
- name: Build | ||
id: build-smpl | ||
uses: maierj/[email protected] | ||
with: | ||
lane: build | ||
subdirectory: 'apps/mobile/android/' |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
export default { | ||
info: "Info note", | ||
beginner: "Beginner's guides", | ||
integration: "Integration walkthroughs", | ||
references: "References", | ||
explanation: "Explanation" | ||
} | ||
info: "Info note", | ||
beginner: "Beginner's guides", | ||
integration: "Integration walkthroughs", | ||
references: "References", | ||
explanation: "Explanation", | ||
}; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
export default { | ||
'transfer-eth': "Transfer of Ethers between accounts", | ||
'transfer-sol': "Transfer of Sol between accounts", | ||
'smart-contract': "Call a Smart Contract", | ||
'personal-message': "Sign a personnal message", | ||
'cosmos-app': "Interact with the Cosmos app" | ||
} | ||
export default { | ||
"transfer-eth": "Transfer of Ethers between accounts", | ||
"transfer-sol": "Transfer of Sol between accounts", | ||
"smart-contract": "Call a Smart Contract", | ||
"personal-message": "Sign a personnal message", | ||
"cosmos-app": "Interact with the Cosmos app", | ||
}; |