added screen transition events for third party screens (#63)

This commit is contained in:
Sayed Owais Ali
2023-11-29 19:50:42 +05:30
committed by GitHub
parent 2a96db7e89
commit 2d2ce98e2d
2 changed files with 4 additions and 1 deletions

View File

@@ -6,7 +6,7 @@ plugins {
id 'kotlin-parcelize'
}
def VERSION_NAME = "1.0.12"
def VERSION_NAME = "1.0.13"
android {
namespace 'com.navi.alfred'

View File

@@ -157,6 +157,9 @@ object AlfredManager {
screenShotTimer = Timer()
var bmpForCanvas: Pair<Canvas, Bitmap>? = null
var bmpForThirdPartySdkScreen: Bitmap? = null
if (moduleName == THIRD_PARTY_MODULE) {
handleScreenTransitionEvent(activity?.localClassName.toString(), moduleName)
}
val timerTask: TimerTask =
object : TimerTask() {
override fun run() {