From df2a71cf5feb914a9ca0540142bb6bf1865e26fb Mon Sep 17 00:00:00 2001
From: shuishen <1109946754@qq.com>
Date: Thu, 13 Nov 2025 18:26:19 +0800
Subject: [PATCH] feat:未登录跳转登录页
---
src/manifest.json | 51 +++++++++++++++++++++++++++++++++++++++++++++------
1 files changed, 45 insertions(+), 6 deletions(-)
diff --git a/src/manifest.json b/src/manifest.json
index cc1864a..ebb9e26 100644
--- a/src/manifest.json
+++ b/src/manifest.json
@@ -1,12 +1,24 @@
{
- "name" : "",
- "appid" : "",
+ "name" : "掌控智飞",
+ "appid" : "__UNI__0981D7F",
"description" : "",
"versionName" : "1.0.0",
"versionCode" : "100",
"transformPx" : false,
/* 5+App特有相关 */
"app-plus" : {
+ "orientation" : [
+ //竖屏正方向
+ "portrait-primary",
+ //竖屏反方向
+ "portrait-secondary",
+ //横屏正方向
+ "landscape-primary",
+ //横屏反方向
+ "landscape-secondary",
+ //自然方向
+ "default"
+ ],
"usingComponents" : true,
"nvueStyleCompiler" : "uni-app",
"compilerVersion" : 3,
@@ -37,13 +49,40 @@
"<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>",
"<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>",
"<uses-feature android:name=\"android.hardware.camera\"/>",
- "<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"
+ "<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>",
+ "<uses-permission android:name=\"android.permission.RECORD_AUDIO\" />"
]
},
/* ios打包配置 */
- "ios" : {},
+ "ios" : {
+ "dSYMs" : false
+ },
/* SDK配置 */
- "sdkConfigs" : {}
+ "sdkConfigs" : {},
+ "icons" : {
+ "android" : {
+ "hdpi" : "src/static/images/app-logo.png",
+ "xhdpi" : "src/static/images/app-logo.png",
+ "xxhdpi" : "src/static/images/app-logo.png",
+ "xxxhdpi" : "src/static/images/app-logo.png"
+ }
+ }
+ },
+ "nativePlugins" : {
+ "TencentCloud-TUICallKit" : {
+ "__plugin_info__" : {
+ "name" : "【官方】腾讯云音视频通话插件TencentCloud-TUICallKit",
+ "description" : "TUICallKit 是腾讯云官方推出的音视频通话插件,支持 1v1 通话和群组通话,并提供“类微信\"的 UI 交互,开发者仅需三个 API 就可实现。",
+ "platforms" : "Android,iOS",
+ "url" : "https://ext.dcloud.net.cn/plugin?id=9035",
+ "android_package_name" : "uni.app.UNI0981D7F",
+ "ios_bundle_id" : "uni.app.UNI0981D7F",
+ "isCloud" : true,
+ "bought" : 1,
+ "pid" : "9035",
+ "parameters" : {}
+ }
+ }
}
},
/* 快应用特有相关 */
@@ -72,7 +111,7 @@
"h5" : {
"router" : {
"mode" : "hash",
- "base" : "/uniapp-vue3-template/"
+ "base" : "/drone-app/"
}
}
}
--
Gitblit v1.9.3