{"id":19923135,"url":"https://github.com/mapp-digital/mapp-intelligence-android-sdk-v5","last_synced_at":"2025-05-03T07:31:03.908Z","repository":{"id":57726455,"uuid":"166987236","full_name":"mapp-digital/mapp-intelligence-android-sdk-v5","owner":"mapp-digital","description":"Webtrekk Android SDK V5","archived":false,"fork":false,"pushed_at":"2025-01-21T10:38:26.000Z","size":9521,"stargazers_count":13,"open_issues_count":3,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-07T13:06:09.207Z","etag":null,"topics":["analytics","android","android-architecture","android-library","android-sdk","coroutines","kotlin","okhttp3","room","workmanager"],"latest_commit_sha":null,"homepage":"https://www.webtrekk.com/","language":"Kotlin","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/mapp-digital.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","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}},"created_at":"2019-01-22T12:05:51.000Z","updated_at":"2025-01-21T10:38:30.000Z","dependencies_parsed_at":"2024-01-09T15:31:01.456Z","dependency_job_id":"3b082408-7e7a-44ac-b528-cd10526dc317","html_url":"https://github.com/mapp-digital/mapp-intelligence-android-sdk-v5","commit_stats":null,"previous_names":["webtrekk/webtrekk-android-sdk-v5"],"tags_count":46,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mapp-digital%2Fmapp-intelligence-android-sdk-v5","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mapp-digital%2Fmapp-intelligence-android-sdk-v5/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mapp-digital%2Fmapp-intelligence-android-sdk-v5/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mapp-digital%2Fmapp-intelligence-android-sdk-v5/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mapp-digital","download_url":"https://codeload.github.com/mapp-digital/mapp-intelligence-android-sdk-v5/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252156818,"owners_count":21703359,"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":["analytics","android","android-architecture","android-library","android-sdk","coroutines","kotlin","okhttp3","room","workmanager"],"created_at":"2024-11-12T22:13:08.181Z","updated_at":"2025-05-03T07:30:58.900Z","avatar_url":"https://github.com/mapp-digital.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [Mapp Intelligence Android SDK v5](https://webtrekk.github.io/webtrekk-android-sdk-v5/) [![Build Status](https://travis-ci.com/Webtrekk/webtrekk-android-sdk-v5.svg?branch=master)](https://travis-ci.com/Webtrekk/webtrekk-android-sdk-v5)\n\n[Site](https://mapp.com/) |\n[Docs](https://documentation.mapp.com/latest/en/android-sdk-v5-17498610.html) |\n[Support](https://support.webtrekk.com/)\n\nMapp Intelligence Android SDK is used to integrate Mapp tracking systems with your Android apps. Collect meaningful data about how your apps are used, track how your users interact with your app, how they view specific pages, and custom events. Based on the tracking data from apps different indicators can be measured, which are already known from the web analytics, such as page impressions, events, screen size, operating system, e-commerce tracking, etc.\n\nMapp Intelligence Android SDK v5 is written entirely in [Kotlin](https://kotlinlang.org/) and uses [Coroutines](https://kotlinlang.org/docs/reference/coroutines-overview.html) for non-blocking executions, [WorkManager](https://developer.android.com/topic/libraries/architecture/workmanager) for enqueuing and sending the track requests to optimize the device battery and app performance.\nMapp Intelligence internally, collects and caches the data that you specify for tracking, and later, it sends those data to Webtrekk analytic servers in periodic times.\n\n# JCenter note\n\nFor versions of 5.0.8+ we are use mavenCentral() because Jcenter is shutting down\n\n\n# Installation (Java 11)\n\nFrom version 5.1.3. and higher, Java 11 is required. \n\nTo set Java 11, go to Android Studio, Preferences-\u003eBuild, Execution, Deployment-\u003eGradle-\u003eGradle JDK and select JAVA 11.\n\nAlso, add following into application build.gradle file:\n\n    compileOptions {\n        targetCompatibility JavaVersion.VERSION_11\n    }\n    \nIf using kotlin add this also:\n\n    kotlinOptions {\n        jvmTarget = JavaVersion.VERSION_11.toString()\n    }\n\nGradle\n```groovy\nimplementation 'com.mapp.sdk:intelligence-android:5.1.3'\n```\n\nMaven\n```xml\n\u003cdependency\u003e\n\t\u003cgroupId\u003ecom.mapp.sdk\u003c/groupId\u003e\n\t\u003cartifactId\u003eintelligence-android\u003c/artifactId\u003e\n\t\u003cversion\u003e5.1.3\u003c/version\u003e\n\t\u003ctype\u003epom\u003c/type\u003e\n\u003c/dependency\u003e\n```\n\nMaven\n```xml\n\u003cdependency\u003e\n\t\u003cgroupId\u003ecom.webtrekk.webtrekksdk\u003c/groupId\u003e\n\t\u003cartifactId\u003ewebtrekksdk-android\u003c/artifactId\u003e\n\t\u003cversion\u003e5.1.3\u003c/version\u003e\n\t\u003ctype\u003epom\u003c/type\u003e\n\u003c/dependency\u003e\n```\n\n# Installation (Java 8)\n\n```groovy\nimplementation 'com.mapp.sdk:intelligence-android:5.1.2'\n```\n`Last SDK version that supports JAVA 8`\n\n\nThe SDK requires that you enable Java 8 in your builds.\n```groovy\ncompileOptions {\n        targetCompatibility 1.8\n        sourceCompatibility 1.8\n}\n```\n\nVersions less then 5.0.4 are on Jcenter(), Access will be blocked on February 1, 2022.\n**Warning:** Please don't use versions 5.0.5, 5.0.6 and 5.0.7\n\n# Manifest permissions\n\nAllow the network permission in your app manifest.\n```xml\n\u003cuses-permission android:name=\"android.permission.INTERNET\" /\u003e\n```\n\nThe SDK supports min Android SDK (21).\n\nNote that the SDK uses [AndroidX](https://developer.android.com/jetpack/androidx), make sure to migrate your app to [AndroidX Migration](https://developer.android.com/jetpack/androidx#using_androidx) to avoid Manifest merger failure.\n\n\n\n# Read more\nCheck out the [docs](https://docs.webtrekk.com/display/ASVN) on the site to learn more about tracking server and custom params. \nWe have implemented camera, push and form tracking in our [Test Application](https://github.com/Webtrekk/Android-advanced-test-application) \n\n# Contributing\nPlease check out our contributing guide before you start [here](https://github.com/Webtrekk/webtrekk-android-sdk-v5/blob/fc910d5dc6da3d3e289a1cc57bc281be0e34b5da/CONTRIBUTING.md).\n\n# License\nMIT License\n\nCopyright (c) 2019 Webtrekk GmbH\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%2Fmapp-digital%2Fmapp-intelligence-android-sdk-v5","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmapp-digital%2Fmapp-intelligence-android-sdk-v5","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmapp-digital%2Fmapp-intelligence-android-sdk-v5/lists"}