Skip to content

Commit

Permalink
Roku v2.0.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
himanshuphalak committed Dec 9, 2017
1 parent 3e35847 commit d9086b2
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 9 deletions.
4 changes: 4 additions & 0 deletions sdks/roku/ReleaseNotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ Included are notes from the latest major revision to current.
For full documentation please visit:
https://marketing.adobe.com/resources/help/en_US/sc/appmeasurement/hbvideo/roku/

## 2.0.3 (08 December, 2017)
What’s new :
- Bug fixes

## 2.0.2 (08 September, 2017)
What’s new :
- Added SceneGraph compatibility to AdobeMobileLibrary
Expand Down
9 changes: 6 additions & 3 deletions sdks/roku/libs/adbmobile.brs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Library "v30/bslCore.brs"
Function ADBMobile() As Object
if GetGlobalAA().ADBMobile = invalid
instance = {
version: "2.0.2",
version: "2.0.3",
PRIVACY_STATUS_OPT_IN: "optedin",
PRIVACY_STATUS_OPT_OUT: "optedout",

Expand Down Expand Up @@ -2321,6 +2321,9 @@ Function _adb_mediacontext() As Object
m["idleStateTs"] = _adb_util().getTimestampInMillis()
m["playhead"] = 0
m.resetToResumeState()

_adb_paramsResolver().resetSessionIds()

End Function,

resetAssetRefContext: Function() As Void
Expand Down Expand Up @@ -4923,8 +4926,8 @@ Function _adb_media_version() as Object
''' initialize the private variables
_init: Function() As Void
m["_platform"] = "roku"
m["_buildNumber"] = "27"
m["_gitHash"] = "094acb"
m["_buildNumber"] = "34"
m["_gitHash"] = "aa3c5d"
m["_api_level"] = 4
End Function
}
Expand Down
9 changes: 6 additions & 3 deletions sdks/roku/samples/SampleSceneGraphPlayer/source/adbmobile.brs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Library "v30/bslCore.brs"
Function ADBMobile() As Object
if GetGlobalAA().ADBMobile = invalid
instance = {
version: "2.0.2",
version: "2.0.3",
PRIVACY_STATUS_OPT_IN: "optedin",
PRIVACY_STATUS_OPT_OUT: "optedout",

Expand Down Expand Up @@ -2321,6 +2321,9 @@ Function _adb_mediacontext() As Object
m["idleStateTs"] = _adb_util().getTimestampInMillis()
m["playhead"] = 0
m.resetToResumeState()

_adb_paramsResolver().resetSessionIds()

End Function,

resetAssetRefContext: Function() As Void
Expand Down Expand Up @@ -4923,8 +4926,8 @@ Function _adb_media_version() as Object
''' initialize the private variables
_init: Function() As Void
m["_platform"] = "roku"
m["_buildNumber"] = "27"
m["_gitHash"] = "094acb"
m["_buildNumber"] = "34"
m["_gitHash"] = "aa3c5d"
m["_api_level"] = 4
End Function
}
Expand Down
9 changes: 6 additions & 3 deletions sdks/roku/samples/adoberokudemo/source/adbmobile.brs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Library "v30/bslCore.brs"
Function ADBMobile() As Object
if GetGlobalAA().ADBMobile = invalid
instance = {
version: "2.0.2",
version: "2.0.3",
PRIVACY_STATUS_OPT_IN: "optedin",
PRIVACY_STATUS_OPT_OUT: "optedout",

Expand Down Expand Up @@ -2321,6 +2321,9 @@ Function _adb_mediacontext() As Object
m["idleStateTs"] = _adb_util().getTimestampInMillis()
m["playhead"] = 0
m.resetToResumeState()

_adb_paramsResolver().resetSessionIds()

End Function,

resetAssetRefContext: Function() As Void
Expand Down Expand Up @@ -4923,8 +4926,8 @@ Function _adb_media_version() as Object
''' initialize the private variables
_init: Function() As Void
m["_platform"] = "roku"
m["_buildNumber"] = "27"
m["_gitHash"] = "094acb"
m["_buildNumber"] = "34"
m["_gitHash"] = "aa3c5d"
m["_api_level"] = 4
End Function
}
Expand Down

0 comments on commit d9086b2

Please sign in to comment.