38 lines
1.4 KiB
Groovy
38 lines
1.4 KiB
Groovy
apply plugin: 'com.huawei.ohos.hap'
|
|
apply plugin: 'com.huawei.ohos.decctest'
|
|
//For instructions on signature configuration, see https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ide_debug_device-0000001053822404#section1112183053510
|
|
ohos {
|
|
signingConfigs {
|
|
debug {
|
|
storeFile file('C:\\Users\\lenovo\\.ohos\\config\\auto_debug_myapplication_56657123.p12')
|
|
storePassword '000000184687F86CE825B945C63332C663B49040D417619ED0F20979ACB29ACE21EE6BB17DEA1B44'
|
|
keyAlias = 'debugKey'
|
|
keyPassword '0000001865A11CDD718E32FF669EE7AD4AAB69761F5E7492D75D7FE30C0192AF12585B4EC9F4A770'
|
|
signAlg = 'SHA256withECDSA'
|
|
profile file('C:\\Users\\lenovo\\.ohos\\config\\auto_debug_myapplication_56657123.p7b')
|
|
certpath file('C:\\Users\\lenovo\\.ohos\\config\\auto_debug_myapplication_56657123.cer')
|
|
}
|
|
}
|
|
compileSdkVersion 7
|
|
defaultConfig {
|
|
compatibleSdkVersion 6
|
|
}
|
|
buildTypes {
|
|
release {
|
|
proguardOpt {
|
|
proguardEnabled false
|
|
rulesFiles 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar', '*.har'])
|
|
testImplementation 'junit:junit:4.13.1'
|
|
ohosTestImplementation 'com.huawei.ohos.testkit:runner:1.0.0.200'
|
|
}
|
|
decc {
|
|
supportType = ['html', 'xml']
|
|
}
|