build.gradle 619 B

123456789101112131415161718192021222324
  1. apply plugin: 'com.huawei.ohos.hap'
  2. apply plugin: 'com.huawei.ohos.decctest'
  3. //For instructions on signature configuration, see https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ide_debug_device-0000001053822404#section1112183053510
  4. ohos {
  5. compileSdkVersion 7
  6. defaultConfig {
  7. compatibleSdkVersion 4
  8. }
  9. buildTypes {
  10. release {
  11. proguardOpt {
  12. proguardEnabled false
  13. rulesFiles 'proguard-rules.pro'
  14. }
  15. }
  16. }
  17. }
  18. dependencies {
  19. testImplementation 'junit:junit:4.13.1'
  20. }
  21. decc {
  22. supportType = ['html','xml']
  23. }