* Adjusted microphone -> phoneCall use call which allows foreground services to work from locked screens
* Found a way to force the device to wake up & accept a call if the foreground service is stopped - but it's ugly
* WIP
* Minor cleanup
* Fix minor issue
* Cleanup
* Further cleanup
* Attempt to unlock keyguard if locked on incoming call
* Minor tidyup
* Cleaned method name
* Bump canonical version code & name for a 1.20.8 release
* Modernised fullscreen intent flags
* Prevent dangling call activity on resume after taking a call from lock screen after force close
* Prevented stale call activity hanging around when call finished having been woken from lock via fullscreen intent
* Addressed PR feedback
* Further PR feedback & fixed dead call activity in history if denied outright
* Hopefully final PR feedback / adjustments
* Corrected some things I'd accidentally missed
* Adjustments to run wakeup 'emergency exit' timer off the main thread as per PR feedback
* Removed accidentally left in commented code
* Removed no longer valid comment
* Removed unused imports
* Removed wait for screen wakeup - still seems to work okay (unlike if we wait but do it wrong) such as via a few commits ago
* Removed unused imports - always gets me, that one..
---------
Co-authored-by: alansley <aclansley@gmail.com>
@ -44,8 +45,9 @@ class Poller(private val configFactory: ConfigFactoryProtocol, debounceTimer: Ti
// region Settings
companionobject{
privateconstvalretryInterval:Long=2*1000
privateconstvalmaxInterval:Long=15*1000
privateconstvalRETRY_INTERVAL_MS:Long=2*1000
privateconstvalMAX_RETRY_INTERVAL_MS:Long=15*1000
privateconstvalNEXT_RETRY_MULTIPLIER:Float=1.2f// If we fail to poll we multiply our current retry interval by this (up to the above max) then try again
}
// endregion
@ -54,7 +56,7 @@ class Poller(private val configFactory: ConfigFactoryProtocol, debounceTimer: Ti
if(hasStarted){return}
Log.d(TAG,"Started polling.")
hasStarted=true
setUpPolling(retryInterval)
setUpPolling(RETRY_INTERVAL_MS)
}
funstopIfNeeded(){
@ -67,9 +69,11 @@ class Poller(private val configFactory: ConfigFactoryProtocol, debounceTimer: Ti
Log.d(TAG,"Retrieving user profile.")
SnodeAPI.getSwarm(userPublicKey).bind{
usedSnodes.clear()
deferred<Unit,Exception>().also{
pollNextSnode(userProfileOnly=true,it)
deferred<Unit,Exception>().also{exception->
pollNextSnode(userProfileOnly=true,exception)
}.promise
}.fail{exception->
Log.e(TAG,"Failed to retrieve user profile.",exception)
}
}
// endregion
@ -84,14 +88,14 @@ class Poller(private val configFactory: ConfigFactoryProtocol, debounceTimer: Ti