Log versionCode from Manifest and not from BuildConfig.VERSION_CODE.

This commit is contained in:
Benoit Marty 2024-05-24 15:18:17 +02:00
parent 7d3cef33a9
commit 509b416d11
2 changed files with 5 additions and 3 deletions

View file

@ -36,6 +36,6 @@ class ElementXApplication : Application(), DaggerComponentOwner {
initializeComponent(TracingInitializer::class.java)
initializeComponent(CacheCleanerInitializer::class.java)
}
logApplicationInfo()
logApplicationInfo(this)
}
}