1{ 2 "app": { 3 "signingConfigs": [ 4 { 5 "name": "debug", 6 "material": { 7 //该方案的签名材料 8 "certpath": "signature/OpenHarmonyApplication.cer", 9 //调试或发布证书文件,格式为.cer, 10 "storePassword": "000000166348AFD6C93C5F2D2233C88FB2C5643A9D9DC9B4AFA4E9015CB42D471D34812358D7", 11 //密钥库密码,以密文形式呈现, 12 "keyAlias": "OpenHarmony Application Release", 13 //密钥别名信息, 14 "keyPassword": "000000166146A16C62C98E5BB0A445915F2A4B6FEF2F3A16B46CA44799D2120224FF6696BD94", 15 //密钥密码,以密文形式呈现, 16 "profile": "signature/photos.p7b", 17 //调试或发布证书Profile文件,格式为.p7b, 18 "signAlg": "SHA256withECDSA", 19 //密钥库signAlg参数 20 "storeFile": "signature/OpenHarmony.p12" 21 //密钥库文件,格式为.p12 22 } 23 } 24 ], 25 "products": [ 26 { 27 "name": "default", 28 "signingConfig": "debug", 29 "compileSdkVersion": 11, 30 "compatibleSdkVersion": 11 31 }, 32 ], 33 }, 34 "modules": [ 35 { 36 "name": "photos_common", 37 "srcPath": "./common", 38 "targets": [ 39 { 40 "name": "default", 41 "applyToProducts": [ 42 "default", 43 "tablet" 44 ] 45 } 46 ] 47 }, 48 { 49 "name": "photos_browser", 50 "srcPath": "./feature/browser", 51 "targets": [ 52 { 53 "name": "default", 54 "applyToProducts": [ 55 "default", 56 "tablet" 57 ] 58 } 59 ] 60 }, 61 { 62 "name": "photos_editor", 63 "srcPath": "./feature/editor", 64 "targets": [ 65 { 66 "name": "default", 67 "applyToProducts": [ 68 "default" 69 ] 70 } 71 ] 72 }, 73 { 74 "name": "photos_formAbility", 75 "srcPath": "./feature/formAbility", 76 "targets": [ 77 { 78 "name": "default", 79 "applyToProducts": [ 80 "default" 81 ] 82 } 83 ] 84 }, 85 { 86 "name": "photos_thirdselect", 87 "srcPath": "./feature/thirdselect", 88 "targets": [ 89 { 90 "name": "default", 91 "applyToProducts": [ 92 "default" 93 ] 94 } 95 ] 96 }, 97 { 98 "name": "photos_timeline", 99 "srcPath": "./feature/timeline", 100 "targets": [ 101 { 102 "name": "default", 103 "applyToProducts": [ 104 "default" 105 ] 106 } 107 ] 108 }, 109 { 110 "name": "phone_photos", 111 "srcPath": "./product/phone", 112 "targets": [ 113 { 114 "name": "default", 115 "applyToProducts": [ 116 "default" 117 ] 118 } 119 ] 120 }, 121 ], 122}