{"id":18307461,"url":"https://github.com/devgeeks/apigeemobileanalyticsplugin","last_synced_at":"2026-02-21T23:06:05.415Z","repository":{"id":5904855,"uuid":"7123693","full_name":"devgeeks/ApigeeMobileAnalyticsPlugin","owner":"devgeeks","description":"PhoneGap / Cordova iOS plugin that allows you to add Apigee Mobile Analytics (http://www.apigee.com) to your app","archived":false,"fork":false,"pushed_at":"2012-12-12T03:48:44.000Z","size":107,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-26T01:37:13.849Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/devgeeks.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-12-12T03:23:39.000Z","updated_at":"2013-10-01T11:22:30.000Z","dependencies_parsed_at":"2022-08-30T05:00:48.721Z","dependency_job_id":null,"html_url":"https://github.com/devgeeks/ApigeeMobileAnalyticsPlugin","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/devgeeks/ApigeeMobileAnalyticsPlugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgeeks%2FApigeeMobileAnalyticsPlugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgeeks%2FApigeeMobileAnalyticsPlugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgeeks%2FApigeeMobileAnalyticsPlugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgeeks%2FApigeeMobileAnalyticsPlugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/devgeeks","download_url":"https://codeload.github.com/devgeeks/ApigeeMobileAnalyticsPlugin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/devgeeks%2FApigeeMobileAnalyticsPlugin/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29697024,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-21T18:18:25.093Z","status":"ssl_error","status_checked_at":"2026-02-21T18:18:22.435Z","response_time":107,"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-05T16:04:19.649Z","updated_at":"2026-02-21T23:06:05.388Z","avatar_url":"https://github.com/devgeeks.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"ApigeeMobileAnalyticsPlugin\n===========================\n\nPhoneGap / Cordova iOS plugin that allows you to add Apigee Mobile Analytics (http://www.apigee.com) to your app\n\n1. Follow the instructions on Apigee's site for [Adding monitoring to your iOS application](http://apigee.com/docs/enterprise/content/add-monitoring-your-ios-application)\n2. Add the `ApigeeMobileAnalyticsPlugin.h` and `ApigeeMobileAnalyticsPlugin.m` classes to your Plugins folder in Xcode\n3. Copy the `ApigeeMobileAnalyticsPlugin.js` file to your www folder\n4. Add the `ApigeeMobileAnalyticsPlugin.js` to your html file. eg: \n\t`\u003cscript type=\"text/javascript\" charset=\"utf-8\" src=\"ApigeeMobileAnalyticsPlugin.js\"\u003e\u003c/script\u003e`\n5. Add the plugin to the Cordova.plist under Plugins (key: \"ApigeeMobileAnalyticsPlugin\" value: \"ApigeeMobileAnalyticsPlugin\")\n\t\t- OR -\nAdd the plugin to the config.xml file (Cordova 2.3.0+) under `\u003cplugins\u003e`: \n\t\n\t`\u003cplugin name=\"ApigeeMobileAnalyticsPlugin\" value=\"ApigeeMobileAnalyticsPlugin\" /\u003e`\n\n\n\nThere is only one public method so far: `log(options)`.\n\n##### options:\n\n`options` is an object consisting of the following:\n\n- severity: String\n\t- \"assert\"\n\t- \"error\"\n\t- \"warn\"\n\t- \"info\"\n\t- \"debug\"\n\t- \"verbose\"\n\n- tag: String\n\t- User string for filtering logs (ie: \"Login\")\n\n- message: String\n\t- User string message to log (ie: \"Error logging in user\")\n\n\n### Example\n```javascript\nfunction onDeviceReady()\n{\n    var apigeeMobileAnalyticsPlugin = window.plugins.apigeeMobileAnalyticsPlugin;\n    apigeeMobileAnalyticsPlugin.log({\n      severity: \"error\",\n      tag: \"Login\",\n      message: \"Error logging in user\"\n    });\n}\n```\n\n### TODO\n\nThe next thing to be added to the plugin should be the \"application-specific configuration\" facilities of the Apigee Mobile Analytics SDK.\n\n\n## License\n\nThe MIT License\n\nCopyright (c) 2012 Tommy-Carlos Williams [http://github.com/devgeeks](github.com/devgeeks)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevgeeks%2Fapigeemobileanalyticsplugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevgeeks%2Fapigeemobileanalyticsplugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevgeeks%2Fapigeemobileanalyticsplugin/lists"}