TP-64043 | Sayed Owais Ali | added changes for checking repository in… (#142)

This commit is contained in:
Sayed Owais Ali
2024-04-16 19:03:06 +05:30
committed by GitHub
parent ce14171bc5
commit 49515465bd
3 changed files with 6 additions and 2 deletions

View File

@@ -6,7 +6,7 @@ plugins {
id 'maven-publish'
}
def VERSION = "1.1.4"
def VERSION = "1.1.5"
android {
namespace 'com.navi.alfred'

View File

@@ -488,4 +488,8 @@ object AlfredManager {
phoneNumber?.let { config.setPhoneNumber(it) }
}
}
fun isSensitiveComposeRepositoryInitialized(): Boolean {
return this::sensitiveComposeRepository.isInitialized
}
}

View File

@@ -71,6 +71,6 @@ class ComposeMaskingRepoImpl : ComposeMaskingRepo {
}
internal fun getBlurSensitiveScreenStatus(): Boolean {
return blurSensitiveScreen
return blurSensitiveScreen || sensitiveCoordinates.isEmpty()
}
}