{"id":32302009,"url":"https://github.com/macif-dev/adobe_mobile_sdk_flutter","last_synced_at":"2026-02-22T15:34:30.745Z","repository":{"id":56825777,"uuid":"158523086","full_name":"macif-dev/adobe_mobile_sdk_flutter","owner":"macif-dev","description":"adobe_plugin_flutter is a flutter plugin for use AdobeMobileSDK.","archived":false,"fork":false,"pushed_at":"2021-05-21T07:36:31.000Z","size":146,"stargazers_count":5,"open_issues_count":0,"forks_count":3,"subscribers_count":6,"default_branch":"master","last_synced_at":"2023-08-20T21:22:51.285Z","etag":null,"topics":["adobe","adobe-analytics","analytics","flutter-plugin"],"latest_commit_sha":null,"homepage":null,"language":"Dart","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/macif-dev.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":"2018-11-21T09:26:40.000Z","updated_at":"2021-05-21T07:31:56.000Z","dependencies_parsed_at":"2022-09-20T22:46:14.458Z","dependency_job_id":null,"html_url":"https://github.com/macif-dev/adobe_mobile_sdk_flutter","commit_stats":null,"previous_names":[],"tags_count":6,"template":null,"template_full_name":null,"purl":"pkg:github/macif-dev/adobe_mobile_sdk_flutter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/macif-dev%2Fadobe_mobile_sdk_flutter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/macif-dev%2Fadobe_mobile_sdk_flutter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/macif-dev%2Fadobe_mobile_sdk_flutter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/macif-dev%2Fadobe_mobile_sdk_flutter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/macif-dev","download_url":"https://codeload.github.com/macif-dev/adobe_mobile_sdk_flutter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/macif-dev%2Fadobe_mobile_sdk_flutter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29717399,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-22T15:10:41.462Z","status":"ssl_error","status_checked_at":"2026-02-22T15:10:04.636Z","response_time":110,"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":["adobe","adobe-analytics","analytics","flutter-plugin"],"created_at":"2025-10-23T05:48:32.864Z","updated_at":"2026-02-22T15:34:30.734Z","avatar_url":"https://github.com/macif-dev.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# adobe_mobile_sdk_flutter\n\nadobe_plugin_flutter is a flutter plugin for use AdobeMobileSDK.\n\n### Adobe Mobile User Documentation\nAdobe Mobile services provides a new UI that brings together mobile marketing capabilities for mobile applications from across the Adobe Experience Cloud. Initially, the Mobile service provides seamless integration of app analytics and targeting capabilities from the Adobe Analytics, Adobe Audience Manager, and Adobe Target solutions, and Experience Cloud ID service.\n\nTo learn more about the Mobile Services UI and read the user documentation, see [Adobe Mobile Services](https://marketing.adobe.com/resources/help/en_US/mobile/).\n\n*Note*: This plugin is still under development, and some APIs might not be available yet. [Feedback](https://github.com/flutter/flutter/issues) and [Pull Requests](https://github.com/flutter/plugins/pulls) are most welcome!\n\n\n#### Mobile support\n\n  - Android\n  - iOS\n  \n\n## Getting Started\n\n### Usage\nTo use this plugin, add adobe_plugin_flutter as a dependency in your pubspec.yaml file.\n\n### Set the ADBMobile JSON Config Path\n\nTip: \n* On iOS, the `ADBMobileConfig.json` can be placed anywhere that it is accessible in your `bundle`. see [Adobe Mobile iOS](https://marketing.adobe.com/resources/help/en_US/mobile/ios/overview.html)\n\n* On android, the `ADBMobileConfig.json` can be placed on assets folder. See [Adobe Mobile SDK android](https://marketing.adobe.com/resources/help/en_US/mobile/android/overview.html)\n\n\n### InitTrack\n\nThis function is use for set the ADBMobile configuration with files.\n\n* On iOS : \n\n1. add ADBConfigFile to `appDelegate.m` and `import ADBMobile.h`\n\n```\n    NSString *filePath = [[NSBundle mainBundle] pathForResource:@\"ADBMobileConfig\" ofType:@\"json\"];\n    [ADBMobile overrideConfigPath:filePath];\n```\n\n2. add to `Info.plist` :\n\n```\n\u003ckey\u003eNSAppTransportSecurity\u003c/key\u003e\n\u003cdict\u003e\n        \u003ckey\u003eNSAllowsArbitraryLoads\u003c/key\u003e\n        \u003ctrue/\u003e\n\u003c/dict\u003e\n```\n\n\n* On Android : use `initTrack` function\n\n`initTrack(String fileName);`\n\n```dart\n    try{\n        await AdobeAnalyticsPlugin.initTrack(\"ADBMobileConfigCustom.json\");\n    } on Exception {\n       print('Failed to init Adobe Tracking');\n    }\n```\n### TrackScreen\n\nThis function is use for track the screen with optional data.\n\n`trackState(String screenName, [Map\u003cString, dynamic\u003e additionalData]);`\n\n```dart\n    String result = await AdobeAnalyticsPlugin.trackState(\n        \"SCREEN_NAME\",\n        null\n    );\n```\n\n### TrackAction\n\nThis function is use for track the action with optional data.\n\n`trackAction(String actionName, [Map\u003cString, dynamic\u003e additionalData]);`\n\n```dart\n    String result = await AdobeAnalyticsPlugin.trackAction(\n        \"ACTION_NAME\",\n        \u003cString, dynamic\u003e{\n            \"action\": \"ACTION\",\n            \"category\": \"TEST\"\n        }\n    );\n```\n\n## Getting Started\n\nSee the `example` directory for a complete sample app using adobe_plugin_flutter.\n\n### Plugins\n\n| Plugin | Links |\n| ------ | ------ |\n| AdobeMobileSDK iOS | https://cocoapods.org/pods/AdobeMobileSDK |\n| AdobeMobileSDK android | https://mvnrepository.com/artifact/com.adobe.mobile/adobeMobileLibrary/4.18.2 |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmacif-dev%2Fadobe_mobile_sdk_flutter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmacif-dev%2Fadobe_mobile_sdk_flutter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmacif-dev%2Fadobe_mobile_sdk_flutter/lists"}