拥有自己的应用程序
一、前因
自建的几个web小页面,怼在小程序上,不交米一直给我审核失败。无奈研究一下把项目打包为安卓包,进而摒弃掉恼人小程序。
项目是vite+vue3架构,其余自测。
二、 安装
安装依赖
npm install --save @capacitor/core @capacitor/cli @capacitor/android
初始化 Capacitor
在项目根目录中运行,输入包名以及ID,外加两个 n。
npx cap init
配置 capacitor.config.json:
修改生成的 capacitor.config.json 文件,将 webDir 设置为您的构建目录
三、 构建
打包项目
npm run build
添加 Android 平台
npx cap add android
复制打包文件
npx cap copy android
或
npx cap sync android
打开 Android Studio
npx cap open android
在 Android Studio 中构建 APK:
在 Android Studio 中,您可以通过菜单选择 Build > Build Bundle(s) / APK(s) > Build APK(s)
来生成 APK 文件。
四、总结
舒服,彻底告别小程序。