Name Date Size

..25-Oct-20244 KiB

build_sdk.shH A D25-Oct-20247 KiB

gen_headers.txtH A D25-Oct-2024177

headers.txtH A D25-Oct-2024250

linux_arm64_host_tools.txtH A D25-Oct-202439

linux_host_tools.txtH A D25-Oct-2024476

ohos_arm64.txtH A D25-Oct-2024515

package.jsonH A D25-Oct-2024250

README.mdH A D25-Oct-2024736

test.shH A D25-Oct-20242.4 KiB

test2_file_list_expected.txtH A D25-Oct-20243.8 KiB

windows_host_tools.txtH A D25-Oct-202434

README.md

1## Panda SDK for OHOS arm64
2
3### Build SDK:
4```sh
5./build_sdk.sh /path/to/ohos/sdk /path/to/panda/sdk/destination
6```
7Note: see script `test.sh` for more details
8
9### Install SDK from local tarball
10```sh
11npm install /path/to/panda/sdk/destination/panda-sdk-1.0.0-devel.tgz
12```
13
14### Publish SDK
15To determine destination registry for SDK NPM package add following lines to `~/.npmrc`:
16```
17@panda:registry=${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/npm/
18${CI_API_V4_URL#https?}/projects/${CI_PROJECT_ID}/packages/npm/:_authToken=${CI_JOB_TOKEN}
19strict-ssl=false
20```
21`CI_API_V4_URL`, `CI_PROJECT_ID` and `CI_JOB_TOKEN` should be changed manually or exported as environment variables
22
23Publish npm package with `npm publish` command
24