-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: 🎸 added interactivity support (#28)
* feat: 🎸 added interactivity support * chore: 🤖 removed a log
- Loading branch information
Showing
14 changed files
with
1,149 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
dotlottie/src/main/java/com/lottiefiles/dotlottie/core/util/StateMachineEventListener.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.lottiefiles.dotlottie.core.util | ||
|
||
import com.dotlottie.dlplayer.StateMachineObserver | ||
|
||
interface StateMachineEventListener : StateMachineObserver { | ||
override fun onStateEntered(enteringState: String) {} | ||
|
||
override fun onStateExit(leavingState: String) {} | ||
|
||
override fun onTransition(previousState: String, newState: String) {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file modified
BIN
+133 KB
(110%)
dotlottie/src/main/jniLibs/arm64-v8a/libuniffi_dotlottie_player.so
Binary file not shown.
Binary file modified
BIN
+80.5 KB
(110%)
dotlottie/src/main/jniLibs/armeabi-v7a/libuniffi_dotlottie_player.so
Binary file not shown.
Binary file modified
BIN
+161 KB
(110%)
dotlottie/src/main/jniLibs/x86_64/libuniffi_dotlottie_player.so
Binary file not shown.
Oops, something went wrong.