mirror of
https://gitee.com/openharmony/applications_notes
synced 2024-11-23 15:39:50 +00:00
23294f0292
Signed-off-by: zhuhong <1870495044@qq.com>
39 lines
1.1 KiB
Groovy
39 lines
1.1 KiB
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
apply plugin: 'com.huawei.ohos.app'
|
|
|
|
//For instructions on signature configuration, see https://developer.harmonyos.com/cn/docs/documentation/doc-guides/ide_debug_device-0000001053822404#section1112183053510
|
|
ohos {
|
|
compileSdkVersion 8
|
|
supportSystem "standard"
|
|
}
|
|
|
|
buildscript {
|
|
repositories {
|
|
maven {
|
|
url 'http://repo.ark.tools.huawei.com/artifactory/maven-public/'
|
|
allowInsecureProtocol = true
|
|
}
|
|
maven {
|
|
url 'http://mirrors.tools.huawei.com/maven/'
|
|
allowInsecureProtocol = true
|
|
}
|
|
}
|
|
dependencies {
|
|
classpath 'com.huawei.ohos:hap:3.0.6.4'
|
|
classpath 'com.huawei.ohos:decctest:1.2.7.2'
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
maven {
|
|
url 'http://repo.ark.tools.huawei.com/artifactory/maven-public/'
|
|
allowInsecureProtocol = true
|
|
}
|
|
maven {
|
|
url 'http://mirrors.tools.huawei.com/maven/'
|
|
allowInsecureProtocol = true
|
|
}
|
|
}
|
|
}
|