1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/harmonyos-cases-cases

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
build-profile.json5 17 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
chenyongjian Отправлено 23.01.2025 17:27 f02ed09
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766
{
"app": {
"products": [
{
"name": "default",
"bundleName": "com.north.cases.debug",
"signingConfig": "default",
"compatibleSdkVersion": '5.0.0(12)',
"runtimeOS": "HarmonyOS",
"buildOption": {
"strictMode": {
"useNormalizedOHMUrl": true
}
}
},
{
"name": "tablet_product",
// 定义tablet版本的包名
"bundleName": "com.north.casestablet",
// 定义tablet版本的签名文件信息
"signingConfig": "tablet",
"compatibleSdkVersion": '5.0.0(12)',
"runtimeOS": "HarmonyOS"
},
{
"name": "phone_target_product",
"bundleName": "com.north.cases",
"signingConfig": "product",
"compatibleSdkVersion": '5.0.0(12)',
"runtimeOS": "HarmonyOS",
"buildOption": {
"strictMode": {
"useNormalizedOHMUrl": true
}
}
}
],
"buildModeSet": [
{
"name": "debug"
},
{
"name": "release"
}
],
"signingConfigs": []
},
"modules": [
{
"name": "entry",
"srcPath": "./product/entry",
// TODO: 知识点:设置不同版本target的打包规则
"targets": [
{
// 将default target 打包到default版本的APP中
"name": "default",
"applyToProducts": [
"default"
]
},
{
// 将tablet target 打包到平板版本的APP中
"name": "tablet_target",
// 设置该target适用于平板版本的APP
"applyToProducts": [
"tablet_product"
]
},
{
"name": "phone_target_product",
"applyToProducts": [
"phone_target_product"
]
}
]
},
{
"name": "functionalscenes",
"srcPath": "./feature/functionalscenes"
},
{
"name": "utils",
"srcPath": "./common/utils"
},
{
"name": "eventpropagation",
"srcPath": "./feature/eventpropagation"
},
{
"name": "nativerawfile",
"srcPath": "./feature/nativerawfile"
},
{
"name": "customtabbar",
"srcPath": "./feature/customtabbar"
},
{
"name": "secondarylinkage",
"srcPath": "./feature/secondarylinkage"
},
{
"name": "barchart",
"srcPath": "./feature/barchart"
},
{
"name": "addressexchange",
"srcPath": "./feature/addressexchange"
},
{
"name": "pendingitems",
"srcPath": "./feature/pendingitems"
},
{
"name": "imageviewer",
"srcPath": "./feature/imageviewer"
},
{
"name": "gbktranscoding",
"srcPath": "./feature/gbktranscoding"
},
{
"name": "handletabs",
"srcPath": "./feature/handletabs"
},
{
"name": "modalwindow",
"srcPath": "./feature/modalwindow"
},
{
"name": "slidetohideanddisplace",
"srcPath": "./feature/slidetohideanddisplace"
},
{
"name": "navigationparametertransfer",
"srcPath": "./feature/navigationparametertransfer"
},
{
"name": "akiusepractice",
"srcPath": "./feature/akiusepractice"
},
{
"name": "variablewatch",
"srcPath": "./feature/variablewatch"
},
{
"name": "routermodule",
"srcPath": "./common/routermodule"
},
{
"name": "pageturninganimation",
"srcPath": "./feature/pageturninganimation"
},
{
"name": "applicationexception",
"srcPath": "./feature/applicationexception"
},
{
"name": "fitfordarkmode",
"srcPath": "./feature/fitfordarkmode"
},
{
"name": "pulltorefreshnews",
"srcPath": "./feature/pulltorefreshnews"
},
{
"name": "marquee",
"srcPath": "./feature/marquee"
},
{
"name": "nativeprogressnotify",
"srcPath": "./feature/nativeprogressnotify"
},
{
"name": "photopickandsave",
"srcPath": "./feature/photopickandsave"
},
{
"name": "verifycode",
"srcPath": "./feature/verifycode"
},
{
"name": "vibrateeffect",
"srcPath": "./feature/vibrateeffect"
},
{
"name": "swipersmoothvariation",
"srcPath": "./feature/swipersmoothvariation"
},
{
"name": "swipercomponent",
"srcPath": "./feature/swipercomponent"
},
{
"name": "searchcomponent",
"srcPath": "./feature/searchcomponent"
},
{
"name": "navigationbarchange",
"srcPath": "./feature/navigationbarchange"
},
{
"name": "mediafullscreen",
"srcPath": "./feature/mediafullscreen"
},
{
"name": "citysearch",
"srcPath": "./feature/citysearch"
},
{
"name": "imagecomment",
"srcPath": "./feature/imagecomment"
},
{
"name": "waterripples",
"srcPath": "./feature/waterripples"
},
{
"name": "foldablescreencases",
"srcPath": "./feature/foldablescreencases"
},
{
"name": "nativesavepictosandbox",
"srcPath": "./feature/nativesavepictosandbox"
},
{
"name": "componentstack",
"srcPath": "./feature/componentstack"
},
{
"name": "customcalendarpickerdialog",
"srcPath": "./feature/customcalendarpickerdialog"
},
{
"name": "customview",
"srcPath": "./feature/customview"
},
{
"name": "dragandexchange",
"srcPath": "./feature/dragandexchange"
},
{
"name": "decompressfile",
"srcPath": "./feature/decompressfile"
},
{
"name": "paintcomponent",
"srcPath": "./feature/paintcomponent"
},
{
"name": "shortvideo",
"srcPath": "./feature/shortvideo"
},
{
"name": "digitalscrollanimation",
"srcPath": "./feature/digitalscrollanimation"
},
{
"name": "lottieview",
"srcPath": "./feature/lottieview"
},
{
"name": "votingcomponent",
"srcPath": "./feature/votingcomponent"
},
{
"name": "webgetcameraimage",
"srcPath": "./feature/webgetcameraimage"
},
{
"name": "sidebaranimation",
"srcPath": "./feature/sidebaranimation"
},
{
"name": "imagecompression",
"srcPath": "./feature/imagecompression"
},
{
"name": "imageenableanalyzer",
"srcPath": "./feature/imageenableanalyzer"
},
{
"name": "chinesetopinyin",
"srcPath": "./feature/chinesetopinyin"
},
{
"name": "bottomdrawerslidecase",
"srcPath": "./feature/bottomdrawerslidecase"
},
{
"name": "expandtitle",
"srcPath": "./feature/expandtitle"
},
{
"name": "componentinstancesharedinpages",
"srcPath": "./feature/componentinstancesharedinpages"
},
{
"name": "listslidetohistory",
"srcPath": "./feature/listslidetohistory"
},
{
"name": "pageloading",
"srcPath": "./feature/pageloading"
},
{
"name": "hilogmonitormanagement",
"srcPath": "./feature/hilogmonitormanagement"
},
{
"name": "bigfilecopy",
"srcPath": "./feature/bigfilecopy"
},
{
"name": "diggingholescreen",
"srcPath": "./feature/diggingholescreen"
},
{
"name": "dragtoswitchpictures",
"srcPath": "./feature/dragtoswitchpictures"
},
{
"name": "listitemoverflow",
"srcPath": "./feature/listitemoverflow"
},
{
"name": "customsafekeyboard",
"srcPath": "./feature/customsafekeyboard"
},
{
"name": "databaseupgrade",
"srcPath": "./feature/databaseupgrade"
},
{
"name": "transitionanimation",
"srcPath": "./feature/transitionanimation"
},
{
"name": "imagegridlayout",
"srcPath": "./feature/imagegridlayout"
},
{
"name": "dynamicattributes",
"srcPath": "./feature/dynamicattributes"
},
{
"name": "etswrapper",
"srcPath": "./feature/etswrapper"
},
{
"name": "handwritingtoimage",
"srcPath": "./feature/handwritingtoimage"
},
{
"name": "indicatorbelowswiper",
"srcPath": "./feature/indicatorbelowswiper"
},
{
"name": "multimodaltransion",
"srcPath": "./feature/multimodaltransion"
},
{
"name": "multiplefilesdownload",
"srcPath": "./feature/multiplefilesdownload"
},
{
"name": "nativeembed",
"srcPath": "./feature/nativeembed"
},
{
"name": "sideslipintercept",
"srcPath": "./feature/sideslipintercept"
},
{
"name": "webpdfviewer",
"srcPath": "./feature/webpdfviewer"
},
{
"name": "imagetheft",
"srcPath": "./feature/imagetheft"
},
{
"name": "cardswiperanimation",
"srcPath": "./feature/cardswiperanimation"
},
{
"name": "effectkit",
"srcPath": "./feature/effectkit"
},
{
"name": "voicerecordynamiceffect",
"srcPath": "./feature/voicerecordynamiceffect"
},
{
"name": "fontdynamicregistration",
"srcPath": "./feature/fontdynamicregistration"
},
{
"name": "customscan",
"srcPath": "./feature/customscan"
},
{
"name": "imagedepthcopy",
"srcPath": "./feature/imagedepthcopy"
},
{
"name": "pageflip",
"srcPath": "./feature/pageflip"
},
{
"name": "videocache",
"srcPath": "./feature/videocache"
},
{
"name": "iconmaincolor",
"srcPath": "./feature/iconmaincolor"
},
{
"name": "highlightguide",
"srcPath": "./feature/highlightguide"
},
{
"name": "wordrecognition",
"srcPath": "./feature/wordrecognition"
},
{
"name": "analogclock",
"srcPath": "./feature/analogclock"
},
{
"name": "xcomponentvsync",
"srcPath": "./feature/xcomponentvsync"
},
{
"name": "webcustompressmenu",
"srcPath": "./feature/webcustompressmenu"
},
{
"name": "bottompanelslide",
"srcPath": "./feature/bottompanelslide"
},
{
"name": "danmakuplayer",
"srcPath": "./feature/danmakuplayer"
},
{
"name": "listexchange",
"srcPath": "./feature/listexchange"
},
{
"name": "tabcontentoverflow",
"srcPath": "./feature/tabcontentoverflow"
},
{
"name": "chatwithexpression",
"srcPath": "./feature/chatwithexpression"
},
{
"name": "floatwindow",
"srcPath": "./feature/floatwindow"
},
{
"name": "gridexchange",
"srcPath": "./feature/gridexchange"
},
{
"name": "miniplayeranimation",
"srcPath": "./feature/miniplayeranimation"
},
{
"name": "refreshtimeline",
"srcPath": "./feature/refreshtimeline"
},
{
"name": "webpagesnapshot",
"srcPath": "./feature/webpagesnapshot"
},
{
"name": "customdialog",
"srcPath": "./feature/customdialog"
},
{
"name": "navigationinterceptor",
"srcPath": "./feature/navigationinterceptor"
},
{
"name": "blendmode",
"srcPath": "./feature/blendmode"
},
{
"name": "secondfloorloadanimation",
"srcPath": "./feature/secondfloorloadanimation"
},
{
"name": "styledtext",
"srcPath": "./feature/styledtext"
},
{
"name": "textexpand",
"srcPath": "./feature/textexpand"
},
{
"name": "imageresizable",
"srcPath": "./feature/imageresizable"
},
{
"name": "fadingedge",
"srcPath": "./feature/fadingedge"
},
{
"name": "textoverflow",
"srcPath": "./feature/textoverflow"
},
{
"name": "watermark",
"srcPath": "./feature/watermark"
},
{
"name": "customstepper",
"srcPath": "./feature/customstepper"
},
{
"name": "navdestinationdialog",
"srcPath": "./feature/navdestinationdialog"
},
{
"name": "searchswiper",
"srcPath": "./feature/searchswiper"
},
{
"name": "highlyloadedcomponentrender",
"srcPath": "./feature/perfermance/highlyloadedcomponentrender"
},
{
"name": "videolinkagelist",
"srcPath": "./feature/videolinkagelist"
},
{
"name": "customkeyboardtoh5",
"srcPath": "./feature/customkeyboardtoh5"
},
{
"name": "customreusablepool",
"srcPath": "./feature/perfermance/customreusablepool"
},
{
"name": "operaterdbintaskpool",
"srcPath": "./feature/perfermance/operaterdbintaskpool"
},
{
"name": "sendmessage",
"srcPath": "./feature/sendmessage"
},
{
"name": "palette",
"srcPath": "./feature/palette",
},
{
"name": "skeletondiagram",
"srcPath": "./feature/skeletondiagram",
},
{
"name": "imagemosaic",
"srcPath": "./feature/imagemosaic",
},
{
"name": "calendarswitch",
"srcPath": "./feature/calendarswitch",
},
{
"name": "videoscreendirectionswitching",
"srcPath": "./feature/videoscreendirectionswitching"
},
{
"name": "customdrawtabbar",
"srcPath": "./feature/customdrawtabbar",
},
{
"name": "eraser",
"srcPath": "./feature/eraser",
},
{
"name": "bluetooth",
"srcPath": "./feature/bluetooth",
},
{
"name": "imperativedynamiclayouts",
"srcPath": "./feature/perfermance/imperativedynamiclayouts",
},
{
"name": "customdecoration",
"srcPath": "./feature/customdecoration",
},
{
"name": "videolistautoplay",
"srcPath": "./feature/videolistautoplay",
},
{
"name": "editaddress",
"srcPath": "./feature/editaddress"
},
{
"name": "customanimationtab",
"srcPath": "./feature/customanimationtab"
},
{
"name": "statusbaranimation",
"srcPath": "./feature/statusbaranimation"
},
{
"name": "verticalhorizontallinkage",
"srcPath": "./feature/verticalhorizontallinkage"
},
{
"name": "livedetectionandencryptiond",
"srcPath": "./feature/livedetectionandencryptiond",
},
{
"name": "collapsemenu",
"srcPath": "./feature/collapsemenu"
},
{
"name": "addressrecognize",
"srcPath": "./feature/addressrecognize"
},
{
"name": "groupavatar",
"srcPath": "./feature/groupavatar"
},
{
"name": "h5cache",
"srcPath": "./feature/h5cache"
},
{
"name": "publishmultimediaupdates",
"srcPath": "./feature/publishmultimediaupdates",
"targets": [
{
"name": "default",
"applyToProducts": [
"default"
]
}
]
},
{
"name": "keyboardavoid",
"srcPath": "./feature/keyboardavoid",
},
{
"name": "mapthumbtack",
"srcPath": "./feature/mapthumbtack"
},
{
"name": "patternlock",
"srcPath": "./feature/patternlock"
},
{
"name": "selecttextmenu",
"srcPath": "./feature/selecttextmenu"
},
{
"name": "shareimagepage",
"srcPath": "./feature/shareimagepage",
},
{
"name": "immersive",
"srcPath": "./feature/immersive",
},
{
"name": "containernestedslide",
"srcPath": "./feature/containernestedslide"
},
{
"name": "advertisingpage",
"srcPath": "./feature/advertisingpage"
},
{
"name": "healthchart",
"srcPath": "./feature/healthchart",
},
{
"name": "backgroundblur",
"srcPath": "./feature/backgroundblur",
},
{
"name": "pipwindow",
"srcPath": "./feature/pipwindow",
},
{
"name": "clockin",
"srcPath": "./feature/clockin",
},
{
"name": "compressfile",
"srcPath": "./feature/compressfile"
},
{
"name": "decodeheifimage",
"srcPath": "./feature/decodeheifimage"
},
{
"name": "privacyagreement",
"srcPath": "./feature/privacyagreement",
},
{
"name": "customaddresspicker",
"srcPath": "./feature/customaddresspicker"
},
{
"name": "videocreategif",
"srcPath": "./feature/videocreategif"
},
{
"name": "clickanimation",
"srcPath": "./feature/clickanimation"
},
{
"name": "toolbox",
"srcPath": "./feature/toolbox"
},
{
"name": "networkstatusobserver",
"srcPath": "./feature/networkstatusobserver"
},
{
"name": "multiplescreening",
"srcPath": "./feature/multiplescreening"
},
{
"name": "limitedheightbottomdialog",
"srcPath": "./feature/limitedheightbottomdialog"
},
{
"name": "faceandfingerprintunlocking",
"srcPath": "./feature/faceandfingerprintunlocking",
},
{
"name": "cuberotateanimation",
"srcPath": "./feature/cuberotateanimation",
},
{
"name": "multicolumndisplay",
"srcPath": "./feature/multicolumndisplay",
},
{
"name": "dealstridesolution",
"srcPath": "./feature/dealstridesolution",
},
{
"name": "videotrimmer",
"srcPath": "./feature/videotrimmer"
},
{
"name": "encapsulationdialog",
"srcPath": "./feature/encapsulationdialog",
},
{
"name": "smartfill",
"srcPath": "./feature/smartfill",
},
{
"name": "sharebutton",
"srcPath": "./feature/sharebutton"
}
]
}

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/harmonyos-cases-cases.git
git@api.gitlife.ru:oschina-mirror/harmonyos-cases-cases.git
oschina-mirror
harmonyos-cases-cases
harmonyos-cases-cases
master