• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Native API使用常见问题
2
3## Native API是否有类似Canvas绘制接口
4
5适用于:OpenHarmony SDK 3.2.5.3版本,API9 Stage模型
6
7Native API中的[Drawing](../reference/native-apis/_drawing.md)接口可以提供2D绘制功能。
8
9## 运行Native HAP的时候,导入的命名空间报错Obj is not a valid object
10
11适用于:OpenHarmony SDK 3.2.5.3版本,API9 Stage模型
12
13检查模块根目录(注意不是工程根目录)下的build-profile.json5文件,如果设备是32位,需要在abiFilters参数中配置armeabi-v7a,如果设备是64位,需要在abiFilters参数中配置arm64-v8a。
14
15## 运行Native HAP的时候,报错install parse profile prop check error
16
17适用于:OpenHarmony SDK 3.2.6.3版本,API9 Stage模型
18
19检查模块根目录(注意不是工程根目录)下的build-profile.json5文件,如果设备是32位,需要在abiFilters参数中配置armeabi-v7a,如果设备是64位,需要在abiFilters参数中配置arm64-v8a。
20
21## 在Native代码中使用OH_LOG_Print打印日志,报错undefined symbol: OH_LOG_Print
22
23适用于:OpenHarmony SDK 3.2.6.3版本,API9 Stage模型
24
25需要修改CMakeLists.txt文件,在target_link_libraries最后追加libhilog_ndk.z.so26
27## 如何获取到模块 package.json 文件中的 “version” 值
28
29适用于:OpenHarmony SDK 3.2.5.3版本,API9 Stage模型
30
311. 在编译工具Hvigor脚本文件hvigorfile.js中,通过subModule.getPackageJsonPath方法获取module中package.json文件位置;
32
332. 使用nodejs能力读取package.json文件中version字段,写入build-profile.json5文件buildOption.cppFlags字段;
34
35示例:
36
37
38```
39// module hvigorfile.js
40const subModule = require('@ohos/hvigor')(__filename)
41
42const fs = require("fs-extra")
43const path = require("path")
44
45const packageJsonPath = subModule.getPackageJsonPath()
46const buildProfilePath = path.resolve(packageJsonPath, '../build-profile.json5')
47const packageJsonData = JSON.parse(fs.readFileSync(packageJsonPath, 'utf8'))
48let buildProfileData = fs.readFileSync(buildProfilePath, 'utf8')
49buildProfileData = buildProfileData.replace(/\"cppFlags\"\:(.*)\,/, `"cppFlags": "-D NWEBEX_VERSION=${packageJsonData.version}",`)
50fs.writeFileSync(buildProfilePath, buildProfileData, 'utf8')
51
52const ohosPlugin = require('@ohos/hvigor-ohos-plugin').hapTasks(subModule) // 该插件执行了C++编译任务,读取了build-profile.json5文件
53
54module.exports = {
55  ohos: ohosPlugin
56}
57```
58
59
60```
61// hello.cpp 读取
62#define _NWEBEX_VERSION(v) #v
63#define _NWEBEX_VER2STR(v) _NWEBEX_VERSION(v)
64
65static napi_value Add(napi_env env, napi_callback_info info)
66{
67
68    napi_value fixed_version_value = nullptr;
69    napi_create_string_utf8(env, _NWEBEX_VER2STR(NWEBEX_VERSION), NAPI_AUTO_LENGTH, &fixed_version_value);
70
71    return fixed_version_value;
72}
73```
74
75## 如何遍历rawfiles中的文件
76
77适用于:OpenHarmony SDK 3.2版本以上,API9 Stage模型
78
79使用Native API中的OH_ResourceManager_OpenRawDir()方法获取到rawfile的根目录,然后对其进行遍历。可参考文档:[Native开发指导](../reference/native-apis/rawfile.md)
80