• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1apply plugin: 'com.huawei.ohos.hap'
2ohos {
3    compileSdkVersion 7
4    defaultConfig {
5        compatibleSdkVersion 7
6    }
7    buildTypes {
8        release {
9            proguardOpt {
10                proguardEnabled false
11                rulesFiles 'proguard-rules.pro'
12            }
13        }
14    }
15}
16
17dependencies {
18    implementation fileTree(dir: 'libs', include: ['*.jar', '*.har'])
19    testImplementation 'junit:junit:4.13.1'
20}
21