From b8e87a2b63147b1dbafa16f892c1ee6cbf482ae3 Mon Sep 17 00:00:00 2001 From: wangqi Date: Thu, 17 Aug 2017 11:16:39 -0700 Subject: 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 --- .../stub/StubPhoneNumberGeoUtilModule.java | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 java/com/android/dialer/phonenumbergeoutil/stub/StubPhoneNumberGeoUtilModule.java (limited to 'java/com/android/dialer/phonenumbergeoutil/stub/StubPhoneNumberGeoUtilModule.java') 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); +} -- cgit v1.2.3