| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| README.md | D | 06-May-2025 | 736 | 24 | 19 | |
| build_sdk.sh | D | 06-May-2025 | 1.8 KiB | 67 | 41 | |
| build_sdk_lib | D | 06-May-2025 | 5.9 KiB | 147 | 132 | |
| gen_headers.txt | D | 06-May-2025 | 177 | 8 | 8 | |
| headers.txt | D | 06-May-2025 | 250 | 13 | 12 | |
| linux_arm64_host_tools.txt | D | 06-May-2025 | 476 | 25 | 24 | |
| linux_host_tools.txt | D | 06-May-2025 | 504 | 26 | 25 | |
| ohos_arm64.txt | D | 06-May-2025 | 543 | 25 | 24 | |
| package.json | D | 06-May-2025 | 250 | 13 | 12 | |
| test.sh | D | 06-May-2025 | 2.4 KiB | 70 | 41 | |
| test2_file_list_expected.txt | D | 06-May-2025 | 8.6 KiB | 187 | 186 | |
| windows_host_tools.txt | D | 06-May-2025 | 34 | 3 | 2 |
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