Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mapp-digital/mapp-intelligence-android-sdk-v5
Webtrekk Android SDK V5
https://github.com/mapp-digital/mapp-intelligence-android-sdk-v5
analytics android android-architecture android-library android-sdk coroutines kotlin okhttp3 room workmanager
Last synced: 6 days ago
JSON representation
Webtrekk Android SDK V5
- Host: GitHub
- URL: https://github.com/mapp-digital/mapp-intelligence-android-sdk-v5
- Owner: mapp-digital
- License: mit
- Created: 2019-01-22T12:05:51.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-08-28T13:21:33.000Z (3 months ago)
- Last Synced: 2024-08-28T14:45:25.927Z (3 months ago)
- Topics: analytics, android, android-architecture, android-library, android-sdk, coroutines, kotlin, okhttp3, room, workmanager
- Language: Kotlin
- Homepage: https://www.webtrekk.com/
- Size: 9.03 MB
- Stars: 13
- Watchers: 4
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
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)
[Site](https://mapp.com/) |
[Docs](https://documentation.mapp.com/latest/en/android-sdk-v5-17498610.html) |
[Support](https://support.webtrekk.com/)Mapp 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.
Mapp 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.
Mapp 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.# JCenter note
For versions of 5.0.8+ we are use mavenCentral() because Jcenter is shutting down
# Installation (Java 11)
From version 5.1.3. and higher, Java 11 is required.
To set Java 11, go to Android Studio, Preferences->Build, Execution, Deployment->Gradle->Gradle JDK and select JAVA 11.
Also, add following into application build.gradle file:
compileOptions {
targetCompatibility JavaVersion.VERSION_11
}
If using kotlin add this also:kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
}Gradle
```groovy
implementation 'com.mapp.sdk:intelligence-android:5.1.3'
```Maven
```xmlcom.mapp.sdk
intelligence-android
5.1.3
pom```
Maven
```xmlcom.webtrekk.webtrekksdk
webtrekksdk-android
5.1.3
pom```
# Installation (Java 8)
```groovy
implementation 'com.mapp.sdk:intelligence-android:5.1.2'
```
`Last SDK version that supports JAVA 8`The SDK requires that you enable Java 8 in your builds.
```groovy
compileOptions {
targetCompatibility 1.8
sourceCompatibility 1.8
}
```Versions less then 5.0.4 are on Jcenter(), Access will be blocked on February 1, 2022.
**Warning:** Please don't use versions 5.0.5, 5.0.6 and 5.0.7# Manifest permissions
Allow the network permission in your app manifest.
```xml```
The SDK supports min Android SDK (21).
Note 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.
# Read more
Check out the [docs](https://docs.webtrekk.com/display/ASVN) on the site to learn more about tracking server and custom params.
We have implemented camera, push and form tracking in our [Test Application](https://github.com/Webtrekk/Android-advanced-test-application)# Contributing
Please check out our contributing guide before you start [here](https://github.com/Webtrekk/webtrekk-android-sdk-v5/blob/fc910d5dc6da3d3e289a1cc57bc281be0e34b5da/CONTRIBUTING.md).# License
MIT LicenseCopyright (c) 2019 Webtrekk GmbH
Permission 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:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE 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.