Description
Tiny library for tracking screens and events with google analytics and / or firebase analytics.
BloodHoud alternatives and similar packages
Based on the "Tracking" category.
Alternatively, view BloodHoud alternatives based on common mentions on social networks and blogs.
SaaSHub - Software Alternatives and Reviews
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of BloodHoud or a related project?
Popular Comparisons
README
BloodHoud
Tiny library for tracking screens and events with google analytics and / or firebase analytics.
How to install
repositories {
maven {
url "https://jitpack.io"
}
}
dependencies {
implement 'com.github.kibotu:BloodHound:-SNAPSHOT'
// for google analytics
implement "com.google.android.gms:play-services-gcm:16.0.0"
implement "com.google.android.gms:play-services-analytics:16.0.6"
// for firebase
implement "com.google.firebase:firebase-core:16.0.6"
}
How to use
Google Analytics
Add gms version to manifest
<application> <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" /> </application>
Initialize
BloodHound.with(context, "trackingId")
Track Screens
BloodHound.screen("main_screen")
Track Events
BloodHound.track("category", "action", "app_start", mapOf("user" to UUID.randomUUID().toString()) // (optional) parameters )
(optional) Reset client
BloodHound.reset()
Firebase
Initialize
BloodHound.with(context)
Track Screens
BloodHound.screen("main_screen") // with screen class // BloodHound.screen("main_screen", MainActivity::class.java.simpleName)
Track Events
BloodHound.track("main_screen", "user_event", mapOf("user" to UUID.randomUUID().toString()) // (optional) parameters )
(optional) Reset client
BloodHound.reset()
GoogleAnalyitcsOptions (defaults)
BloodHound.with(this, "trackingId", GoogleAnalyitcsOptions(
enableDebugging = false,
enableLogging = false,
exceptionReporting = false,
advertisingIdCollection = true,
autoActivityTracking = false,
sessionTimeout = 300,
sampleRate = 100.0,
sessionLimit = 500,
dryRun = false,
anonymizeIp = true
))
FirebaseOptions (defaults)
BloodHound.with(this, FirebaseOptions(
enableDebugging = false,
enableLogging = false
))
License
Copyright 2019 Jan Rabe
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
*Note that all licence references and agreements mentioned in the BloodHoud README section above
are relevant to that project's source code only.