| Name | Date | Size | #Lines | LOC | ||
|---|---|---|---|---|---|---|
| .. | - | - | ||||
| docker/ | 22-Oct-2025 | - | 147 | 130 | ||
| test/ | 22-Oct-2025 | - | 301 | 290 | ||
| README.md | D | 22-Oct-2025 | 775 | 30 | 23 | |
| build_sdk.sh | D | 22-Oct-2025 | 2.5 KiB | 92 | 61 | |
| build_sdk_lib | D | 22-Oct-2025 | 17.1 KiB | 505 | 440 | |
| gen_headers.txt | D | 22-Oct-2025 | 177 | 8 | 8 | |
| headers.txt | D | 22-Oct-2025 | 218 | 12 | 11 | |
| linux_arm64_host_tools.txt | D | 22-Oct-2025 | 558 | 29 | 28 | |
| linux_host_tools.txt | D | 22-Oct-2025 | 598 | 31 | 30 | |
| ohos_arm32.txt | D | 22-Oct-2025 | 522 | 25 | 24 | |
| ohos_arm64.txt | D | 22-Oct-2025 | 574 | 28 | 27 | |
| package.json | D | 22-Oct-2025 | 250 | 13 | 12 | |
| test.sh | D | 22-Oct-2025 | 1.7 KiB | 69 | 43 | |
| test2_file_list_expected.txt | D | 22-Oct-2025 | 8.5 KiB | 184 | 183 | |
| test_sdk | D | 22-Oct-2025 | 3.7 KiB | 113 | 82 | |
| windows_host_tools.txt | D | 22-Oct-2025 | 34 | 3 | 2 |
README.md
1## Panda SDK for OHOS arm64 2 3### Build SDK: 4```sh 5./build_sdk.sh /path/to/panda/sdk/destination [OPTIONS] 6``` 7 8Note: see script `test.sh` for more details 9 10### Test SDK: 11```sh 12./test_sdk [OPTIONS] 13``` 14 15### Install SDK from local tarball 16```sh 17npm install /path/to/panda/sdk/destination/panda-sdk-1.0.0-devel.tgz 18``` 19 20### Publish SDK 21To determine destination registry for SDK NPM package add following lines to `~/.npmrc`: 22``` 23@panda:registry=${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/npm/ 24${CI_API_V4_URL#https?}/projects/${CI_PROJECT_ID}/packages/npm/:_authToken=${CI_JOB_TOKEN} 25strict-ssl=false 26``` 27`CI_API_V4_URL`, `CI_PROJECT_ID` and `CI_JOB_TOKEN` should be changed manually or exported as environment variables 28 29Publish npm package with `npm publish` command 30