Skip to content

Commit 79f7899

Browse files
committed
Add acl_one for hamony sdk6.0.0(20)
1 parent 50309bd commit 79f7899

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+993
-0
lines changed

harmony/api16/acl_one/.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/node_modules
2+
/oh_modules
3+
/local.properties
4+
/.idea
5+
**/build
6+
/.hvigor
7+
.cxx
8+
/.clangd
9+
/.clang-format
10+
/.clang-tidy
11+
**/.test
12+
/.appanalyzer
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"app": {
3+
"bundleName": "com.example.acl_one",
4+
"vendor": "example",
5+
"versionCode": 1000000,
6+
"versionName": "1.0.0",
7+
"icon": "$media:app_icon",
8+
"label": "$string:app_name"
9+
}
10+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"string": [
3+
{
4+
"name": "app_name",
5+
"value": "acl_one"
6+
}
7+
]
8+
}
2.71 KB
Loading
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/node_modules
2+
/oh_modules
3+
/.preview
4+
/build
5+
/.cxx
6+
/.test
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"apiType": "stageMode",
3+
"buildOption": {
4+
"externalNativeOptions": {
5+
"path": "./src/main/cpp/CMakeLists.txt",
6+
"arguments": "",
7+
"cppFlags": "",
8+
"abiFilters": [
9+
"arm64-v8a",
10+
"x86_64",
11+
]
12+
}
13+
},
14+
"buildOptionSet": [
15+
{
16+
"name": "release",
17+
"arkOptions": {
18+
"obfuscation": {
19+
"ruleOptions": {
20+
"enable": false,
21+
"files": [
22+
"./obfuscation-rules.txt"
23+
]
24+
}
25+
}
26+
},
27+
"nativeLib": {
28+
"debugSymbol": {
29+
"strip": true,
30+
"exclude": []
31+
}
32+
}
33+
},
34+
],
35+
"targets": [
36+
{
37+
"name": "default"
38+
},
39+
{
40+
"name": "ohosTest",
41+
}
42+
]
43+
}
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { hapTasks } from '@ohos/hvigor-ohos-plugin';
2+
3+
export default {
4+
system: hapTasks, /* Built-in plugin of Hvigor. It cannot be modified. */
5+
plugins:[] /* Custom plugin to extend the functionality of Hvigor. */
6+
}
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Define project specific obfuscation rules here.
2+
# You can include the obfuscation configuration files in the current module's build-profile.json5.
3+
#
4+
# For more details, see
5+
# https://developer.huawei.com/consumer/cn/doc/harmonyos-guides-V5/source-obfuscation-V5
6+
7+
# Obfuscation options:
8+
# -disable-obfuscation: disable all obfuscations
9+
# -enable-property-obfuscation: obfuscate the property names
10+
# -enable-toplevel-obfuscation: obfuscate the names in the global scope
11+
# -compact: remove unnecessary blank spaces and all line feeds
12+
# -remove-log: remove all console.* statements
13+
# -print-namecache: print the name cache that contains the mapping from the old names to new names
14+
# -apply-namecache: reuse the given cache file
15+
16+
# Keep options:
17+
# -keep-property-name: specifies property names that you want to keep
18+
# -keep-global-name: specifies names that you want to keep in the global scope
19+
20+
-enable-property-obfuscation
21+
-enable-toplevel-obfuscation
22+
-enable-filename-obfuscation
23+
-enable-export-obfuscation

harmony/api16/acl_one/acl/oh-package-lock.json5

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "acl",
3+
"version": "3.6.4",
4+
"description": "Please describe the basic information.",
5+
"main": "",
6+
"author": "",
7+
"license": "",
8+
"dependencies": {
9+
"libacl.so": "file:./src/main/cpp/types/libacl"
10+
}
11+
}

0 commit comments

Comments
 (0)