From 56e47a01d315f13937e5b3b937200ff0c02c50a8 Mon Sep 17 00:00:00 2001 From: dx <1051186764@qq.com> Date: Wed, 17 Aug 2022 18:38:25 +0800 Subject: [PATCH] =?UTF-8?q?DevEco=20Studio=203.0=20Beta2=20=E6=9E=84?= =?UTF-8?q?=E5=BB=BA=E7=89=88=E6=9C=AC=EF=BC=9A3.0.0.803=EF=BC=9BSDK?= =?UTF-8?q?=EF=BC=9A6=EF=BC=9BN?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: dx <1051186764@qq.com> --- linwu-linwu-6-2/.gitignore | 16 ++++++++++ linwu-linwu-6-2/build.gradle | 50 +++++++++++++++++++++++++++++++ linwu-linwu-6-2/gradle.properties | 13 ++++++++ 3 files changed, 79 insertions(+) create mode 100644 linwu-linwu-6-2/.gitignore create mode 100644 linwu-linwu-6-2/build.gradle create mode 100644 linwu-linwu-6-2/gradle.properties diff --git a/linwu-linwu-6-2/.gitignore b/linwu-linwu-6-2/.gitignore new file mode 100644 index 00000000..fdc0c4a6 --- /dev/null +++ b/linwu-linwu-6-2/.gitignore @@ -0,0 +1,16 @@ +*.iml +.gradle +/local.properties +/.idea/caches +/.idea/libraries +/.idea/modules.xml +/.idea/workspace.xml +/.idea/navEditor.xml +/.idea/assetWizardSettings.xml +.DS_Store +/build +/captures +.externalNativeBuild +/entry/.preview +.cxx +/node_modules diff --git a/linwu-linwu-6-2/build.gradle b/linwu-linwu-6-2/build.gradle new file mode 100644 index 00000000..ee807be2 --- /dev/null +++ b/linwu-linwu-6-2/build.gradle @@ -0,0 +1,50 @@ +// 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 { + signingConfigs { + debug { + storeFile file('C:\\Users\\zhangzheng\\.ohos\\config\\auto_debug_myinfo_2850086000407450257.p12') + storePassword '00000018B41FCBC653469D9033182C3D5F4B0F04ACAA34A6623237B39CF1CB71037CDD44D980899D' + keyAlias = 'debugKey' + keyPassword '0000001862989EEAC70F2A7C36925DA306199F8687C7B8E5F0DE83661817CAC83D9A6EA731230D57' + signAlg = 'SHA256withECDSA' + profile file('C:\\Users\\zhangzheng\\.ohos\\config\\auto_debug_myinfo_2850086000407450257.p7b') + certpath file('C:\\Users\\zhangzheng\\.ohos\\config\\auto_debug_myinfo_2850086000407450257.cer') + } + } + compileSdkVersion 6 +} + +buildscript { + repositories { + maven { + url 'https://repo.huaweicloud.com/repository/maven/' + } + maven { + url 'https://developer.huawei.com/repo/' + } + } + dependencies { + classpath 'com.huawei.ohos:hap:3.0.5.2' + classpath 'com.huawei.ohos:decctest:1.2.7.2' + } +} + +allprojects { + repositories { + maven { + url 'https://repo.huaweicloud.com/repository/maven/' + } + maven { + url 'https://developer.huawei.com/repo/' + } + maven { + url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' + } + maven { + url 'https://s01.oss.sonatype.org/content/repositories/releases/' + } + } +} diff --git a/linwu-linwu-6-2/gradle.properties b/linwu-linwu-6-2/gradle.properties new file mode 100644 index 00000000..be492496 --- /dev/null +++ b/linwu-linwu-6-2/gradle.properties @@ -0,0 +1,13 @@ +# Project-wide Gradle settings. +# IDE (e.g. DevEco Studio) users: +# Gradle settings configured through the IDE *will override* +# any settings specified in this file. +# For more details on how to configure your build environment visit +# http://www.gradle.org/docs/current/userguide/build_environment.html +# Specifies the JVM arguments used for the daemon process. +# The setting is particularly useful for tweaking memory settings. +# If the Chinese output is garbled, please configure the following parameter. +# This function is enabled by default when the DevEco Studio builds the hap/app,if you need disable gradle parallel,you should set org.gradle.parallel false. +# more information see https://docs.gradle.org/current/userguide/performance.html +# org.gradle.parallel=false +# org.gradle.jvmargs=-Dfile.encoding=GBK \ No newline at end of file -- Gitee