{"id":21762054,"url":"https://github.com/segment-integrations/analytics-ios-integration-taplytics","last_synced_at":"2025-04-13T13:32:41.635Z","repository":{"id":8228561,"uuid":"57066467","full_name":"segment-integrations/analytics-ios-integration-taplytics","owner":"segment-integrations","description":"The Taplytics analytics-ios integration.","archived":false,"fork":false,"pushed_at":"2022-04-08T19:33:54.000Z","size":33371,"stargazers_count":0,"open_issues_count":1,"forks_count":5,"subscribers_count":26,"default_branch":"master","last_synced_at":"2025-04-11T03:21:40.500Z","etag":null,"topics":["ios"],"latest_commit_sha":null,"homepage":null,"language":"Objective-C","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":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-04-25T18:37:25.000Z","updated_at":"2022-04-05T19:17:58.000Z","dependencies_parsed_at":"2022-08-06T23:00:25.412Z","dependency_job_id":null,"html_url":"https://github.com/segment-integrations/analytics-ios-integration-taplytics","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/segment-integrations%2Fanalytics-ios-integration-taplytics","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/segment-integrations%2Fanalytics-ios-integration-taplytics/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/segment-integrations%2Fanalytics-ios-integration-taplytics/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/segment-integrations%2Fanalytics-ios-integration-taplytics/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/segment-integrations","download_url":"https://codeload.github.com/segment-integrations/analytics-ios-integration-taplytics/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248720991,"owners_count":21151022,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["ios"],"created_at":"2024-11-26T12:10:46.248Z","updated_at":"2025-04-13T13:32:41.598Z","avatar_url":"https://github.com/segment-integrations.png","language":"Objective-C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Segment-Taplytics\n\n[![CircleCI](https://circleci.com/gh/segment-integrations/analytics-ios-integration-taplytics.svg?style=svg)](https://circleci.com/gh/segment-integrations/analytics-ios-integration-taplytics)\n[![Version](https://img.shields.io/cocoapods/v/Segment-Taplytics.svg?style=flat)](http://cocoapods.org/pods/Segment-Taplytics)\n[![License](https://img.shields.io/cocoapods/l/Segment-Taplytics.svg?style=flat)](http://cocoapods.org/pods/Segment-Taplytics)\n[![Platform](https://img.shields.io/cocoapods/p/Segment-Taplytics.svg?style=flat)](http://cocoapods.org/pods/Segment-Taplytics)\n\n## Usage\n\nAfter adding the dependency, you must register the integration with our SDK.  To do this, import the Taplytics integration in your `AppDelegate`:\n\n```\n#import \u003cSegment-Taplytics/SEGTaplyticsIntegrationFactory.h\u003e\n```\n\nAnd add the following lines:\n\n```\nNSString *const SEGMENT_WRITE_KEY = @\" ... \";\nSEGAnalyticsConfiguration *config = [SEGAnalyticsConfiguration configurationWithWriteKey:SEGMENT_WRITE_KEY];\n\n[config use:[SEGTaplyticsIntegrationFactory instance]];\n\n[SEGAnalytics setupWithConfiguration:config];\n\n```\n\n### Initialize Taplytics without Segment\n\nIf you would like to initialize Taplytics yourself to leverage functionality required on initialization, you can use Taplytics native methods to initialize then use `skipInitialization` to skip initializing through Segment.\n\n```\nNSString *const SEGMENT_WRITE_KEY = @\" ... \";\nSEGAnalyticsConfiguration *config = [SEGAnalyticsConfiguration configurationWithWriteKey:SEGMENT_WRITE_KEY];\n\n// Add Taplytics methods to initialize and any functionality required prior to initialization here.\n[Taplytics startTaplyticsAPIKey:\u003capiKey\u003e....];\n\n[config use:[SEGTaplyticsIntegrationFactory skipInitialization]];\n\n[SEGAnalytics setupWithConfiguration:config];\n```\n\n## License\n\n```\nWWWWWW||WWWWWW\n W W W||W W W\n      ||\n    ( OO )__________\n     /  |           \\\n    /o o|    MIT     \\\n    \\___/||_||__||_|| *\n         || ||  || ||\n        _||_|| _||_||\n       (__|__|(__|__|\n\nThe MIT License (MIT)\n\nCopyright (c) 2014 Segment, Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsegment-integrations%2Fanalytics-ios-integration-taplytics","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsegment-integrations%2Fanalytics-ios-integration-taplytics","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsegment-integrations%2Fanalytics-ios-integration-taplytics/lists"}