========================
Easy Podfile !
PodfileKit summarizes the common iOS (Swift) third-party frameworks on GitHub, and classifies the frameworks, which provides convenience for users to manage the third-party frameworks.
简体中文: 中文文档
- Set up Platform
- Designated Third Party framework
- Framework Classification
- Subframework
- Set up groups
- Use
- Contributing
- License
platform:ios '13.0'
. The '13.0'
here is the lowest iOS system version that the app can support. You can replace it with '11.0', '12.3' , '14.0'
and so on.
Pod 'ARVideoKit'
specifies a framework named 'ARVideoKit'
to download. You can replace 'ARVideoKit'
with 'name of the framework you want to install'
. Specify the corresponding URL by : git = >
, specify the corresponding branch by : Branch = >
, specify the submitted version by commit:
, specify the marked submitted version by : tag = >
, and specify the submitted version by : inhibit'_ Warnings = > true
to avoid warnings from a single framework. Of course, the relevant specifications after pod' ARVideoKit
can be omitted. In this way, you will download the default version of the framework, which is generally the latest version suitable for your project.
The frameworks are classified, you can also classify according to your own preferences. When there is a framework you need to use in the classification, you can delete "#".
For some frameworks, if only some of the functions in the framework are used, it is not necessary to download the whole framework, only its sub frameworks.
You can use
def groupName
pod ...
...
end
to set up groups, for example, some frameworks are used for debugging, some frameworks are used for app publishing, and some frameworks are special. After target
, you need to replace ProjectName
with the name of your project.
- Clone the repository to get the
PodFile
file in the repository - Directly download the
PodFile
in the repository and put it under the directory of the project folder - Copy the contents of the
PodFile
in the repository to your own generatedPodFile
- Use the terminal to open the project directory and run the following command
$ pod install
- Fork it !
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request
PodfileKit is released under the MIT license. See LICENSE for details.