当前位置: 首页 > 工具软件 > wire-android > 使用案例 >

Android动画三方库(SVGA、LOTTIE)

谢锦程
2023-12-01

三方库

SVGA

官网https://svga.io/index.html.
简介:SVGA 是一种跨平台的开源动画格式,同时兼容 iOS / Android / Web。SVGA 除了使用简单,性能卓越,同时让动画开发分工明确,各自专注各自的领域,大大减少动画交互的沟通成本,提升开发效率。动画设计师专注动画设计,通过工具输出 svga 动画文件,提供给开发工程师后直接使用。
导入

implementation 'com.github.svga:SVGAPlayer-Android:2.5.15'

最新版本传送门.
去混淆

-keep class com.squareup.wire.** { *; }
-keep class com.opensource.svgaplayer.proto.** { *; }

API:https://github.com/svga/SVGAPlayer-Android/wiki/APIs

Lottie

官网https://airbnb.design/lottie/.
简介:Lottie is a mobile library for Android and iOS that parses Adobe After Effects animations exported as json with Bodymovin and renders them natively on mobile!
导入

implementation 'com.airbnb.android:lottie:4.0.0'

最新版本传送门.
API:https://airbnb.io/lottie/#/android

 类似资料: