├── .gitignore ├── CHANGELOG.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── Podfile ├── Podfile.lock ├── SVGAPlayer.podspec ├── SVGAPlayer.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata ├── xcshareddata │ └── xcschemes │ │ └── SVGAPlayer.xcscheme └── xcuserdata │ ├── cuiminghui.xcuserdatad │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ │ ├── SVGAPlayer React.xcscheme │ │ ├── SVGAPlayer.xcscheme │ │ └── xcschememanagement.plist │ ├── errnull.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ └── saiakirahui.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── SVGAPlayer.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ ├── cuiminghui.xcuserdatad │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ ├── errnull.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── saiakirahui.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── SVGAPlayer ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── begin.imageset │ │ ├── Contents.json │ │ └── begin@2x.png │ └── purse.imageset │ │ ├── Contents.json │ │ └── purse@2x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── SVGAPlayer React-Info.plist ├── Samples │ ├── Goddess.svga │ ├── Rocket.svga │ ├── audio_biling.svga │ ├── heartbeat.svga │ ├── matteBitmap.svga │ ├── matteBitmap_1.x.svga │ ├── matteRect.svga │ ├── mutiMatte.svga │ ├── rose_1.5.0.svga │ └── rose_2.0.0.svga ├── ViewController.h ├── ViewController.m └── main.m ├── Source ├── SVGA.h ├── SVGA.m ├── SVGAAudioEntity.h ├── SVGAAudioEntity.m ├── SVGAAudioLayer.h ├── SVGAAudioLayer.m ├── SVGABezierPath.h ├── SVGABezierPath.m ├── SVGABitmapLayer.h ├── SVGABitmapLayer.m ├── SVGAContentLayer.h ├── SVGAContentLayer.m ├── SVGAExporter.h ├── SVGAExporter.m ├── SVGAImageView.h ├── SVGAImageView.m ├── SVGAParser.h ├── SVGAParser.m ├── SVGAPlayer.h ├── SVGAPlayer.m ├── SVGAVectorLayer.h ├── SVGAVectorLayer.m ├── SVGAVideoEntity.h ├── SVGAVideoEntity.m ├── SVGAVideoSpriteEntity.h ├── SVGAVideoSpriteEntity.m ├── SVGAVideoSpriteFrameEntity.h ├── SVGAVideoSpriteFrameEntity.m └── pbobjc │ ├── Svga.pbobjc.h │ └── Svga.pbobjc.m ├── readme.md └── readme.zh.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Podfile.lock -------------------------------------------------------------------------------- /SVGAPlayer.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer.podspec -------------------------------------------------------------------------------- /SVGAPlayer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SVGAPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SVGAPlayer.xcodeproj/xcshareddata/xcschemes/SVGAPlayer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer.xcodeproj/xcshareddata/xcschemes/SVGAPlayer.xcscheme -------------------------------------------------------------------------------- /SVGAPlayer.xcodeproj/xcuserdata/cuiminghui.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer.xcodeproj/xcuserdata/cuiminghui.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /SVGAPlayer.xcodeproj/xcuserdata/cuiminghui.xcuserdatad/xcschemes/SVGAPlayer React.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer.xcodeproj/xcuserdata/cuiminghui.xcuserdatad/xcschemes/SVGAPlayer React.xcscheme -------------------------------------------------------------------------------- /SVGAPlayer.xcodeproj/xcuserdata/cuiminghui.xcuserdatad/xcschemes/SVGAPlayer.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer.xcodeproj/xcuserdata/cuiminghui.xcuserdatad/xcschemes/SVGAPlayer.xcscheme -------------------------------------------------------------------------------- /SVGAPlayer.xcodeproj/xcuserdata/cuiminghui.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer.xcodeproj/xcuserdata/cuiminghui.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SVGAPlayer.xcodeproj/xcuserdata/errnull.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer.xcodeproj/xcuserdata/errnull.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SVGAPlayer.xcodeproj/xcuserdata/saiakirahui.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer.xcodeproj/xcuserdata/saiakirahui.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SVGAPlayer.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SVGAPlayer.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SVGAPlayer.xcworkspace/xcuserdata/cuiminghui.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer.xcworkspace/xcuserdata/cuiminghui.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /SVGAPlayer.xcworkspace/xcuserdata/errnull.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer.xcworkspace/xcuserdata/errnull.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SVGAPlayer.xcworkspace/xcuserdata/errnull.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer.xcworkspace/xcuserdata/errnull.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /SVGAPlayer.xcworkspace/xcuserdata/saiakirahui.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer.xcworkspace/xcuserdata/saiakirahui.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SVGAPlayer/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/AppDelegate.h -------------------------------------------------------------------------------- /SVGAPlayer/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/AppDelegate.m -------------------------------------------------------------------------------- /SVGAPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SVGAPlayer/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /SVGAPlayer/Assets.xcassets/begin.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/Assets.xcassets/begin.imageset/Contents.json -------------------------------------------------------------------------------- /SVGAPlayer/Assets.xcassets/begin.imageset/begin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/Assets.xcassets/begin.imageset/begin@2x.png -------------------------------------------------------------------------------- /SVGAPlayer/Assets.xcassets/purse.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/Assets.xcassets/purse.imageset/Contents.json -------------------------------------------------------------------------------- /SVGAPlayer/Assets.xcassets/purse.imageset/purse@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/Assets.xcassets/purse.imageset/purse@2x.png -------------------------------------------------------------------------------- /SVGAPlayer/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SVGAPlayer/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SVGAPlayer/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/Info.plist -------------------------------------------------------------------------------- /SVGAPlayer/SVGAPlayer React-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/SVGAPlayer React-Info.plist -------------------------------------------------------------------------------- /SVGAPlayer/Samples/Goddess.svga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/Samples/Goddess.svga -------------------------------------------------------------------------------- /SVGAPlayer/Samples/Rocket.svga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/Samples/Rocket.svga -------------------------------------------------------------------------------- /SVGAPlayer/Samples/audio_biling.svga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/Samples/audio_biling.svga -------------------------------------------------------------------------------- /SVGAPlayer/Samples/heartbeat.svga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/Samples/heartbeat.svga -------------------------------------------------------------------------------- /SVGAPlayer/Samples/matteBitmap.svga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/Samples/matteBitmap.svga -------------------------------------------------------------------------------- /SVGAPlayer/Samples/matteBitmap_1.x.svga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/Samples/matteBitmap_1.x.svga -------------------------------------------------------------------------------- /SVGAPlayer/Samples/matteRect.svga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/Samples/matteRect.svga -------------------------------------------------------------------------------- /SVGAPlayer/Samples/mutiMatte.svga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/Samples/mutiMatte.svga -------------------------------------------------------------------------------- /SVGAPlayer/Samples/rose_1.5.0.svga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/Samples/rose_1.5.0.svga -------------------------------------------------------------------------------- /SVGAPlayer/Samples/rose_2.0.0.svga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/Samples/rose_2.0.0.svga -------------------------------------------------------------------------------- /SVGAPlayer/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/ViewController.h -------------------------------------------------------------------------------- /SVGAPlayer/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/ViewController.m -------------------------------------------------------------------------------- /SVGAPlayer/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/SVGAPlayer/main.m -------------------------------------------------------------------------------- /Source/SVGA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGA.h -------------------------------------------------------------------------------- /Source/SVGA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGA.m -------------------------------------------------------------------------------- /Source/SVGAAudioEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGAAudioEntity.h -------------------------------------------------------------------------------- /Source/SVGAAudioEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGAAudioEntity.m -------------------------------------------------------------------------------- /Source/SVGAAudioLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGAAudioLayer.h -------------------------------------------------------------------------------- /Source/SVGAAudioLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGAAudioLayer.m -------------------------------------------------------------------------------- /Source/SVGABezierPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGABezierPath.h -------------------------------------------------------------------------------- /Source/SVGABezierPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGABezierPath.m -------------------------------------------------------------------------------- /Source/SVGABitmapLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGABitmapLayer.h -------------------------------------------------------------------------------- /Source/SVGABitmapLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGABitmapLayer.m -------------------------------------------------------------------------------- /Source/SVGAContentLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGAContentLayer.h -------------------------------------------------------------------------------- /Source/SVGAContentLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGAContentLayer.m -------------------------------------------------------------------------------- /Source/SVGAExporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGAExporter.h -------------------------------------------------------------------------------- /Source/SVGAExporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGAExporter.m -------------------------------------------------------------------------------- /Source/SVGAImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGAImageView.h -------------------------------------------------------------------------------- /Source/SVGAImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGAImageView.m -------------------------------------------------------------------------------- /Source/SVGAParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGAParser.h -------------------------------------------------------------------------------- /Source/SVGAParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGAParser.m -------------------------------------------------------------------------------- /Source/SVGAPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGAPlayer.h -------------------------------------------------------------------------------- /Source/SVGAPlayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGAPlayer.m -------------------------------------------------------------------------------- /Source/SVGAVectorLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGAVectorLayer.h -------------------------------------------------------------------------------- /Source/SVGAVectorLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGAVectorLayer.m -------------------------------------------------------------------------------- /Source/SVGAVideoEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGAVideoEntity.h -------------------------------------------------------------------------------- /Source/SVGAVideoEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGAVideoEntity.m -------------------------------------------------------------------------------- /Source/SVGAVideoSpriteEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGAVideoSpriteEntity.h -------------------------------------------------------------------------------- /Source/SVGAVideoSpriteEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGAVideoSpriteEntity.m -------------------------------------------------------------------------------- /Source/SVGAVideoSpriteFrameEntity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGAVideoSpriteFrameEntity.h -------------------------------------------------------------------------------- /Source/SVGAVideoSpriteFrameEntity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/SVGAVideoSpriteFrameEntity.m -------------------------------------------------------------------------------- /Source/pbobjc/Svga.pbobjc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/pbobjc/Svga.pbobjc.h -------------------------------------------------------------------------------- /Source/pbobjc/Svga.pbobjc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/Source/pbobjc/Svga.pbobjc.m -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/readme.md -------------------------------------------------------------------------------- /readme.zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svga/SVGAPlayer-iOS/HEAD/readme.zh.md --------------------------------------------------------------------------------