logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

【Flutter】自定义插件开发

1、创建工程flutter create --org com.kinsomy --template=plugin -i swift -a kotlin hello--org选项:指定您的组织--template选项:1、package 开发Dart包2、plugin 创建插件包-i选项:iOS开发语言swift或者oc-a选项:Android开发语言java或者kotlin目录...

#flutter#android
【Flutter】Flutter安装

目录1、获取FlutterSDK2、配置环境变量3、相关命令4、开发iOS设备应用1、获取FlutterSDK官网https://flutter.io/sdk-archive/#macos国内https://github.com/flutter/flutter/releases国内的可以打开终端执行git clone https://github.com/flutter/flutter.git -

#flutter
【Flutter】flutter与原生交互-swift

flutter代码class _MyHomePageState extends State<MyHomePage> {String _nativeCallBackValue = '等待原生传值';//交互的通道名称,flutter和native是通过这个标识符进行相互间的通信static const communicateChannel = MethodChannel('https:/

#flutter
【Flutter】Mac环境下打包apk

1、打开终端生成签名文件keytool -genkey -v -keystore ~/sign.jks -keyalg RSA -keysize 2048 -validity 10000 -alias sign结果输入密钥库口令:再次输入新口令:您的名字与姓氏是什么?[Unknown]:yuanzhiying您的组织单位名称是什么?[Unknown]:gongsi您的组织名称是什么?[Unknow

#flutter
Cocoapods版本更新与切换

【代码】Cocoapods版本更新与切换。

文章图片
#cocoapods#xcode
【Vue】Vue学习资料

因项目需要,最近学习了前端开发Vue,主要参考材料:1、初识HTML+CSShttps://www.imooc.com/learn/92、vue.js教程https://www.runoob.com/vue2/vue-tutorial.html3、基于vue+vant搭建H5通用架子https://github.com/Ljhhhhhh/h5vue4、vant学习https://youzan.gi

【Vue】学习过程中用到的第三方插件

1、vant 移动端组件库 https://youzan.github.io/vant/#/zh-CN/2、Cookie 数据存储 https://www.npmjs.com/package/js-cookie3、vue-router 官方的路由管理器 https://router.vuejs.org/zh/4、axios 网络请求 https://www.kancloud.cn/yunye/ax

【Vue】MAC配置Vue环境并创建Vue项目

1、先安装Vuenpm install -g @vue/cli2、创建项目vue create hello-world3、启动项目npm run serve

【iOS】ITMS-90426: Invalid Swift Support - The SwiftSupport folder is missing. Rebuild your app using

ITMS-90426: Invalid Swift Support - The SwiftSupport folder is missing. Rebuild your app using the current public (GM) version of Xcode and resubmit it.问题原因:OC和swift混编造成的解决方案:然后xcode打包,使用xcode上传

#ios#objective-c#swift +1
【iOS】ERROR ITMS-90208: “Invalid Bundle. The bundle Runner.app/Frameworks/App.framework does not supp

ERROR ITMS-90208: "Invalid Bundle. The bundle Runner.app/Frameworks/App.framework does not support the minimum OS Version specified in the Info.plist."ERROR ITMS-90208: “Invalid Bundle. The bundle Run

#ios#objective-c#swift +1
到底了