使用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'
使用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'
}
使用GitHub;
cd /Users/kevin/Desktop
flutter create --template=package xxx
将对应的库上传至GitHub;
在pubspec.yaml的dependencies:或dev_dependencies:目录下添加对应的库。
项目根目录下执行;
npm install -g react-native-create-library 或 yarn add react-native-create-library
创建库文件;
react-native-create-library xxxx
按照iOS或Android的步骤。