-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f4d4cb4
commit bbffcce
Showing
2 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
import { defineManifestConfig } from '@uni-helper/vite-plugin-uni-manifest' | ||
|
||
export default defineManifestConfig({ | ||
'name': '', | ||
'appid': '', | ||
'description': '', | ||
'versionName': '1.0.0', | ||
'versionCode': '100', | ||
'transformPx': false, | ||
/* 5+App特有相关 */ | ||
'app-plus': { | ||
usingComponents: true, | ||
nvueStyleCompiler: 'uni-app', | ||
compilerVersion: 3, | ||
splashscreen: { | ||
alwaysShowBeforeRender: true, | ||
waiting: true, | ||
autoclose: true, | ||
delay: 0, | ||
}, | ||
/* 模块配置 */ | ||
modules: {}, | ||
/* 应用发布信息 */ | ||
distribute: { | ||
/* android打包配置 */ | ||
android: { | ||
permissions: [ | ||
'<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE"/>', | ||
'<uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS"/>', | ||
'<uses-permission android:name="android.permission.VIBRATE"/>', | ||
'<uses-permission android:name="android.permission.READ_LOGS"/>', | ||
'<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>', | ||
'<uses-feature android:name="android.hardware.camera.autofocus"/>', | ||
'<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>', | ||
'<uses-permission android:name="android.permission.CAMERA"/>', | ||
'<uses-permission android:name="android.permission.GET_ACCOUNTS"/>', | ||
'<uses-permission android:name="android.permission.READ_PHONE_STATE"/>', | ||
'<uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>', | ||
'<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"/>', | ||
], | ||
}, | ||
/* ios打包配置 */ | ||
ios: {}, | ||
/* SDK配置 */ | ||
sdkConfigs: {}, | ||
}, | ||
}, | ||
/* 快应用特有相关 */ | ||
'quickapp': {}, | ||
/* 小程序特有相关 */ | ||
'mp-weixin': { | ||
appid: '', | ||
setting: { | ||
urlCheck: false, | ||
}, | ||
usingComponents: true, | ||
darkmode: true, | ||
themeLocation: 'theme.json', | ||
}, | ||
'mp-alipay': { | ||
usingComponents: true, | ||
}, | ||
'mp-baidu': { | ||
usingComponents: true, | ||
}, | ||
'mp-toutiao': { | ||
usingComponents: true, | ||
}, | ||
'h5': { | ||
darkmode: true, | ||
themeLocation: 'theme.json', | ||
}, | ||
'uniStatistics': { | ||
enable: false, | ||
}, | ||
'vueVersion': '3', | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import { defineUniPages } from '@uni-helper/vite-plugin-uni-pages' | ||
|
||
export default defineUniPages({ | ||
pages: [], | ||
globalStyle: { | ||
backgroundColor: '@bgColor', | ||
backgroundColorBottom: '@bgColorBottom', | ||
backgroundColorTop: '@bgColorTop', | ||
backgroundTextStyle: '@bgTxtStyle', | ||
navigationBarBackgroundColor: '#000000', | ||
navigationBarTextStyle: '@navTxtStyle', | ||
navigationBarTitleText: 'Uni Creator', | ||
navigationStyle: 'custom', | ||
}, | ||
subPackages: [], | ||
}) |