12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- apply plugin: 'com.huawei.ohos.app'
- ohos {
- signingConfigs {
- debug {
- storeFile file('C:\\Users\\Administrator\\.ohos\\config\\auto_debug_260086000069925411.p12')
- storePassword '0000001832E774DA16C0E6930236A2F70BE06152E2F15C7AC197E6B82FEB427B1585FF4F6B15C33C'
- keyAlias = 'debugKey'
- keyPassword '00000018C3FB65E006246B92BDB0688783666B0821EEA6CB375EBE5A41945CFBAF77AFCDF8584FB1'
- signAlg = 'SHA256withECDSA'
- profile file('C:\\Users\\Administrator\\.ohos\\config\\auto_debug_test_260086000069925411.p7b')
- certpath file('C:\\Users\\Administrator\\.ohos\\config\\auto_debug_260086000069925411.cer')
- }
- }
- compileSdkVersion 5
- defaultConfig {
- compatibleSdkVersion 4
- }
- }
- buildscript {
- repositories {
- maven {
- url 'https://repo.huaweicloud.com/repository/maven/'
- }
- maven {
- url 'https://developer.huawei.com/repo/'
- }
- jcenter()
- }
- dependencies {
- classpath 'com.huawei.ohos:hap:2.4.5.0'
- classpath 'com.huawei.ohos:decctest:1.2.4.1'
- }
- }
- allprojects {
- repositories {
- maven {
- url 'https://repo.huaweicloud.com/repository/maven/'
- }
- maven {
- url 'https://developer.huawei.com/repo/'
- }
- jcenter()
- }
- }
|