移动端模块化开发

发布时间:2024年01月03日

一、iOS

使用GitHub&Cocoapods;

cd /Users/kevin/Desktop
pod lib create WidgetCollection-Swift

执行完上述命令后,依次填写后面的问题;
完成问题后我们配置WidgetCollection-Swift.podspec文件;
去GitHub上创建一个新的库WidgetCollection-Swift
然后将本地的工程推送到GitHub上;
验证本地的podspec;

cd podspec所在文件目录
pod spec lint WidgetCollection-Swift.podspec

把自己的库与本地podspec repo关联;

pod repoName push WidgetCollection-Swift.podspec

重新验证使用;
Podfile添加路径。

pod 'WidgetCollection-Swift', :git => 'https://github.com/KevinSnoopy/WidgetCollection-Swift.git'

二、Android

使用GitHub&JitPack
首先使用Android Studio创建Module,选择Android Library进行配置;
将Library上传至GitHub,选择对应的Release或创建新的Release,填写完整信息后Publish release;
JitPack官网,通过仓库地址找到对应的仓库;
点击Get it进行编译,编译成功后就可以被其他工程引用。

allprojects {
    repositories {
        maven { url 'https://jitpack.io/' }
    }
}
dependencies {
        compile 'com.github.xxx:xxxLibrary:$version'
    }

三、Flutter

使用GitHub;

cd /Users/kevin/Desktop
flutter create --template=package xxx

将对应的库上传至GitHub;
在pubspec.yaml的dependencies:或dev_dependencies:目录下添加对应的库。

四、RN

项目根目录下执行;

npm install -g react-native-create-library 或 yarn add react-native-create-library

创建库文件;

react-native-create-library xxxx

按照iOS或Android的步骤。

文章来源:https://blog.csdn.net/weixin_42979360/article/details/135342561
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。