{"id":27365429,"url":"https://github.com/boehrsi/devicemarketingnames","last_synced_at":"2026-04-11T11:11:12.335Z","repository":{"id":46583672,"uuid":"483619990","full_name":"Boehrsi/DeviceMarketingNames","owner":"Boehrsi","description":"Marketing device name lookup library for Android.","archived":false,"fork":false,"pushed_at":"2026-03-30T08:58:21.000Z","size":698,"stargazers_count":6,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-03-30T10:31:10.439Z","etag":null,"topics":["android","android-library","kotlin","library"],"latest_commit_sha":null,"homepage":"https://central.sonatype.com/namespace/de.boehrsi","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/Boehrsi.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":"CODE_OF_CONDUCT.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-04-20T11:07:24.000Z","updated_at":"2026-03-30T08:58:23.000Z","dependencies_parsed_at":"2024-02-26T21:24:20.431Z","dependency_job_id":"e3922c5c-0aab-41dd-8b71-4c58fc4c3997","html_url":"https://github.com/Boehrsi/DeviceMarketingNames","commit_stats":null,"previous_names":[],"tags_count":44,"template":false,"template_full_name":null,"purl":"pkg:github/Boehrsi/DeviceMarketingNames","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Boehrsi%2FDeviceMarketingNames","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Boehrsi%2FDeviceMarketingNames/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Boehrsi%2FDeviceMarketingNames/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Boehrsi%2FDeviceMarketingNames/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Boehrsi","download_url":"https://codeload.github.com/Boehrsi/DeviceMarketingNames/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Boehrsi%2FDeviceMarketingNames/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31677856,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-11T08:18:19.405Z","status":"ssl_error","status_checked_at":"2026-04-11T08:17:08.892Z","response_time":54,"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":["android","android-library","kotlin","library"],"created_at":"2025-04-13T05:46:37.356Z","updated_at":"2026-04-11T11:11:12.329Z","avatar_url":"https://github.com/Boehrsi.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Maven Central Version](https://img.shields.io/maven-central/v/de.boehrsi/devicemarketingnames)](https://central.sonatype.com/artifact/de.boehrsi/devicemarketingnames/)\n[![codecov](https://codecov.io/gh/Boehrsi/DeviceMarketingNames/branch/main/graph/badge.svg?token=FDL6MM474N)](https://codecov.io/gh/Boehrsi/DeviceMarketingNames)\n[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/Boehrsi/DeviceMarketingNames/main.yml)](https://github.com/Boehrsi/DeviceMarketingNames/actions)\n[![GitHub](https://img.shields.io/github/license/boehrsi/devicemarketingnames)](https://github.com/Boehrsi/DeviceMarketingNames/blob/main/LICENSE.txt)\n[![Main](https://github.com/Boehrsi/DeviceMarketingNames/actions/workflows/main.yml/badge.svg)](https://github.com/Boehrsi/DeviceMarketingNames/actions/workflows/main.yml)\n\n# Device Marketing Names\n\nA simple device name lookup package. Map e.g. 'SM-G980F' to 'Galaxy S20'. No internet connection or database required.\n\n## Features\n\n- Lookup Android marketing names\n- Get the marketing name(s) of the current device or by an already known Android model\n- Uses the `Build.MODEL` information and [device_identifiers](https://github.com/Boehrsi/device_identifiers) which maps those to the marketing names.\n\n## Usage\n\n### Getting Started\n\nAdd this to your app `build.gradle` file:\n\n```groovy\ndependencies {\n    ...\n    implementation 'de.boehrsi:devicemarketingnames:1.0.6'\n}\n```\n\n#### Migration 0.3.x to 0.4.0\n\n**Versions prior to 0.4.0** are available via [Jitpack](https://jitpack.io/#Boehrsi/DeviceMarketingNames/) with the package name `com.github.Boehrsi:DeviceMarketingNames`.  \n**Starting with version 0.4.0** new versions are deployed via [Maven Central](https://central.sonatype.com/artifact/de.boehrsi/devicemarketingnames/) with the new package name `de.boehrsi:devicemarketingnames`.\n\nTo migrate please adjust your current `build.gradle` entry from\n\n```groovy\ndependencies {\n  ...\n  implementation 'com.github.Boehrsi:DeviceMarketingNames:0.3.x'\n}\n```\n\nto the new package\n\n```groovy\ndependencies {\n  ... \n  implementation 'de.boehrsi:devicemarketingnames:0.4.0'\n}\n```\n\nThe additional repository definition in your root `build.gradle` file can be removed.\n\n### Examples\n\nFor full examples please see the [example app](https://github.com/Boehrsi/DeviceMarketingNames/blob/main/app/src/main/java/de/boehrsi/devicemarketingnames/example/MainActivity.kt).\n\n```kotlin\n// Get one marketing name of the device.\nval deviceName = DeviceMarketingNames.getSingleName()\n\n// Get all marketing names of the device.\nval deviceNames = DeviceMarketingNames.getNames()\n\n// Get one marketing name for the given model.\nval deviceNameFromModel = DeviceMarketingNames.getSingleNameFromModel(\"ONEPLUS A5010\")\n\n// Get all marketing names for the given model.\nval deviceNamesFromModel = DeviceMarketingNames.getNamesFromModel(\"ONEPLUS A5010\");\n```\n\n## How to contribute\n\nIf you are interested in contributing, please have a look into\nthe [contribution guide](https://github.com/Boehrsi/devicemarketingnames/blob/main/CONTRIBUTING.md). Every idea, bug report or line of code is heavily\nappreciated.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboehrsi%2Fdevicemarketingnames","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fboehrsi%2Fdevicemarketingnames","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fboehrsi%2Fdevicemarketingnames/lists"}