build-profile.json5 610 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "apiType": "stageMode",
  3. "buildOption": {
  4. "arkOptions": {
  5. // "apPath": "./modules.ap" /* Profile used for profile-guided optimization (PGO), a compiler optimization technique to improve app runtime performance. */
  6. }
  7. },
  8. "buildOptionSet": [
  9. {
  10. "name": "release",
  11. "arkOptions": {
  12. "obfuscation": {
  13. "ruleOptions": {
  14. "enable": true,
  15. "files": [
  16. "./obfuscation-rules.txt"
  17. ]
  18. }
  19. }
  20. }
  21. },
  22. ],
  23. "targets": [
  24. {
  25. "name": "default"
  26. },
  27. {
  28. "name": "ohosTest",
  29. }
  30. ]
  31. }