based on unique keys (ga_session_id || user_pseudo_id) we want to find the first event that started that session. but some records have the same event_timestamp. is there a document that shows which event is earlier?

I couldn't find anything about it in the documents.

Hi. On 2024-03-05 we have stopd receiving webhooks for instagram comments, mentions and messages. It was working as intended until 2024-03-04.
There were no changes on the app configuration. I checked the app configuration and the app is on live mode and it have the advanced permissions for each of the webhook types.
To make sure our callback URL is working properly, we made a test with the messages type on the app dashboard and the message was received on our end without any problem.

I am facing ANR (Application Not Responding) issues in my Android application related to the initialization of the Mobile Ads SDK. I have a class named GoogleAdsManager where I perform the initialization in the initAds() function, and this function is called in the onCreate() method of the main Application class.

Here is a simplified version of my code:

class GoogleAdsManager {     fun initAds(context: Context) {         // Other initialization tasks         MobileAds.initialize(context)     } } 

And in my Application class:

class MyApplication : Application() {     override fun onCreate() {         super.onCreate()         val googleAdsManager = GoogleAdsManager()         googleAdsManager.initAds(this)     } } 

The issue is that I am receiving ANR reports on various devices, but I am unable to reproduce it on my own device. Firebase Crashlytics reports indicate that this ANR occurs more frequently than usual.

I suspect that the MobileAds.initialize(context) call might be the culprit. However, since I cannot reproduce the issue locally, I am seeking advice on how to investigate and resolve ANR issues related to the Mobile Ads SDK initialization.

Has anyone experienced similar ANR issues with MobileAds.initialize()? Are there specific scenarios or devices where such ANRs are more likely to occur? Are there alternative approaches or best practices for initializing Mobile Ads SDK to avoid ANR issues? Any insights or suggestions on how to address this ANR issue would be greatly appreciated. Thank you!