summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/binary/google
diff options
context:
space:
mode:
authortwyen <twyen@google.com>2017-11-17 10:43:38 -0800
committerzachh <zachh@google.com>2017-11-18 07:34:52 +0000
commitc170e2df0230f46e06ed066becc0001f5b8eb44e (patch)
treeb825f0bb82fa6b1a4c1c7016772b6ae22b8b05e1 /java/com/android/dialer/binary/google
parent450c96108c73569dbe13a9e91dc35b34e940aecc (diff)
Implement suggested SIM
This CL adds a module that can query providers to aid users choosing which SIM to call with. Bug: 64214592 Test: MotoSuggestionProviderTest PiperOrigin-RevId: 176129303 Change-Id: Idb6314ad7f5a1bcd20b5b9173d3bfd873383cc84
Diffstat (limited to 'java/com/android/dialer/binary/google')
-rw-r--r--java/com/android/dialer/binary/google/GoogleStubDialerRootComponent.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/java/com/android/dialer/binary/google/GoogleStubDialerRootComponent.java b/java/com/android/dialer/binary/google/GoogleStubDialerRootComponent.java
index 273d1e4fc..1ae80f4aa 100644
--- a/java/com/android/dialer/binary/google/GoogleStubDialerRootComponent.java
+++ b/java/com/android/dialer/binary/google/GoogleStubDialerRootComponent.java
@@ -26,6 +26,7 @@ import com.android.dialer.inject.ContextModule;
import com.android.dialer.phonelookup.PhoneLookupModule;
import com.android.dialer.phonenumbergeoutil.impl.PhoneNumberGeoUtilModule;
import com.android.dialer.precall.impl.PreCallModule;
+import com.android.dialer.preferredsim.suggestion.stub.StubSimSuggestionModule;
import com.android.dialer.simulator.impl.SimulatorModule;
import com.android.dialer.storage.StorageModule;
import com.android.dialer.strictmode.impl.SystemStrictModeModule;
@@ -49,6 +50,7 @@ import javax.inject.Singleton;
PhoneLookupModule.class, // TODO(zachh): Module which uses APDL?
PhoneNumberGeoUtilModule.class,
PreCallModule.class,
+ StubSimSuggestionModule.class,
SharedPrefConfigProviderModule.class,
SimulatorModule.class,
StorageModule.class,