Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ff51e6ad authored by Abhishek Aggarwal's avatar Abhishek Aggarwal
Browse files

Revert "privacycentralapp: use io dispatcher for actors"

This reverts commit e39b47d4.

Revert "privacycentralapp: use main looper for requestLocationUpdates"

This reverts commit 1b6b7687.
parent 3c2f148a
Loading
Loading
Loading
Loading
Loading
+8 −4
Original line number Original line Diff line number Diff line
@@ -23,7 +23,6 @@ import android.location.Location
import android.location.LocationListener
import android.location.LocationListener
import android.location.LocationManager
import android.location.LocationManager
import android.os.Bundle
import android.os.Bundle
import android.os.Looper
import android.util.Log
import android.util.Log
import foundation.e.privacycentralapp.data.repositories.LocalStateRepository
import foundation.e.privacycentralapp.data.repositories.LocalStateRepository
import foundation.e.privacycentralapp.domain.entities.LocationMode
import foundation.e.privacycentralapp.domain.entities.LocationMode
@@ -173,9 +172,14 @@ class FakeLocationStateUseCase(
                LocationManager.NETWORK_PROVIDER, // TODO: tight this with fakelocation module.
                LocationManager.NETWORK_PROVIDER, // TODO: tight this with fakelocation module.
                0L,
                0L,
                0f,
                0f,
                listener,
                listener
                Looper.getMainLooper()
            )
            )
            // locationManager.requestLocationUpdates(
            //     LocationManager.NETWORK_PROVIDER, // TODO: tight this with fakelocation module.
            //     0L,
            //     0f,
            //     listener
            // )


            val location: Location? = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER)
            val location: Location? = locationManager.getLastKnownLocation(LocationManager.NETWORK_PROVIDER)
            location?.let { listener.onLocationChanged(it) }
            location?.let { listener.onLocationChanged(it) }
+1 −2
Original line number Original line Diff line number Diff line
@@ -23,7 +23,6 @@ import foundation.e.flowmvi.MVIView
import foundation.e.flowmvi.Reducer
import foundation.e.flowmvi.Reducer
import foundation.e.flowmvi.SingleEventProducer
import foundation.e.flowmvi.SingleEventProducer
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.channels.Channel
import kotlinx.coroutines.channels.Channel
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.Flow
import kotlinx.coroutines.flow.MutableStateFlow
import kotlinx.coroutines.flow.MutableStateFlow
@@ -108,7 +107,7 @@ open class BaseFeature<State : Any, in Action : Any, in Effect : Any, SingleEven
        @Suppress("UNUSED_PARAMETER") logger: Logger
        @Suppress("UNUSED_PARAMETER") logger: Logger
    ) {
    ) {
        onEach { action ->
        onEach { action ->
            callerCoroutineScope.launch(Dispatchers.IO) {
            callerCoroutineScope.launch {
                actor.invoke(_state.value, action)
                actor.invoke(_state.value, action)
                    .onEach { effect ->
                    .onEach { effect ->
                        mutex.withLock {
                        mutex.withLock {