Description
Webtrekk Android SDK is used to integrate Webtrekk tracking systems with your Android apps. Collect your app usage, track how your users are using your app, define specific pages and custom events. And send the data to Webtrekk analytics servers to be used for further analysis.
Webtrekk Android SDK v5 is built in Kotlin and uses Coroutines under the hood, WorkManager for enqueuing and sending the track requests to optimize the device battery and performance.
Webtrekk internally, collects and caches the data that you specify for tracking, and later, it sends those data to Webtrekk analytics server in periodic time.
Webtrekk Android SDK v5 [BETA] alternatives and similar packages
Based on the "Kotlin" category.
Alternatively, view Webtrekk Android SDK v5 [BETA] alternatives based on common mentions on social networks and blogs.
-
CalendarView
A highly customizable calendar view and compose library for Android and Kotlin Multiplatform. -
Balloon
:balloon: Modernized and sophisticated tooltips, fully customizable with an arrow and animations for Android. -
kotlin-android-template
Android + Kotlin + Github Actions + ktlint + Detekt + Gradle Kotlin DSL + buildSrc = โค๏ธ -
NotyKT ๐๏ธ
๐ NotyKT is a complete ๐Kotlin-stack (Backend + Android) ๐ฑ application built to demonstrate the use of Modern development tools with best practices implementation๐ฆธ. -
Material Chip View
Material Chip view. Can be used as tags for categories, contacts or creating text clouds -
DrawableToolbox
๐ ๏ธ The missing drawable toolbox for Android. Create drawables programmatically and get rid of the boring and always repeated drawable.xml files. -
Navigation Toolbar for Android
:octocat: Navigation toolbar is a slide-modeled UI navigation controller made by @Ramotion -
Capturable
๐Jetpack Compose utility library for capturing Composable content and transforming it into Bitmap Image๐ผ๏ธ -
Pdf Viewer For Android
A Lightweight PDF Viewer Android library which only occupies around 80kb while most of the Pdf viewer occupies up to 16MB space. -
Carousel Recyclerview
Carousel Recyclerview let's you create carousel layout with the power of recyclerview by creating custom layout manager. -
Pluto Debug Framework
Android Pluto is a on-device debugging framework for Android applications, which helps intercept Network calls, capture Crashes & ANRs, manipulate application data on-the-go, and much more. -
CrunchyCalendar โ awesome calendar widget for android apps
5.4 0.0 Webtrekk Android SDK v5 [BETA] VS CrunchyCalendar โ awesome calendar widget for android appsA beautiful material calendar with endless scroll, range selection and a lot more! -
SSComposeCookBook
A Collection of major Jetpack compose UI components which are commonly used.๐๐๐ -
SSCustomBottomNavigation
Animated TabBar with native control and Jetpack Navigation support..โจ๐๐ -
Permission Flow for Android
Know about real-time state of a Android app Permissions with Kotlin Flow APIs. -
Only
:bouquet: An easy way to persist and run code block only as many times as necessary on Android. -
Nextflix-Composable
Includes jetpack compose, navigation, paging, hilt, retrofit, coil, coroutines, flow.. -
EasyPermissions-ktx
๐ Kotlin version of the popular google/easypermissions wrapper library to simplify basic system permissions logic on Android M or higher. -
Compose Compiler Reports to HTML Generator
A utility (Gradle Plugin + CLI) to convert Jetpack Compose compiler metrics and reports to beautified HTML page. -
MidJourney Images Compose Multiplatform Mobile Application
3.7 9.2 Webtrekk Android SDK v5 [BETA] VS MidJourney Images Compose Multiplatform Mobile ApplicationThis application is developed to display the images created by MidJourney. The application is developed with Compose Multiplatform and works on many platforms including Android and iOS platforms. -
Events Calendar
Events Calendar is a user-friendly library that helps you achieve a cool Calendar UI with events mapping. You can customise every pixel of the calendar as per your wish and still achieve in implementing all the functionalities of the native android calendar in addition with adding dots to the calendar which represents the presence of an event on the respective dates. It can be done easily, you are just a few steps away from implementing your own badass looking Calendar for your very own project! -
FlowMVI
A Kotlin Multiplatform MVI library based on coroutines with a rich DSL and a powerful plugin system. -
SSCustomEditTextOutLineBorder
Same as the Outlined text fields presented on the Material Design page but with some dynamic changes. ๐ ๐ -
TimelineView
A customizable and easy-to-use Timeline View library for Android. Works as a RecyclerView decorator (ItemDecoration)
InfluxDB - Purpose built for real-time analytics at any scale.
Do you think we are missing an alternative of Webtrekk Android SDK v5 [BETA] or a related project?
README
Webtrekk Android SDK v5
Webtrekk Android SDK is used to integrate Webtrekk 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.
Webtrekk Android SDK v5 is written entirely in Kotlin and uses Coroutines for non-blocking executions, WorkManager for enqueuing and sending the track requests to optimize the device battery and app performance. Webtrekk 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
implementation 'com.mapp.sdk:intelligence-android:5.1.3'
Maven
<dependency>
<groupId>com.mapp.sdk</groupId>
<artifactId>intelligence-android</artifactId>
<version>5.1.3</version>
<type>pom</type>
</dependency>
Maven
<dependency>
<groupId>com.webtrekk.webtrekksdk</groupId>
<artifactId>webtrekksdk-android</artifactId>
<version>5.1.3</version>
<type>pom</type>
</dependency>
Installation (Java 8)
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.
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.
<uses-permission android:name="android.permission.INTERNET" />
The SDK supports min Android SDK (21).
Note that the SDK uses AndroidX, make sure to migrate your app to AndroidX Migration to avoid Manifest merger failure.
Read more
Check out the docs on the site to learn more about tracking server and custom params. We have implemented camera, push and form tracking in our Test Application
Contributing
Please check out our contributing guide before you start here.
License
MIT License
Copyright (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.
*Note that all licence references and agreements mentioned in the Webtrekk Android SDK v5 [BETA] README section above
are relevant to that project's source code only.