Removed alfred enabled check for set User id and location (#50) (#51)

This commit is contained in:
Girish Suragani
2023-11-16 15:32:38 +05:30
committed by GitHub
parent 34928aa632
commit fe2962523f
2 changed files with 1 additions and 7 deletions

View File

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

View File

@@ -407,21 +407,15 @@ object AlfredManager {
}
fun setUserId(userId: String?) {
if (isAlfredRecordingEnabled()) {
config.setUserId(userId)
}
}
fun setUserLocation(latitude: Double, longitude: Double) {
if (isAlfredRecordingEnabled()) {
config.setLocation(latitude, longitude)
}
}
fun setDisableDialogScreenShot(status: Boolean) {
if (isAlfredRecordingEnabled()) {
config.setDisableDialogScreenShot(status)
}
}
fun setPhoneNumber(phoneNumber: String?) {