Complementary Robovm RoboPods
Library | Version | Pod version | Description |
---|---|---|---|
SDWebImage | 4.2.3 | 0.1.0 | Asynchronous image downloader with cache support as a UIImageView category |
Lottie | 2.5.0 | 0.1.0 | An iOS library to natively render After Effects vector animations |
SDWebImage
$ git clone https://github.com/rs/SDWebImage.git
$ cd SDWebImage
$ git checkout tags/4.2.3
$ git submodule update --init --recursive
$
$ xcodebuild build -workspace SDWebImage.xcworkspace -scheme "SDWebImage iOS" -sdk iphoneos // For device
$ xcodebuild build -workspace SDWebImage.xcworkspace -scheme "SDWebImage iOS" -sdk iphonesimulator // For simulator
Lottie
$ git clone https://github.com/airbnb/lottie-ios.git
$ cd lottie-ios
$ git checkout tags/2.5.0
$
$ xcodebuild build -project Lottie.xcodeproj -sdk iphoneos // For device
$ xcodebuild build -project Lottie.xcodeproj -sdk iphonesimulator // For simulator
Copy SDWebImage.framework and Lottie.framework to <your project>/frameworks
<frameworkPaths>
<path>frameworks</path>
</frameworkPaths>
<frameworks>
<framework>SDWebImage</framework>
<framework>Lottie</framework>
...
</frameworks>
// SDWebImage
compile "com.omainegra.robopods:sdwebimage:4.2.3-0.1.0"
// Lottie
compile "com.omainegra.robopods:lottie:2.5.0-0.1.0"
$ git clone https://github.com/omainegra/robopods.git
$ cd robopods
$ git submodule update --init --recursive
$ ./gradlew build
Check the demo project included in this repo. It's written in Kotlin and feature some uses cases of the libraries
The version scheme is "<library_version>-<pod_version>"
If you want to have some other libraries included, please submit issues or pull-request.