Name | Date | Size | ||
---|---|---|---|---|
.. | 25-Oct-2024 | 4 KiB | ||
build_sdk.sh | H A D | 25-Oct-2024 | 7 KiB | |
gen_headers.txt | H A D | 25-Oct-2024 | 177 | |
headers.txt | H A D | 25-Oct-2024 | 250 | |
linux_arm64_host_tools.txt | H A D | 25-Oct-2024 | 39 | |
linux_host_tools.txt | H A D | 25-Oct-2024 | 476 | |
ohos_arm64.txt | H A D | 25-Oct-2024 | 515 | |
package.json | H A D | 25-Oct-2024 | 250 | |
README.md | H A D | 25-Oct-2024 | 736 | |
test.sh | H A D | 25-Oct-2024 | 2.4 KiB | |
test2_file_list_expected.txt | H A D | 25-Oct-2024 | 3.8 KiB | |
windows_host_tools.txt | H A D | 25-Oct-2024 | 34 |
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