Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update podfile #342

Merged
merged 1 commit into from
Aug 3, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- lottie-ios (2.0.1)
- lottie-ios (2.0.2)

DEPENDENCIES:
- lottie-ios (from `../`)
Expand All @@ -9,7 +9,7 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
lottie-ios: eebbfc38fb4259235270f28a843b978c76b2a878
lottie-ios: c9ffa6f63af639e79eb45087c417974cb4435956

PODFILE CHECKSUM: fdbd59f361db8744871f0e9a0b3f94e0b7b8ca6b

Expand Down
8 changes: 5 additions & 3 deletions Example/Pods/Local Podspecs/lottie-ios.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Example/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

614 changes: 305 additions & 309 deletions Example/Pods/Pods.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Lottie.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@
6274D0231F1E830E00E05049 /* LOTTransformInterpolator.m in Sources */ = {isa = PBXBuildFile; fileRef = 6274D0201F1E830E00E05049 /* LOTTransformInterpolator.m */; };
6274D0241F1E830E00E05049 /* LOTTransformInterpolator.m in Sources */ = {isa = PBXBuildFile; fileRef = 6274D0201F1E830E00E05049 /* LOTTransformInterpolator.m */; };
6274D0251F1E830E00E05049 /* LOTTransformInterpolator.m in Sources */ = {isa = PBXBuildFile; fileRef = 6274D0201F1E830E00E05049 /* LOTTransformInterpolator.m */; };
6289053E1F33EA0F005154FA /* LOTCacheProvider.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = EE498E3D1F336A4900D1DFCD /* LOTCacheProvider.h */; };
62BFC2DE1F14298D0068A342 /* LOTAnimatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 62BFC2D01F14298D0068A342 /* LOTAnimatorNode.h */; };
62BFC2DF1F14298D0068A342 /* LOTAnimatorNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 62BFC2D01F14298D0068A342 /* LOTAnimatorNode.h */; };
62BFC2E01F14298D0068A342 /* LOTAnimatorNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 62BFC2D11F14298D0068A342 /* LOTAnimatorNode.m */; };
Expand Down Expand Up @@ -286,6 +287,7 @@
dstPath = include/Lottie;
dstSubfolderSpec = 16;
files = (
6289053E1F33EA0F005154FA /* LOTCacheProvider.h in CopyFiles */,
62E27B481F3115A00098420E /* LOTAnimationCache.h in CopyFiles */,
622F77141F2BF6BE00269858 /* LOTComposition.h in CopyFiles */,
84FE13161E4C15A1009B157C /* LOTAnimationView.h in CopyFiles */,
Expand Down
6 changes: 4 additions & 2 deletions lottie-ios.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'lottie-ios'
s.version = '2.0.1'
s.version = '2.0.2'
s.summary = 'Used to natively render vector animations exported from After Effects.'

s.description = <<-DESC
Expand All @@ -28,7 +28,9 @@ For the first time, designers can create and ship beautiful animations without a

s.source_files = 'lottie-ios/Classes/**/*'
s.osx.exclude_files = ['lottie-ios/Classes/PublicHeaders/LOTAnimationTransitionController.h',
'lottie-ios/Classes/Private/LOTAnimationTransitionController.m']
'lottie-ios/Classes/Private/LOTAnimationTransitionController.m',
'lottie-ios/Classes/PublicHeaders/LOTCacheProvider.h',
'lottie-ios/Classes/Private/LOTCacheProvider.m']
# s.resource_bundles = {
# 'lottie-ios' => ['lottie-ios/Assets/*.png']
# }
Expand Down
2 changes: 1 addition & 1 deletion lottie-ios/Classes/PublicHeaders/Lottie.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ FOUNDATION_EXPORT const unsigned char LottieVersionString[];

#include <TargetConditionals.h>

#if TARGET_OS_IPHONE
#if TARGET_OS_IPHONE || TARGET_IPHONE_SIMULATOR
#import "LOTAnimationTransitionController.h"
#endif

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lottie-ios",
"version": "2.0.1",
"version": "2.0.2",
"description": "Lottie is a mobile library for Android and iOS that parses Adobe After Effects animations exported as json with bodymovin and renders the vector animations natively on mobile and through React Native!",
"main": "index.js",
"scripts": {
Expand Down