{"id":19527597,"url":"https://github.com/bugfender/gradle-mapping-upload","last_synced_at":"2026-05-12T13:40:36.750Z","repository":{"id":45575985,"uuid":"409597248","full_name":"bugfender/gradle-mapping-upload","owner":"bugfender","description":"Gradle plugin to automatically upload your application's ProGuard mappings to Bugfender","archived":false,"fork":false,"pushed_at":"2024-02-05T10:44:29.000Z","size":97,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-01-08T16:02:20.893Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bugfender.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-09-23T13:10:46.000Z","updated_at":"2023-07-06T20:55:37.000Z","dependencies_parsed_at":"2024-02-05T08:57:16.474Z","dependency_job_id":"f41b9b71-5cd1-4ca5-b52d-505c1ac2c0f9","html_url":"https://github.com/bugfender/gradle-mapping-upload","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bugfender%2Fgradle-mapping-upload","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bugfender%2Fgradle-mapping-upload/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bugfender%2Fgradle-mapping-upload/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bugfender%2Fgradle-mapping-upload/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bugfender","download_url":"https://codeload.github.com/bugfender/gradle-mapping-upload/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240779304,"owners_count":19856160,"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":[],"created_at":"2024-11-11T01:15:41.619Z","updated_at":"2026-05-12T13:40:31.729Z","avatar_url":"https://github.com/bugfender.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"Bugfender Android Gradle Plugin\n===============================\n\nUsed to automatically upload ProGuard mapping files to [Bugfender](https://bugfender.com).\n\n## Usage\n\nAdd the plugin to your *app* `build.gradle` file and configure it with the Symbols Upload Token, obtained from your Bugfender dashboard.\n\nAfter that, every assembled app bundle will automatically send mapping file to Bugfender.\n\n### Kotlin Gradle configuration (`app/build.gradle.kts` file)\n\nAdd the Bugfender plugin to the `plugins` section and create a new `bugfender` section, like this:\n\n```kotlin\nplugins {\n    id(\"com.android.application\")\n    // you may have other plugins here\n    id(\"com.bugfender.upload-mapping\") version \"1.2.0\"\n}\n\nbugfender {\n    symbolicationToken(\"\u003cyour_token_here\u003e\")\n}\n```\n\n### Groovy Gradle configuration (`app/build.gradle` file)\n\nAdd the Bugfender plugin to the `plugins` section and create a new `bugfender` section, like this:\n\n```groovy\nplugins {\n    id \"com.android.application\"\n    // you may have other plugins here\n    id \"com.bugfender.upload-mapping\" version \"1.2.0\"\n}\n\nbugfender {\n    symbolicationToken \"\u003cyour_token_here\u003e\"\n}\n```\n\nNote: in older project configurations, it's possible this file is not under an `app` directory.\n\n### Bugfender On-Premises\n\nIf you're using a Bugfender instance other than `dashboard.bugfender.com`, you will need to specify the URL of your instance:\n\nIn `app/build.gradle.kts` (Kotlin):\n\n```kotlin\nbugfender {\n    symbolicationToken(\"\u003cyour_token_here\u003e\")\n    symbolicationURL(\"https://bugfender.yourcompany.com/\")\n}\n```\n\nOr, if you have a `app/build.gradle` (Groovy):\n\n```groovy\nbugfender {\n    symbolicationToken \"\u003cyour_token_here\u003e\"\n    symbolicationURL \"https://bugfender.yourcompany.com/\"\n}\n```\n\n### Troubleshooting\n\n#### Error message `org.gradle.api.plugins.UnknownPluginException: Plugin [id: 'com.bugfender.upload-mapping', version: 'XXX'] was not found...`\n\nYou may need to configure the plugin repositories in your `settings.gradle.kts` or `settings.gradle` file.\nAdd `gradlePluginPortal()` to the `pluginManagement` \u003e `repositories` section, like this:\n\n```kotlin\npluginManagement {\n    repositories {\n        // you may have other repos here\n        gradlePluginPortal()\n    }\n}\n```\n\n\n# Contributing\n\nTo use a local version that's not published to the maven central.\n\n* Publish it to a local maven repository with `gradle publishToMavenLocal` task.\n* In the test project, add `mavenLocal` to repositories in `settings.gradle`:\n```groovy\npluginManagement {\n    repositories {\n        mavenLocal()\n        (...)\n    }\n}\n```\n* Configure the plugin as described in `Usage`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbugfender%2Fgradle-mapping-upload","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbugfender%2Fgradle-mapping-upload","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbugfender%2Fgradle-mapping-upload/lists"}