Skip to content
This repository was archived by the owner on Aug 8, 2025. It is now read-only.

Commit aaa0d22

Browse files
authored
Fixed prod devices being counted as dev devices (#3)
* Fixed prod devices being counted as dev devices * upped vernum
1 parent cadf8d5 commit aaa0d22

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

source/components/framework/taplytics/TaplyticsPrivateAPI.brs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
function init()
2-
m.TAP_SDK_VERSION = "1.1.0"
2+
m.TAP_SDK_VERSION = "1.2.0"
33
m.top.id = "tap"
44

55
m.messagePort = _createPort()
@@ -126,7 +126,7 @@ end function
126126
function Taplytics() as Object
127127
prototype = {}
128128

129-
prototype.TAP_SDK_VERSION = "1.1.0"
129+
prototype.TAP_SDK_VERSION = "1.2.0"
130130
prototype.PLAYER_SOFTWARE_NAME = "RokuSG"
131131
prototype.TAP_API_VERSION = "2.0"
132132
prototype.PLAYER_IS_FULLSCREEN = "true"
@@ -237,11 +237,11 @@ function Taplytics() as Object
237237
'dev - live update manually set (from starting options) / 1/0
238238
if m._sessionProperties.is_dev
239239
requiredParamaters.rm = 1
240-
requiredParamaters.lv = 0
240+
requiredParamaters.lv = 1
241241
requiredParamaters.dev = 1
242242
else
243243
requiredParamaters.rm = 3
244-
requiredParamaters.lv = 1
244+
requiredParamaters.lv = 0
245245
requiredParamaters.dev = 0
246246
end if
247247

0 commit comments

Comments
 (0)