Skip to content

Commit

Permalink
Fixed prod devices being counted as dev devices (#3)
Browse files Browse the repository at this point in the history
* Fixed prod devices being counted as dev devices

* upped vernum
  • Loading branch information
jsalaber authored Apr 16, 2019
1 parent cadf8d5 commit aaa0d22
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/components/framework/taplytics/TaplyticsPrivateAPI.brs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function init()
m.TAP_SDK_VERSION = "1.1.0"
m.TAP_SDK_VERSION = "1.2.0"
m.top.id = "tap"

m.messagePort = _createPort()
Expand Down Expand Up @@ -126,7 +126,7 @@ end function
function Taplytics() as Object
prototype = {}

prototype.TAP_SDK_VERSION = "1.1.0"
prototype.TAP_SDK_VERSION = "1.2.0"
prototype.PLAYER_SOFTWARE_NAME = "RokuSG"
prototype.TAP_API_VERSION = "2.0"
prototype.PLAYER_IS_FULLSCREEN = "true"
Expand Down Expand Up @@ -237,11 +237,11 @@ function Taplytics() as Object
'dev - live update manually set (from starting options) / 1/0
if m._sessionProperties.is_dev
requiredParamaters.rm = 1
requiredParamaters.lv = 0
requiredParamaters.lv = 1
requiredParamaters.dev = 1
else
requiredParamaters.rm = 3
requiredParamaters.lv = 1
requiredParamaters.lv = 0
requiredParamaters.dev = 0
end if

Expand Down

0 comments on commit aaa0d22

Please sign in to comment.