In Progress
Status Update
Comments
ra...@google.com <ra...@google.com>
[Deleted User] <[Deleted User]> #2
Any updates on this? It's been a month already since I reported it, and it seems this crash is occurring quite frequently for my users.
ri...@gmail.com <ri...@gmail.com> #3
I am still regularly receiving reports about this issue, and it seems it has not been addressed in the latest 1.4.0-rc01 release.
ru...@gmail.com <ru...@gmail.com> #4
Seems like a fairly easy fix on our end. I'll see to that it is fixed in 1.5.
Description
Component used: App Startup Version used: 1.1.0 Devices/Android versions reproduced on: Samsung M31s/Android 11
I was lazily loading the Facebook SDK using AppInitiliazer. Due to this, I have used the following code in the manifest file:
I am getting
EnsureInitializerMetadata
error in the lint now.Error: Every Initializer needs to be accompanied by a corresponding <meta-data> entry in the AndroidManifest.xml file. [EnsureInitializerMetadata] class FacebookInitializer : Initializer<Unit> { ^
Explanation for issues of type "EnsureInitializerMetadata": When a library defines a Initializer, it needs to be accompanied by a corresponding <meta-data> entry in the AndroidManifest.xml file.
When I set the value in the meta data instead of removing the node, lint is working fine. I am not able to lazy load anything due this error.