summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/phonenumbergeoutil/stub/StubPhoneNumberGeoUtilModule.java
diff options
context:
space:
mode:
authorwangqi <wangqi@google.com>2017-08-17 11:16:39 -0700
committerEric Erfanian <erfanian@google.com>2017-08-30 15:45:28 +0000
commitb8e87a2b63147b1dbafa16f892c1ee6cbf482ae3 (patch)
treea3a93f1c935fcb60129006185332b65d80018536 /java/com/android/dialer/phonenumbergeoutil/stub/StubPhoneNumberGeoUtilModule.java
parentf4627475c19ea3d3f2ea668b6e402c1f4ab76f9e (diff)
Compile out geo location library for Dialer Go.
This will reduce apk size ~1.5MB and memory use ~3MB. This will cause incall ui not showing geo location information for numbers not in contact. Location information in call log is not affected. Bug: 64398241,64394643 Test: manual PiperOrigin-RevId: 165602483 Change-Id: Iccace5b4eb3c3bcef971b1b63f21761ad19a92b1
Diffstat (limited to 'java/com/android/dialer/phonenumbergeoutil/stub/StubPhoneNumberGeoUtilModule.java')
-rw-r--r--java/com/android/dialer/phonenumbergeoutil/stub/StubPhoneNumberGeoUtilModule.java30
1 files changed, 30 insertions, 0 deletions
diff --git a/java/com/android/dialer/phonenumbergeoutil/stub/StubPhoneNumberGeoUtilModule.java b/java/com/android/dialer/phonenumbergeoutil/stub/StubPhoneNumberGeoUtilModule.java
new file mode 100644
index 000000000..82252cc2f
--- /dev/null
+++ b/java/com/android/dialer/phonenumbergeoutil/stub/StubPhoneNumberGeoUtilModule.java
@@ -0,0 +1,30 @@
+/*
+ * Copyright (C) 2017 The Android Open Source Project
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License
+ */
+
+package com.android.dialer.phonenumbergeoutil.stub;
+
+import com.android.dialer.phonenumbergeoutil.PhoneNumberGeoUtil;
+import dagger.Binds;
+import dagger.Module;
+import javax.inject.Singleton;
+
+/** Module which binds {@link PhoneNumberGeoUtilStub}. */
+@Module
+public abstract class StubPhoneNumberGeoUtilModule {
+ @Binds
+ @Singleton
+ public abstract PhoneNumberGeoUtil bindPhoneNumberGeoUtil(PhoneNumberGeoUtilStub stub);
+}