an easy to use android library to let developers know how much internet-data their app is consuming. We can identify this as we want based on :
- any Screen or Module.
- any event.
EasyAnalytics library gives us the power to easily add logging events anywhere we want to check here how much Internet is consumed.
To demo our EasyAnalytics lib we are using our old Code repo News Sample App using HILT
Details explanation - https://medium.com/native-mobile-bits/easyanalytics-3a92799410c7
Add this into your dependencies block.
implementation 'com.github.myJarvis:EasyAnalytics:0.0.3'
@HiltAndroidApp
class NewsApp : Application() {
override fun onCreate() {
super.onCreate()
instance = this
//initialize EasyAnalytics
EasyAnalytics.register(this)
}
}
Call EasyAnanlytics
method like this -
EasyAnalytics.getAppUsageInfo(context,"getNews_API_call_success")
- first parameter is just a context
- and second parameter is The screen name or any event name which happened when we want to track the internet consumption.
Call EasyAnanlytics
method like this -
EasyAnalytics.showReports(context)
and that's it EasyAnalytics
will open a beautiful Screen loaded with all analytics logged events for you, in your app itself without any hassle 😁
- an exportable summarize report and more.
- an exportable summarize report and more.
compileSdkVersion 30
targetSdkVersion 30
I am a developer from India and I work with Android on daily basis and I love creating native Mobile apps which can help users and give a plesant experience :)
I love contributing to Open Source community and I share my learnings and respective implementation on my Youtube Channel (Native Mobile Bits) and on Medium as well.
In ❤️ with
Open source contributor.
Lets connect over here :)