In my app, in the Application class there is a function that triggers some network requests that fetch the needed data for the app to work. Recently i have noticed that these requests are trigger periodical every day at 11:00 GMT. From the logs i am getting it looks like it is not happening for every device using the app as the device ids i log every day are different. It looks like there is a library (there is nowhere in my code any periodical code that would trigger at that specific time per day causing it) that is causing it. In my app i use libs like Appsflyer, Google Play Services, Firebase, Crashlytics that could be triggering a sync job every day causing the issue though it is not possible to disable any of them in the production app. Unfortunately i am not able to repro the above problem on any of my devices so there is no way for me to debug it so far. Does any one has faced something similar or can give me any advice on how to move forward with this as these spike requests are causing issues and overload to our servers. Thanks in advance
Android Application class called periodically every day same hour causing network request overload
376 views Asked by makis.k At
1
There are 1 answers
Related Questions in ANDROID
- Delay in loading Html Page(WebView) from assets folder in real android device
- MPAndroidChart method setWordWrapEnabled() not found
- Designing a 'new post' android activity
- Android :EditText inside ListView always update first item in the listview
- Android: Transferring Data via ContentIntent
- Wrong xml being inflated android
- AsyncTask Class
- Unable to receive extras in Android Intent
- Website zoomed out on Android default browser
- Square FloatingActionButton with Android Design Library
Related Questions in FIREBASE
- Firebase facebook authentication not working
- Add @JsonAutoDetect to third party lib and firebase Java lib
- firebase-import timing out?
- Understanding Firebase orderByChild
- Wait until Firebase retrieves data
- Firebase logout show Permission denied error.
- angular $firebaseArrray: difference between controller and directive
- Firebase: combine filtering with ordering in swift
- AngularJS - Firebase - Promise Error
- How to get simple list of devices on a Nest account using Firebase in Android?
Related Questions in PERFORMANCE
- Slow performance on ipad erasing image
- Can Apache Ant be told to cache its XML files?
- What are the pros and cons of the picture element?
- DB candidate as CouchDB/Schema replacement
- python member str performance too slow
- Split a large query (2 days) into pieces to increase the speed in Postgres
- Use GUI displayed results of SQL query vs new queries?
- fastest way to map a large number of longs
- Bash regular expression execution hangs on long expressions
- Why is calling a function so slow in Javascript?
Related Questions in ANDROID-NETWORKING
- How do I configure my Android Emulator's Network Address Space?
- I want to write a django application that can respond to the HttpClient requests from an android device. Can I have an example code?
- NoConnectionError in android volley
- Cannot connect to native local socket on android 5.1
- Android Volley Library Works on Genymotion Emulator But always return timeouterror on device
- Android : How to add Oauth1 header in Volley Request
- Android Studio - Fast Android Networking Library Upload File to server - error
- New Activity not appearing without any error
- Get Data with HTTP request Android Xamarin C#
- What is the best way in android to check if internet is active continiously(when the internet is inactive)?
Related Questions in APPSFLYER-ANDROID-SDK
- AppsFlyer doesn't show statistics about custom event
- Android - Appsflyer AD_ID permission error in Google Play Console
- Play store asking me to update third party library even after updating. Unable to upload app to play store
- Get attribution to Appsflyer
- Android Application class called periodically every day same hour causing network request overload
- AppsFlyer/Adjust/AppMetrica doesn't work with Expo?
- (AppsFlyer / Unity IAP package) AppsFlyer in-app purchase event - incorrect revenue values are shown in the AppsFlyer console
- onInstallConversionData doesn't invoke after app installing on android
- Does INSTALL_REFERRER receiver still work on Android Oreo?
- AppsFlyer Android onInstallConversionDataLoaded delay callback
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
It can be silent push notifications for uninstall measurement (AppsFlyer).
The Android Uninstall 'Silent' push notification is not always silent for the clients. This is a common issue and it can be a major pain for the clients.
Why does it happen?
The client can be overriding firebase's
onMessageReceived(RemoteMessage remoteMessage)method.Then they may have some of their own logic inside that method the is causing the push notification not to be silent.Solution
The server side sends a 'silent' push with the payload
{"af-uinstall-tracking":true}. The client will need to add a extra few lines of code to handle this specific payload.For example:
Be sure it is not your case