72 lines
1.8 KiB
Plaintext
72 lines
1.8 KiB
Plaintext
{
|
|
// app的构建配置
|
|
"app": {
|
|
//签名配置
|
|
"signingConfigs": [
|
|
{
|
|
"name": "default",
|
|
"type": "HarmonyOS",
|
|
"material": {
|
|
"certpath": "C:\\Users\\zyz\\.ohos\\config\\default_HM4Demo_0I_80ITv-w7dlG1L2HWydZLUTxyIvnvhDmLyWt4xW5c=.cer",
|
|
"storePassword": "00000019BC13FA4B887BEC2E080C308036113BCA1D1D4599A04C7DE2FC056D9B3D5BBB3F90A2746AFA",
|
|
"keyAlias": "debugKey",
|
|
"keyPassword": "0000001912B1B816E14D7892380189718431BDF3997A14E9462470BCB07EBB257FE32FE777D748DAE3",
|
|
"profile": "C:\\Users\\zyz\\.ohos\\config\\default_HM4Demo_0I_80ITv-w7dlG1L2HWydZLUTxyIvnvhDmLyWt4xW5c=.p7b",
|
|
"signAlg": "SHA256withECDSA",
|
|
"storeFile": "C:\\Users\\zyz\\.ohos\\config\\default_HM4Demo_0I_80ITv-w7dlG1L2HWydZLUTxyIvnvhDmLyWt4xW5c=.p12"
|
|
}
|
|
}
|
|
],
|
|
//产品配置
|
|
"products": [
|
|
{
|
|
"name": "default",
|
|
"signingConfig": "default",
|
|
"compileSdkVersion": "4.1.0(11)",
|
|
"compatibleSdkVersion": "4.0.0(10)",
|
|
"runtimeOS": "HarmonyOS",
|
|
}
|
|
],
|
|
//构建类型集合
|
|
"buildModeSet": [
|
|
{
|
|
"name": "debug",
|
|
},
|
|
{
|
|
"name": "release"
|
|
}
|
|
]
|
|
},
|
|
//组件集合
|
|
"modules": [
|
|
// app组件
|
|
{
|
|
// 组件名称
|
|
"name": "app",
|
|
// 组件源码位置
|
|
"srcPath": "./app",
|
|
// 构建目标
|
|
"targets": [
|
|
{
|
|
"name": "default",
|
|
"applyToProducts": [
|
|
"default"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
//shareLib组件
|
|
{
|
|
"name": "common_ui",
|
|
"srcPath": "./common_ui",
|
|
"targets": [
|
|
{
|
|
"name": "default",
|
|
"applyToProducts": [
|
|
"default"
|
|
]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
} |