{"id":21762117,"url":"https://github.com/segment-integrations/analytics-roku-integration-adobe-analytics","last_synced_at":"2026-02-06T22:33:09.225Z","repository":{"id":54948726,"uuid":"314673253","full_name":"segment-integrations/analytics-roku-integration-adobe-analytics","owner":"segment-integrations","description":"Segment's Adobe Analytics Integration for Analytics-Roku","archived":false,"fork":false,"pushed_at":"2021-01-20T01:28:00.000Z","size":117,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-29T10:52:18.779Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Brightscript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/segment-integrations.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-11-20T21:25:46.000Z","updated_at":"2021-01-20T01:28:03.000Z","dependencies_parsed_at":"2022-08-14T07:20:28.388Z","dependency_job_id":null,"html_url":"https://github.com/segment-integrations/analytics-roku-integration-adobe-analytics","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/segment-integrations/analytics-roku-integration-adobe-analytics","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/segment-integrations%2Fanalytics-roku-integration-adobe-analytics","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/segment-integrations%2Fanalytics-roku-integration-adobe-analytics/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/segment-integrations%2Fanalytics-roku-integration-adobe-analytics/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/segment-integrations%2Fanalytics-roku-integration-adobe-analytics/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/segment-integrations","download_url":"https://codeload.github.com/segment-integrations/analytics-roku-integration-adobe-analytics/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/segment-integrations%2Fanalytics-roku-integration-adobe-analytics/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29179420,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T22:12:24.066Z","status":"ssl_error","status_checked_at":"2026-02-06T22:12:09.859Z","response_time":59,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-26T12:11:03.448Z","updated_at":"2026-02-06T22:33:09.206Z","avatar_url":"https://github.com/segment-integrations.png","language":"Brightscript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Segment-Adobe-Analytics\n\n## Example\n\n### Running the sample app\n\n- Include `ADBMobileConfig.json` in the samples's root directory. See [Adobe's Docs](https://experienceleague.adobe.com/docs/media-analytics/using/sdk-implement/setup/set-up-roku.html?lang=en#sdk-implementation) for more details\n- Set up `ROKU_DEV_TARGET` and `ROKU_DEV_PASSWORD` to the IP address and the development password of your Roku device\n- Set the `SEGMENT_WRITE_KEY` environment variable to your Segment source write key\n- Run `make install-app` from within the _samples/_ folder, which will build the app, side load it onto your Roku device and start it\n\n## Installation\n\nDownload the Segment and Adobe SDKs:\n\n- [Segment SDK v2.0.0](https://github.com/segmentio/analytics-roku)\n- [Adobe SDK v2.2.3](https://experienceleague.adobe.com/docs/media-analytics/using/sdk-implement/download-sdks.html?lang=en#download-3x-sdks)\n\nCreate **SegmentAdobeAnalytics.zip** with the required files:\n\n```\nmake library\n```\n\nImport the SDK Libraries and the contents of **SegmentAdobeAnalytics.zip**:\n\n```\n|-- ADBMobileConfig.json\n|-- components\n|   |-- library\n|   |   |-- Adobe Analytics SDK\n|   |   |   |-- adbmobileTask.brs\n|   |   |   |-- adbmobileTask.xml\n|   |   |-- Segment SDK\n|   |   |   |-- SegmentAnalyticsTask.brs\n|   |   |   |-- SegmentAnalyticsTask.xml\n|-- source\n|   |-- library\n|   |   |-- Adobe Analytics SDK\n|   |   |   |-- adbmobile.brs\n|   |   |-- Segment SDK\n|   |   |   |-- SegmentAdobeIntegration.brs\n|   |   |   |-- SegmentAnalytics.brs\n|   |   |   |-- SegmentAnalyticsConnector.brs\n```\n\nUpdate file paths and make sure to include SegmentAdobeIntegrationFactory in the **use()** function:\n\n```\n\u003c!-- samples/components/library/Adobe Analytics SDK/adbmobileTask.xml --\u003e\n\n\u003c!-- Replace with correct location if needed --\u003e\n\u003cscript type=\"text/brightscript\" uri=\"pkg:/components/library/Adobe Analytics SDK/adbmobileTask.brs\"/\u003e\n\u003c!-- Replace with correct location if needed --\u003e\n\u003cscript type=\"text/brightscript\" uri=\"pkg:/source/library/Adobe Analytics SDK/adbmobile.brs\"/\u003e\n```\n\n```\n\u003c!-- samples/components/library/Segment SDK/SegmentAnalyticsTask.xml --\u003e\n\n\u003cscript type = \"text/brightscript\" \u003e\n  \u003c![CDATA[\n\n    function use() as Object\n      return {\n        \"Adobe Analytics\": SegmentAdobeIntegrationFactory\n      }\n    end function\n  ]]\u003e\n\u003c/script\u003e\n\n\u003c!-- include any device mode integrations scripts  --\u003e\n\u003cscript type=\"text/brightscript\" uri=\"pkg:/source/library/Segment SDK/SegmentAdobeIntegration.brs\" /\u003e\n\u003cscript type=\"text/brightscript\" uri=\"pkg:/source/library/Adobe Analytics SDK/adbmobile.brs\"/\u003e\n```\n\nNote: The Adobe integration will use **tmp:/ADBMobileConfig.json** if it exists. Otherwise, it will read **pkg:/ADBMobileConfig.json** and write it to **tmp:/ADBMobileConfig.json**.\n\n## License\n\nSegment-Adobe-Analytics is available under the MIT license. See the LICENSE file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsegment-integrations%2Fanalytics-roku-integration-adobe-analytics","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsegment-integrations%2Fanalytics-roku-integration-adobe-analytics","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsegment-integrations%2Fanalytics-roku-integration-adobe-analytics/lists"}