diff --git a/ThirdPartyComponents/VCardDemo/AppScope/app.json5 b/ThirdPartyComponents/VCardDemo/AppScope/app.json5 new file mode 100644 index 0000000000000000000000000000000000000000..07cb4fadd6fd6ca1c7d3a3105fbc38d7a691fdb3 --- /dev/null +++ b/ThirdPartyComponents/VCardDemo/AppScope/app.json5 @@ -0,0 +1,11 @@ +{ + "app": { + "bundleName": "com.example.vcarddemo", + "vendor": "example", + "versionCode": 1000000, + "versionName": "1.0.0", + "icon": "$media:app_icon", + "label": "$string:app_name", + "distributedNotificationEnabled": true + } +} diff --git a/ThirdPartyComponents/VCardDemo/AppScope/resources/base/element/string.json b/ThirdPartyComponents/VCardDemo/AppScope/resources/base/element/string.json new file mode 100644 index 0000000000000000000000000000000000000000..c16219ac920eb5cb4476d832780856ca335ebc50 --- /dev/null +++ b/ThirdPartyComponents/VCardDemo/AppScope/resources/base/element/string.json @@ -0,0 +1,8 @@ +{ + "string": [ + { + "name": "app_name", + "value": "VCardDemo" + } + ] +} diff --git a/ThirdPartyComponents/VCardDemo/AppScope/resources/base/media/app_icon.png b/ThirdPartyComponents/VCardDemo/AppScope/resources/base/media/app_icon.png new file mode 100644 index 0000000000000000000000000000000000000000..ce307a8827bd75456441ceb57d530e4c8d45d36c Binary files /dev/null and b/ThirdPartyComponents/VCardDemo/AppScope/resources/base/media/app_icon.png differ diff --git a/ThirdPartyComponents/VCardDemo/entry/build-profile.json5 b/ThirdPartyComponents/VCardDemo/entry/build-profile.json5 index f8f03407f77914b43168aeca6bb0929efd6700b4..befa10141dfc5999e35f60a36a9f948e664732b1 100644 --- a/ThirdPartyComponents/VCardDemo/entry/build-profile.json5 +++ b/ThirdPartyComponents/VCardDemo/entry/build-profile.json5 @@ -5,9 +5,6 @@ "targets": [ { "name": "default" - }, - { - "name": "ohosTest", } ] } \ No newline at end of file diff --git a/ThirdPartyComponents/VCardDemo/entry/hvigorfile.ts b/ThirdPartyComponents/VCardDemo/entry/hvigorfile.ts new file mode 100644 index 0000000000000000000000000000000000000000..80e4ec5b81689f238c34614b167a0b9e9c83e8d9 --- /dev/null +++ b/ThirdPartyComponents/VCardDemo/entry/hvigorfile.ts @@ -0,0 +1,2 @@ +// Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. +export { hapTasks } from '@ohos/hvigor-ohos-plugin'; diff --git a/ThirdPartyComponents/VCardDemo/entry/package.json b/ThirdPartyComponents/VCardDemo/entry/package.json index bcbe61fd8bf63d97d44218e5d63c582a6f76bcce..1d609b2f5fbd3f5df826e32cd9bf71bb93f94a23 100644 --- a/ThirdPartyComponents/VCardDemo/entry/package.json +++ b/ThirdPartyComponents/VCardDemo/entry/package.json @@ -1,16 +1,16 @@ { - "license":"ISC", - "devDependencies":{}, - "name":"entry", - "ohos":{ - "org":"huawei", - "directoryLevel":"module", - "buildTool":"hvigor" + "license": "ISC", + "devDependencies": {}, + "name": "entry", + "ohos": { + "org": "huawei", + "directoryLevel": "module", + "buildTool": "hvigor" }, - "description":"example description", - "repository":{}, - "version":"1.0.0", - "dependencies":{ - "@ohos/vcard":"^2.1.0" + "description": "example description", + "repository": {}, + "version": "1.0.0", + "dependencies": { + "@ohos/vcard": "^2.1.0" } -} \ No newline at end of file +} diff --git a/ThirdPartyComponents/VCardDemo/entry/src/main/ets/entryability/EntryAbility.ts b/ThirdPartyComponents/VCardDemo/entry/src/main/ets/entryability/EntryAbility.ts new file mode 100644 index 0000000000000000000000000000000000000000..a548a4a610b5dd2da5ff1fa5173e9d21ccb88d97 --- /dev/null +++ b/ThirdPartyComponents/VCardDemo/entry/src/main/ets/entryability/EntryAbility.ts @@ -0,0 +1,51 @@ +import hilog from '@ohos.hilog'; +import Ability from '@ohos.application.Ability' +import Window from '@ohos.window' + +export default class EntryAbility extends Ability { + onCreate(want, launchParam) { + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onCreate'); + hilog.info(0x0000, 'testTag', '%{public}s', 'want param:' + JSON.stringify(want) ?? ''); + hilog.info(0x0000, 'testTag', '%{public}s', 'launchParam:' + JSON.stringify(launchParam) ?? ''); + } + + onDestroy() { + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onDestroy'); + } + + onWindowStageCreate(windowStage: Window.WindowStage) { + // Main window is created, set main page for this ability + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageCreate'); + + windowStage.loadContent('pages/Index', (err, data) => { + if (err.code) { + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.ERROR); + hilog.error(0x0000, 'testTag', 'Failed to load the content. Cause: %{public}s', JSON.stringify(err) ?? ''); + return; + } + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', 'Succeeded in loading the content. Data: %{public}s', JSON.stringify(data) ?? ''); + }); + } + + onWindowStageDestroy() { + // Main window is destroyed, release UI related resources + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onWindowStageDestroy'); + } + + onForeground() { + // Ability has brought to foreground + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onForeground'); + } + + onBackground() { + // Ability has back to background + hilog.isLoggable(0x0000, 'testTag', hilog.LogLevel.INFO); + hilog.info(0x0000, 'testTag', '%{public}s', 'Ability onBackground'); + } +} diff --git a/ThirdPartyComponents/VCardDemo/entry/src/main/ets/pages/Index.ets b/ThirdPartyComponents/VCardDemo/entry/src/main/ets/pages/Index.ets new file mode 100644 index 0000000000000000000000000000000000000000..23afce9f01aa70505c5f0a8dd0cec005ed1aed5a --- /dev/null +++ b/ThirdPartyComponents/VCardDemo/entry/src/main/ets/pages/Index.ets @@ -0,0 +1,360 @@ +/* + * Copyright (c) 2021 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import router from "@system.router"; +import {contact} from "@ohos/vcard"; +import {VCardBuilder} from "@ohos/vcard"; +import {VCardConfig} from "@ohos/vcard"; + +@Entry +@Component +struct FlexExample { + private scroller: Scroller = new Scroller() // 滚动 + @State name: string= "zhangsan"// router.getParams() == null ? "姓名" + @State OrganizationName: string= "chengmai" + @State phonename: string= "13537292684"// 电话号码 + @State emails : string= "qq.q@qq.com"// 电子邮件 + @State note : string= "程序员苦逼"// 备注 + @State PostalAddreSSA : string= "wuhan"// 地址 + @State website : string= "baidu"// 网站 + @State EventA: string="20000000" // 生日 + @State index: string= '手机'// 手机下拉框 + @State index1: string= '私人'// 邮箱下拉框 + @State index2: string= '住宅'// 住宅下拉框 + @State fd: number = 0 + + build() { + Column({space:5}) { + Scroll(this.scroller) { + Column({ space: 5 }) { + Stack() { + Text('编辑联系人') + .fontSize(30) + .fontWeight(FontWeight.Bold) + .align(Alignment.Center) + Stack({ alignContent: Alignment.End }) { + Button("保存",{ type: ButtonType.Normal, stateEffect: true }) + .borderRadius(12) + .backgroundColor(0x317aff) + .fontSize(30) + .margin({right:12}) + .onClick(() => + { + console.info('onClick start') + // 姓名模块 + let name = new contact.Name() + let contactall = new contact.Contact() + contactall.name = name + contactall.name.fullName = this.name // 将名字存入name类中fullname + + // 单位 + let Organization = new contact.Organization() + contactall.organization = Organization + contactall.organization.name = this.OrganizationName + + // 手机模块12 + let phoneNumber = new contact.PhoneNumber() + phoneNumber.labelName = this.index + phoneNumber.labelId = parseInt(this.index) + phoneNumber.phoneNumber = this.phonename + contactall.phoneNumbers = [phoneNumber] // 只能传一个,不能更改或者添加 + + // 邮件模块 + let Email = new contact.Email() + Email.labelName = this.index1 + Email.labelId = parseInt(this.index1) + Email.email = this.emails + contactall.emails = [Email] + + // 备注 + let note = new contact.Note() + contactall.note = note + contactall.note.noteContent = this.note + + // 住宅地址 + let PostalAddreSS = new contact.PostalAddress() + PostalAddreSS.labelId = parseInt(this.index2) + PostalAddreSS.region = this.PostalAddreSSA + contactall.postalAddresses = [PostalAddreSS] + + // 网站 + let website = new contact.Website() + contactall.websites = [website] + contactall.websites[0].website = this.website + + // 生日 + let event = new contact.Event() + event.eventDate = this.EventA + contactall.events = [event] + + let vcardBuilder = new VCardBuilder(VCardConfig.VCARD_TYPE_V21_GENERIC,"UTF-8") + vcardBuilder.appendNameProperties(contactall) + vcardBuilder.appendOrganizations(contactall) + vcardBuilder.appendPhones(contactall,null) + vcardBuilder.appendEmails(contactall) + vcardBuilder.appendNotes(contactall) + vcardBuilder.appendPostals(contactall) + vcardBuilder.appendWebsites(contactall) + vcardBuilder.appendEvents(contactall) + router.push({ + uri:"pages/There", + params: { + cvs: vcardBuilder.toString() + } + }) + }) + }.width('100%') + } + .height(50) + .width('100%') + // 姓名填写 + Flex({ justifyContent: FlexAlign.Start, alignItems: ItemAlign.Center }) { //1 + Image($r('app.media.ic_public_contacts')) // 图片 + .objectFit(ImageFit.Contain) + .height(30) + .width(30) + .margin({top:5}) + TextInput({ placeholder:"输入姓名", text: this.name }) + .placeholderFont({size: "14fp",weight: "100"}) + .height(45) + .width("100%") + .backgroundColor(Color.White) + .onChange((name) => { + this.name = name + }) + } + .height(60) + .width('90%') + .padding({left:10}) + .backgroundColor(Color.White) + .borderStyle(BorderStyle.Dashed) + .borderWidth(0) + .borderColor(Color.Red) + .borderRadius(15) + + // 单位 + Flex({ justifyContent: FlexAlign.Start, alignItems: ItemAlign.Center }) { + Image($r('app.media.ic_edit_company')) + .objectFit(ImageFit.Contain) + .height(30) + .width(30) + .margin({ top: 5 }) + + TextInput({ placeholder:"公司", text: this.OrganizationName }) + .placeholderFont({size: "14fp",weight: "100"}) + .height(45) + .width("100%") + .onChange((OrganizationName) => { + this.OrganizationName = OrganizationName + }) + } + .height(60) + .width('90%') + .padding({left:10}) + .backgroundColor(Color.White) + .borderStyle(BorderStyle.Dashed) + .borderWidth(0) + .borderColor(Color.Red) + .borderRadius(15) + + // 手机 + Flex({ justifyContent: FlexAlign.Start, alignItems: ItemAlign.Center }){ + Flex({ justifyContent: FlexAlign.Start, alignItems: ItemAlign.Center}) { + Image($r('app.media.ic_public_phone')) + .objectFit(ImageFit.Contain) + .height(30) + .width(30) + .margin({ top: 5 }) + Text(this.index) + .width(80) + .height(20) + .fontSize(16) + .margin({left:5}) + } + .width('45%') + + // 下拉菜单 + TextInput({ placeholder:"电话号码", text: this.phonename }) + .placeholderFont({size: "14fp",weight: "40"}) + .width('55%') + .type(InputType.Number) + .onChange((value) => { + this.phonename = value + }) + } .height(60) + .width('90%') + .padding({left:10}) + .backgroundColor(Color.White) + .borderStyle(BorderStyle.Dashed) + .borderWidth(0) + .borderColor(Color.Red) + .borderRadius(15) + // 電子郵件 + Flex({ justifyContent: FlexAlign.Start, alignItems: ItemAlign.Center }){ + Flex({ justifyContent: FlexAlign.Start, alignItems: ItemAlign.Center}){ + Image($r('app.media.ic_public_email')) + .objectFit(ImageFit.Contain) + .height(30) + .width(30) + .margin({ top: 5 }) + Text(this.index1) + .width(80) + .height(40) + .fontSize(16) + .margin({left:5}) + } + .width('45%') + // 下拉菜单 + TextInput({ placeholder:"电子邮件", text: this.emails }) + .placeholderFont({size: "14fp",weight: "40"}) + .width('55%') + .type(InputType.Email) + .onChange((value) => { + this.emails = value + }) + } .height(60) + .width('90%') + .padding({left:10}) + .backgroundColor(Color.White) + .borderStyle(BorderStyle.Dashed) + .borderWidth(0) + .borderColor(Color.Red) + .borderRadius(15) + // 备注 + Flex({ justifyContent: FlexAlign.Start, alignItems: ItemAlign.Center }){ + Flex({ justifyContent: FlexAlign.Start, alignItems: ItemAlign.Center}){ + Image($r('app.media.ic_public_drawer')) + .objectFit(ImageFit.Contain) + .height(30) + .width(30) + .margin({ top: 5 }) + Text("备注") + .width(80) + .height(40) + .fontSize(16) + .margin({left:5}) + }.width('45%') + TextInput({ placeholder:"备注", text: this.note }) + .placeholderFont({size: "14fp",weight: "40"}) + .width('55%') + .onChange((value) => { + this.note = value + }) + } .height(60) + .width('90%') + .padding({left:10}) + .backgroundColor(Color.White) + .borderStyle(BorderStyle.Dashed) + .borderWidth(0) + .borderColor(Color.Red) + .borderRadius(15) + + // 住宅 + Flex({ justifyContent: FlexAlign.Start, alignItems: ItemAlign.Center }){ + Flex({ justifyContent: FlexAlign.Start, alignItems: ItemAlign.Center}){ + Image($r('app.media.ic_public_phone')) + .objectFit(ImageFit.Contain) + .height(30) + .width(30) + .margin({ top: 5 }) + Text(this.index2) + .width(80) + .height(40) + .fontSize(16) + .margin({left:5}) + } + .width('45%') + // 下拉菜单 + TextInput({ placeholder:"地址", text: this.PostalAddreSSA }) + .placeholderFont({size: "14fp",weight: "40"}) + .width('55%') + .onChange((value) => { + this.PostalAddreSSA = value + }) + } .height(60) + .width('90%') + .padding({left:10}) + .backgroundColor(Color.White) + .borderStyle(BorderStyle.Dashed) + .borderWidth(0) + .borderColor(Color.Red) + .borderRadius(15) + + // 网址 + Flex({ justifyContent: FlexAlign.Start, alignItems: ItemAlign.Center }){ + Flex({ justifyContent: FlexAlign.Start, alignItems: ItemAlign.Center}) { + Image($r('app.media.ic_public_worldclock')) + .objectFit(ImageFit.Contain) + .height(30) + .width(30) + .margin({ top: 5 }) + Text('网站') + .width(80) + .height(40) + .fontSize(16) + .margin({left:5}) + }.width('45%') + // 下拉菜单 + TextInput({ placeholder:"网站", text: this.website }) + .placeholderFont({size: "14fp",weight: "40"}) + .width('55%') + .onChange((value) => { + this.website = value + }) + } .height(60) + .width('90%') + .padding({left:10}) + .backgroundColor(Color.White) + .borderStyle(BorderStyle.Dashed) + .borderWidth(0) + .borderColor(Color.Red) + .borderRadius(15) + + // 生日 + Flex({ justifyContent: FlexAlign.Start, alignItems: ItemAlign.Center }){ + Flex({ justifyContent: FlexAlign.Start, alignItems: ItemAlign.Center}){ + Image($r('app.media.ic_Edit_Birthday')) + .objectFit(ImageFit.Contain) + .height(30) + .width(30) + .margin({ top: 5 }) + Text('生日') + .width(80) + .height(40) + .fontSize(16) + .margin({left:5}) + } + .width('45%') + // 下拉菜单 + TextInput({ placeholder:"日期", text: this.EventA }) + .placeholderFont({size: "14fp",weight: "40"}) + .width("55%") + .type(InputType.Number) + .onChange((value) => { + this.EventA = value + }) + } .height(60) + .width('90%') + .padding({left:10}) + .backgroundColor(Color.White) + .borderStyle(BorderStyle.Dashed) + .borderWidth(0) + .borderColor(Color.Red) + .borderRadius(15) + }.width('100%').margin({ top: 5 }) + } + }.width('100%').backgroundColor('#FFf1f3f5').height('100%') + } +} \ No newline at end of file diff --git a/ThirdPartyComponents/VCardDemo/entry/src/main/ets/pages/There.ets b/ThirdPartyComponents/VCardDemo/entry/src/main/ets/pages/There.ets new file mode 100644 index 0000000000000000000000000000000000000000..602bf536ce80acf7e1cc508243c2097790c89932 --- /dev/null +++ b/ThirdPartyComponents/VCardDemo/entry/src/main/ets/pages/There.ets @@ -0,0 +1,45 @@ +/* + * Copyright (c) 2021 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +// @ts-nocheck +import router from '@system.router'; + +@Entry +@Component +struct There { + + @State readText: string= (router.getParams()==null?"default":router.getParams().cvs) + + build() { + Column() { + Text($r('app.string.title')) + .width('100%') + .backgroundColor('#0D9FFB') + .fontColor(Color.White) + .fontSize(20) + .padding({ left: 15 }) + + Text(this.readText) + .width('100%') + .backgroundColor('#DFDFDF') + .fontSize(20) + .margin({ top: 20 ,bottom:9}) + .textAlign(TextAlign.Start) + .padding(10) + } + .width('100%').height('100%') + .padding(15) + } +} \ No newline at end of file diff --git a/ThirdPartyComponents/VCardDemo/entry/src/main/module.json5 b/ThirdPartyComponents/VCardDemo/entry/src/main/module.json5 new file mode 100644 index 0000000000000000000000000000000000000000..0e288c05b41ef026b9f802f6c848bd5301ebc785 --- /dev/null +++ b/ThirdPartyComponents/VCardDemo/entry/src/main/module.json5 @@ -0,0 +1,37 @@ +{ + "module": { + "name": "entry", + "type": "entry", + "description": "$string:module_desc", + "mainElement": "EntryAbility", + "deviceTypes": [ + "default", + "tablet" + ], + "deliveryWithInstall": true, + "installationFree": false, + "pages": "$profile:main_pages", + "abilities": [ + { + "name": "EntryAbility", + "srcEntrance": "./ets/entryability/EntryAbility.ts", + "description": "$string:EntryAbility_desc", + "icon": "$media:icon", + "label": "$string:EntryAbility_label", + "startWindowIcon": "$media:icon", + "startWindowBackground": "$color:start_window_background", + "visible": true, + "skills": [ + { + "entities": [ + "entity.system.home" + ], + "actions": [ + "action.system.home" + ] + } + ] + } + ] + } +} \ No newline at end of file diff --git a/ThirdPartyComponents/VCardDemo/entry/src/main/resources/base/element/color.json b/ThirdPartyComponents/VCardDemo/entry/src/main/resources/base/element/color.json new file mode 100644 index 0000000000000000000000000000000000000000..3c712962da3c2751c2b9ddb53559afcbd2b54a02 --- /dev/null +++ b/ThirdPartyComponents/VCardDemo/entry/src/main/resources/base/element/color.json @@ -0,0 +1,8 @@ +{ + "color": [ + { + "name": "start_window_background", + "value": "#FFFFFF" + } + ] +} \ No newline at end of file diff --git a/ThirdPartyComponents/VCardDemo/entry/src/main/resources/base/element/string.json b/ThirdPartyComponents/VCardDemo/entry/src/main/resources/base/element/string.json index 4e5d12b22de157bcf0c6b75716a4924a78ad5c68..cecde70b4d809382125a106b70049087fb76a350 100644 --- a/ThirdPartyComponents/VCardDemo/entry/src/main/resources/base/element/string.json +++ b/ThirdPartyComponents/VCardDemo/entry/src/main/resources/base/element/string.json @@ -10,7 +10,7 @@ }, { "name": "EntryAbility_label", - "value": "label" + "value": "VCardDemo" }, { "name": "title", diff --git a/ThirdPartyComponents/VCardDemo/entry/src/main/resources/base/profile/main_pages.json b/ThirdPartyComponents/VCardDemo/entry/src/main/resources/base/profile/main_pages.json new file mode 100644 index 0000000000000000000000000000000000000000..2273fee0c771e87408b556a950b354e5ed5d0d4e --- /dev/null +++ b/ThirdPartyComponents/VCardDemo/entry/src/main/resources/base/profile/main_pages.json @@ -0,0 +1,6 @@ +{ + "src": [ + "pages/Index", + "pages/There" + ] +} diff --git a/ThirdPartyComponents/VCardDemo/entry/src/main/resources/en_US/element/string.json b/ThirdPartyComponents/VCardDemo/entry/src/main/resources/en_US/element/string.json new file mode 100644 index 0000000000000000000000000000000000000000..41eeff6c9af4182079014ac82b1c3630549c852e --- /dev/null +++ b/ThirdPartyComponents/VCardDemo/entry/src/main/resources/en_US/element/string.json @@ -0,0 +1,20 @@ +{ + "string": [ + { + "name": "module_desc", + "value": "module description" + }, + { + "name": "EntryAbility_desc", + "value": "description" + }, + { + "name": "EntryAbility_label", + "value": "VCardDemo" + }, + { + "name": "title", + "value": "result" + } + ] +} \ No newline at end of file diff --git a/ThirdPartyComponents/VCardDemo/entry/src/main/resources/zh_CN/element/string.json b/ThirdPartyComponents/VCardDemo/entry/src/main/resources/zh_CN/element/string.json new file mode 100644 index 0000000000000000000000000000000000000000..ff7a377ce9206d7e0c56ae21fd7c9230aa15b786 --- /dev/null +++ b/ThirdPartyComponents/VCardDemo/entry/src/main/resources/zh_CN/element/string.json @@ -0,0 +1,20 @@ +{ + "string": [ + { + "name": "module_desc", + "value": "模块描述" + }, + { + "name": "EntryAbility_desc", + "value": "description" + }, + { + "name": "EntryAbility_label", + "value": "VCardDemo" + }, + { + "name": "title", + "value": "生成结果" + } + ] +} \ No newline at end of file diff --git a/ThirdPartyComponents/VCardDemo/hvigorfile.ts b/ThirdPartyComponents/VCardDemo/hvigorfile.ts new file mode 100644 index 0000000000000000000000000000000000000000..6478186902c0c1ad7c966a929c7d6b7d8ae7a9f3 --- /dev/null +++ b/ThirdPartyComponents/VCardDemo/hvigorfile.ts @@ -0,0 +1,2 @@ +// Script for compiling build behavior. It is built in the build plug-in and cannot be modified currently. +export { appTasks } from '@ohos/hvigor-ohos-plugin'; \ No newline at end of file