blob: beaa2c5ec9f2d9dd12b8ffb0f4a06a96caa1e802 [file] [log] [blame]
Eric Erfanianccca3152017-02-22 16:32:36 -08001# Local modifications:
Eric Erfanian9a090c82017-03-16 19:22:24 -07002# * removed com.google.android.geo.API_KEY key. This should be added to
3# the manifest files in java/com/android/incallui/calllocation/impl/
4# and /java/com/android/incallui/maps/impl/
Eric Erfanian3bb96412017-06-22 10:19:53 -07005# * b/62417801 modify translation string naming convention:
6# $ find . -type d | grep 262 | rename 's/(values)\-([a-zA-Z\+\-]+)\-(mcc262-mnc01)/$1-$3-$2/'
Eric Erfanian3bb96412017-06-22 10:19:53 -07007# * b/37077388 temporarily disable proguard with javac
Eric Erfanian939cdf02017-08-29 08:49:58 -07008# * b/62875795 include manually generated GRPC service class:
9# $ protoc --plugin=protoc-gen-grpc-java=prebuilts/tools/common/m2/repository/io/grpc/protoc-gen-grpc-java/1.0.3/protoc-gen-grpc-java-1.0.3-linux-x86_64.exe \
10# --grpc-java_out=lite:"packages/apps/Dialer/java/com/android/voicemail/impl/" \
11# --proto_path="packages/apps/Dialer/java/com/android/voicemail/impl/transcribe/grpc/" "packages/apps/Dialer/java/com/android/voicemail/impl/transcribe/grpc/voicemail_transcription.proto"
Chiao Cheng94b10b52012-08-17 16:59:12 -070012LOCAL_PATH:= $(call my-dir)
13include $(CLEAR_VARS)
14
Eric Erfanianccca3152017-02-22 16:32:36 -080015# The base directory for Dialer sources.
16BASE_DIR := java/com/android
Jay Shrauner0f68a712014-07-16 16:13:57 -070017
Eric Erfanianccca3152017-02-22 16:32:36 -080018# Primary dialer module sources.
19SRC_DIRS := \
20 $(BASE_DIR)/contacts/common \
21 $(BASE_DIR)/dialer \
Eric Erfanian2f1c7582017-06-19 11:26:01 -070022 $(BASE_DIR)/dialershared \
Eric Erfanianccca3152017-02-22 16:32:36 -080023 $(BASE_DIR)/incallui \
Eric Erfaniand5e47f62017-03-15 14:41:07 -070024 $(BASE_DIR)/voicemail
25
26# Exclude files incompatible with AOSP.
27EXCLUDE_FILES := \
Eric Erfaniand5e47f62017-03-15 14:41:07 -070028 $(BASE_DIR)/incallui/calllocation/impl/AuthException.java \
29 $(BASE_DIR)/incallui/calllocation/impl/CallLocationImpl.java \
30 $(BASE_DIR)/incallui/calllocation/impl/CallLocationModule.java \
31 $(BASE_DIR)/incallui/calllocation/impl/DownloadMapImageTask.java \
32 $(BASE_DIR)/incallui/calllocation/impl/GoogleLocationSettingHelper.java \
33 $(BASE_DIR)/incallui/calllocation/impl/HttpFetcher.java \
34 $(BASE_DIR)/incallui/calllocation/impl/LocationFragment.java \
35 $(BASE_DIR)/incallui/calllocation/impl/LocationHelper.java \
36 $(BASE_DIR)/incallui/calllocation/impl/LocationPresenter.java \
37 $(BASE_DIR)/incallui/calllocation/impl/LocationUrlBuilder.java \
38 $(BASE_DIR)/incallui/calllocation/impl/ReverseGeocodeTask.java \
39 $(BASE_DIR)/incallui/calllocation/impl/TrafficStatsTags.java \
40 $(BASE_DIR)/incallui/maps/impl/MapsImpl.java \
41 $(BASE_DIR)/incallui/maps/impl/MapsModule.java \
Eric Erfanian2f1c7582017-06-19 11:26:01 -070042 $(BASE_DIR)/incallui/maps/impl/StaticMapFragment.java \
Chiao Cheng94b10b52012-08-17 16:59:12 -070043
Paul Duffin922b1082017-05-05 15:05:47 +010044# Exclude testing only class, not used anywhere here
45EXCLUDE_FILES += \
46 $(BASE_DIR)/contacts/common/format/testing/SpannedTestUtils.java
47
Eric Erfanian3bb96412017-06-22 10:19:53 -070048# Exclude build variants for now
49EXCLUDE_FILES += \
50 $(BASE_DIR)/dialer/buildtype/bugfood/BuildTypeAccessorImpl.java \
51 $(BASE_DIR)/dialer/buildtype/dogfood/BuildTypeAccessorImpl.java \
52 $(BASE_DIR)/dialer/buildtype/fishfood/BuildTypeAccessorImpl.java \
53 $(BASE_DIR)/dialer/buildtype/test/BuildTypeAccessorImpl.java \
54 $(BASE_DIR)/dialer/constants/googledialer/ConstantsImpl.java \
55 $(BASE_DIR)/dialer/binary/google/GoogleStubDialerRootComponent.java \
Eric Erfanian939cdf02017-08-29 08:49:58 -070056 $(BASE_DIR)/dialer/binary/google/GoogleStubDialerApplication.java \
57
58# * b/62875795
59ifneq ($(wildcard packages/apps/Dialer/java/com/android/voicemail/impl/com/google/internal/communications/voicemailtranscription/v1/VoicemailTranscriptionServiceGrpc.java),)
60$(error Please remove file packages/apps/Dialer/java/com/android/voicemail/impl/com/google/internal/communications/voicemailtranscription/v1/VoicemailTranscriptionServiceGrpc.java )
61endif
Eric Erfanian3bb96412017-06-22 10:19:53 -070062
Eric Erfanian415dffb2017-08-08 14:32:39 -070063EXCLUDE_RESOURCE_DIRECTORIES := \
64 java/com/android/incallui/maps/impl/res \
65
Eric Erfanianccca3152017-02-22 16:32:36 -080066# All Dialers resources.
Eric Erfanian415dffb2017-08-08 14:32:39 -070067RES_DIRS := $(call all-subdir-named-dirs,res,.)
68RES_DIRS := $(filter-out $(EXCLUDE_RESOURCE_DIRECTORIES),$(RES_DIRS))
Eric Erfaniand5e47f62017-03-15 14:41:07 -070069
Eric Erfanian415dffb2017-08-08 14:32:39 -070070EXCLUDE_MANIFESTS := \
71 $(BASE_DIR)/dialer/binary/aosp/testing/AndroidManifest.xml \
72 $(BASE_DIR)/dialer/binary/google/AndroidManifest.xml \
73 $(BASE_DIR)/incallui/calllocation/impl/AndroidManifest.xml \
74 $(BASE_DIR)/incallui/maps/impl/AndroidManifest.xml \
Eric Erfanian9b4d9bc2017-07-25 09:36:19 -070075
Eric Erfanianccca3152017-02-22 16:32:36 -080076# Dialer manifest files to merge.
Eric Erfanian415dffb2017-08-08 14:32:39 -070077DIALER_MANIFEST_FILES := $(call all-named-files-under,AndroidManifest.xml,.)
78DIALER_MANIFEST_FILES := $(filter-out $(EXCLUDE_MANIFESTS),$(DIALER_MANIFEST_FILES))
Chiao Cheng94b10b52012-08-17 16:59:12 -070079
Eric Erfanianccca3152017-02-22 16:32:36 -080080# Merge all manifest files.
81LOCAL_FULL_LIBS_MANIFEST_FILES := \
82 $(addprefix $(LOCAL_PATH)/, $(DIALER_MANIFEST_FILES))
Eric Erfanian1ce79b92017-08-10 08:11:26 -070083
Eric Erfanianccca3152017-02-22 16:32:36 -080084LOCAL_SRC_FILES := $(call all-java-files-under, $(SRC_DIRS))
Eric Erfanian8369df02017-05-03 10:27:13 -070085LOCAL_SRC_FILES += $(call all-proto-files-under, $(SRC_DIRS))
Eric Erfanian939cdf02017-08-29 08:49:58 -070086LOCAL_SRC_FILES := $(filter-out $(EXCLUDE_FILES),$(LOCAL_SRC_FILES))
Eric Erfanian9bdb5032017-08-09 15:37:50 -070087
Eric Erfanian8369df02017-05-03 10:27:13 -070088LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)
89
Eric Erfanian415dffb2017-08-08 14:32:39 -070090LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(RES_DIRS))
91
Eric Erfanian415dffb2017-08-08 14:32:39 -070092EXCLUDE_EXTRA_PACKAGES := \
93 com.android.dialer.binary.aosp.testing \
94 com.android.dialer.binary.google \
95 com.android.incallui.calllocation.impl \
96 com.android.incallui.maps.impl \
Eric Erfanianccca3152017-02-22 16:32:36 -080097
98# We specify each package explicitly to glob resource files.
Eric Erfanian5aaa9492017-08-29 17:33:38 -070099# find . -type f -name "AndroidManifest.xml" | uniq | sort | cut -c 8- | rev | cut -c 21- | rev | sed 's/\//./g' | sed 's/$/ \\/'
100LOCAL_AAPT_FLAGS := \
101 com.android.contacts.common \
102 com.android.dialer.about \
103 com.android.dialer.app \
104 com.android.dialer.app.manifests.activities \
105 com.android.dialer.app.voicemail.error \
106 com.android.dialer.backup \
107 com.android.dialer.binary.aosp.testing \
108 com.android.dialer.binary.google \
109 com.android.dialer.blocking \
110 com.android.dialer.callcomposer \
111 com.android.dialer.callcomposer.camera \
112 com.android.dialer.callcomposer.camera.camerafocus \
113 com.android.dialer.callcomposer.cameraui \
114 com.android.dialer.calldetails \
115 com.android.dialer.calllog.database \
116 com.android.dialer.calllog.ui \
117 com.android.dialer.calllogutils \
118 com.android.dialer.common \
119 com.android.dialer.configprovider \
120 com.android.dialer.contactactions \
121 com.android.dialer.contactphoto \
122 com.android.dialer.contactsfragment \
123 com.android.dialer.databasepopulator \
124 com.android.dialer.dialpadview \
125 com.android.dialer.enrichedcall.simulator \
126 com.android.dialer.interactions \
127 com.android.dialer.lettertile \
128 com.android.dialer.location \
129 com.android.dialer.main.impl \
130 com.android.dialer.notification \
131 com.android.dialer.oem \
132 com.android.dialer.phonenumberutil \
133 com.android.dialer.postcall \
134 com.android.dialer.searchfragment.common \
135 com.android.dialer.searchfragment.cp2 \
136 com.android.dialer.searchfragment.list \
137 com.android.dialer.searchfragment.nearbyplaces \
138 com.android.dialer.searchfragment.remote \
139 com.android.dialershared.bubble \
140 com.android.dialer.shortcuts \
141 com.android.dialer.simulator.impl \
142 com.android.dialer.speeddial \
143 com.android.dialer.theme \
144 com.android.dialer.util \
145 com.android.dialer.voicemail.listui \
146 com.android.dialer.voicemailstatus \
147 com.android.dialer.widget \
148 com.android.incallui \
149 com.android.incallui.answer.impl.affordance \
150 com.android.incallui.answer.impl \
151 com.android.incallui.answer.impl.answermethod \
152 com.android.incallui.answer.impl.hint \
153 com.android.incallui.audioroute \
154 com.android.incallui.autoresizetext \
155 com.android.incallui.calllocation.impl \
156 com.android.incallui.callpending \
157 com.android.incallui.commontheme \
158 com.android.incallui.contactgrid \
159 com.android.incallui.disconnectdialog \
160 com.android.incallui.hold \
161 com.android.incallui.incall.impl \
162 com.android.incallui.maps.impl \
163 com.android.incallui.sessiondata \
164 com.android.incallui.spam \
165 com.android.incallui.speakerbuttonlogic \
166 com.android.incallui.telecomeventui \
167 com.android.incallui.video.impl \
168 com.android.incallui.video.protocol \
169 com.android.voicemail \
170 com.android.voicemail.impl \
171 com.android.voicemail.impl.configui \
172
Eric Erfanian415dffb2017-08-08 14:32:39 -0700173LOCAL_AAPT_FLAGS := $(filter-out $(EXCLUDE_EXTRA_PACKAGES),$(LOCAL_AAPT_FLAGS))
174LOCAL_AAPT_FLAGS := $(addprefix --extra-packages , $(LOCAL_AAPT_FLAGS))
175LOCAL_AAPT_FLAGS += \
Eric Erfanianccca3152017-02-22 16:32:36 -0800176 --auto-add-overlay \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700177 --extra-packages me.leolin.shortcutbadger \
178
Chiao Cheng94b10b52012-08-17 16:59:12 -0700179LOCAL_STATIC_JAVA_LIBRARIES := \
Eric Erfanianccca3152017-02-22 16:32:36 -0800180 android-common \
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700181 android-support-dynamic-animation \
Eric Erfanianccca3152017-02-22 16:32:36 -0800182 com.android.vcard \
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700183 dialer-commons-io-target \
Eric Erfanian90508232017-03-24 09:31:16 -0700184 dialer-dagger2-target \
185 dialer-disklrucache-target \
186 dialer-gifdecoder-target \
187 dialer-glide-target \
Eric Erfanian1ce79b92017-08-10 08:11:26 -0700188 dialer-grpc-all-target \
189 dialer-grpc-context-target \
190 dialer-grpc-core-target \
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700191 dialer-grpc-okhttp-target \
192 dialer-grpc-protobuf-lite-target \
Eric Erfanian1ce79b92017-08-10 08:11:26 -0700193 dialer-grpc-stub-target \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700194 dialer-guava-target \
Eric Erfanian90508232017-03-24 09:31:16 -0700195 dialer-javax-annotation-api-target \
196 dialer-javax-inject-target \
197 dialer-libshortcutbadger-target \
Eric Erfanian8369df02017-05-03 10:27:13 -0700198 dialer-mime4j-core-target \
199 dialer-mime4j-dom-target \
Eric Erfanianccca3152017-02-22 16:32:36 -0800200 jsr305 \
201 libphonenumber \
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700202 volley \
Eric Erfaniand3dafe12017-08-18 08:20:09 -0700203 libbackup \
Chiao Cheng94b10b52012-08-17 16:59:12 -0700204
Alan Viveretteb5870be2017-04-26 11:15:10 -0400205LOCAL_STATIC_ANDROID_LIBRARIES := \
Eric Erfanian415dffb2017-08-08 14:32:39 -0700206 android-support-core-ui \
Alan Viveretteb5870be2017-04-26 11:15:10 -0400207 android-support-design \
208 android-support-transition \
209 android-support-v13 \
210 android-support-v4 \
211 android-support-v7-appcompat \
212 android-support-v7-cardview \
213 android-support-v7-recyclerview \
214
Eric Erfanianccca3152017-02-22 16:32:36 -0800215LOCAL_JAVA_LIBRARIES := \
Eric Erfanian90508232017-03-24 09:31:16 -0700216 dialer-auto-value \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700217 org.apache.http.legacy \
Eric Erfanianccca3152017-02-22 16:32:36 -0800218
219# Libraries needed by the compiler (JACK) to generate code.
220PROCESSOR_LIBRARIES_TARGET := \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700221 dialer-auto-value \
Eric Erfanianccca3152017-02-22 16:32:36 -0800222 dialer-dagger2 \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700223 dialer-dagger2-compiler \
Eric Erfanianccca3152017-02-22 16:32:36 -0800224 dialer-dagger2-producers \
225 dialer-guava \
226 dialer-javax-annotation-api \
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700227 dialer-javax-inject \
Eric Erfanianccca3152017-02-22 16:32:36 -0800228
229# Resolve the jar paths.
230PROCESSOR_JARS := $(call java-lib-deps, $(PROCESSOR_LIBRARIES_TARGET))
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700231# Necessary for annotation processors to work correctly.
Eric Erfanianccca3152017-02-22 16:32:36 -0800232LOCAL_ADDITIONAL_DEPENDENCIES += $(PROCESSOR_JARS)
233
234LOCAL_JACK_FLAGS += --processorpath $(call normalize-path-list,$(PROCESSOR_JARS))
Eric Erfanian90508232017-03-24 09:31:16 -0700235LOCAL_JAVACFLAGS += -processorpath $(call normalize-path-list,$(PROCESSOR_JARS))
Chiao Cheng94b10b52012-08-17 16:59:12 -0700236
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700237
238# Begin Bug: 37077388
Eric Erfanian3bb96412017-06-22 10:19:53 -0700239LOCAL_DX_FLAGS := --multi-dex
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700240LOCAL_JACK_FLAGS := --multi-dex native
241
242LOCAL_PROGUARD_ENABLED := disabled
243ifdef LOCAL_JACK_ENABLED
Eric Erfanian415dffb2017-08-08 14:32:39 -0700244
Eric Erfanian415dffb2017-08-08 14:32:39 -0700245
Eric Erfanian90508232017-03-24 09:31:16 -0700246# Proguard includes
Eric Erfanian5aaa9492017-08-29 17:33:38 -0700247LOCAL_PROGUARD_FLAG_FILES := $(call all-named-files-under,proguard.*flags,$(SRC_DIRS))
Colin Crossf939e092017-04-05 22:13:40 -0700248LOCAL_PROGUARD_ENABLED := custom
249
Colin Crossf939e092017-04-05 22:13:40 -0700250LOCAL_PROGUARD_ENABLED += optimization
251endif
Chiao Cheng94b10b52012-08-17 16:59:12 -0700252
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700253# End Bug: 37077388
254
Ta-wei Yen6640e552017-04-21 15:33:24 -0700255LOCAL_SDK_VERSION := system_current
Eric Erfanianccca3152017-02-22 16:32:36 -0800256LOCAL_MODULE_TAGS := optional
257LOCAL_PACKAGE_NAME := Dialer
258LOCAL_CERTIFICATE := shared
259LOCAL_PRIVILEGED_MODULE := true
Eric Erfanian8369df02017-05-03 10:27:13 -0700260LOCAL_USE_AAPT2 := true
261
262# b/37483961 - Jack Not Compiling Dagger Class Properly
263LOCAL_JACK_ENABLED := javac_frontend
264
Chiao Cheng94b10b52012-08-17 16:59:12 -0700265include $(BUILD_PACKAGE)
266
Eric Erfanianccca3152017-02-22 16:32:36 -0800267# Cleanup local state
268BASE_DIR :=
269SRC_DIRS :=
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700270EXCLUDE_FILES :=
Eric Erfanianccca3152017-02-22 16:32:36 -0800271RES_DIRS :=
272DIALER_MANIFEST_FILES :=
273PROCESSOR_LIBRARIES_TARGET :=
274PROCESSOR_JARS :=
Eric Erfanian415dffb2017-08-08 14:32:39 -0700275EXCLUDE_MANIFESTS :=
276EXCLUDE_EXTRA_PACKAGES :=
Eric Erfanianccca3152017-02-22 16:32:36 -0800277
278# Create references to prebuilt libraries.
279include $(CLEAR_VARS)
280
281LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES := \
Eric Erfanian90508232017-03-24 09:31:16 -0700282 dialer-auto-value:../../../prebuilts/tools/common/m2/repository/com/google/auto/value/auto-value/1.3/auto-value-1.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700283 dialer-dagger2-compiler:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger-compiler/2.7/dagger-compiler-2.7$(COMMON_JAVA_PACKAGE_SUFFIX) \
Eric Erfanian8369df02017-05-03 10:27:13 -0700284 dialer-dagger2:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger/2.7/dagger-2.7$(COMMON_JAVA_PACKAGE_SUFFIX) \
285 dialer-dagger2-producers:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger-producers/2.7/dagger-producers-2.7$(COMMON_JAVA_PACKAGE_SUFFIX) \
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700286 dialer-grpc-all:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
287 dialer-grpc-core:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
288 dialer-grpc-okhttp:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
289 dialer-grpc-protobuf-lite:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/grpc-protobuf-lite-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
290 dialer-grpc-stub:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700291 dialer-guava:../../../prebuilts/tools/common/m2/repository/com/google/guava/guava/20.0/guava-20.0$(COMMON_JAVA_PACKAGE_SUFFIX) \
Eric Erfanian90508232017-03-24 09:31:16 -0700292 dialer-javax-annotation-api:../../../prebuilts/tools/common/m2/repository/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2$(COMMON_JAVA_PACKAGE_SUFFIX) \
293 dialer-javax-inject:../../../prebuilts/tools/common/m2/repository/javax/inject/javax.inject/1/javax.inject-1$(COMMON_JAVA_PACKAGE_SUFFIX)
Eric Erfanianccca3152017-02-22 16:32:36 -0800294
295include $(BUILD_MULTI_PREBUILT)
296
Eric Erfanian90508232017-03-24 09:31:16 -0700297# Enumerate target prebuilts to avoid linker warnings like
298# Dialer (java:sdk) should not link to dialer-guava (java:platform)
299include $(CLEAR_VARS)
300
301LOCAL_MODULE_CLASS := JAVA_LIBRARIES
302LOCAL_MODULE := dialer-guava-target
303LOCAL_SDK_VERSION := current
304LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/com/google/guava/guava/20.0/guava-20.0$(COMMON_JAVA_PACKAGE_SUFFIX)
305LOCAL_UNINSTALLABLE_MODULE := true
306
307include $(BUILD_PREBUILT)
308
309include $(CLEAR_VARS)
310
311LOCAL_MODULE_CLASS := JAVA_LIBRARIES
312LOCAL_MODULE := dialer-dagger2-target
313LOCAL_SDK_VERSION := current
Eric Erfanian8369df02017-05-03 10:27:13 -0700314LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger/2.7/dagger-2.7$(COMMON_JAVA_PACKAGE_SUFFIX)
Eric Erfanian90508232017-03-24 09:31:16 -0700315LOCAL_UNINSTALLABLE_MODULE := true
316
317include $(BUILD_PREBUILT)
318
319include $(CLEAR_VARS)
320
321LOCAL_MODULE_CLASS := JAVA_LIBRARIES
322LOCAL_MODULE := dialer-disklrucache-target
323LOCAL_SDK_VERSION := current
Lujiang Xuec0f306f2017-05-25 09:10:58 -0700324LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/disklrucache/SNAPSHOT/disklrucache-SNAPSHOT$(COMMON_JAVA_PACKAGE_SUFFIX)
Eric Erfanian90508232017-03-24 09:31:16 -0700325LOCAL_UNINSTALLABLE_MODULE := true
326
327include $(BUILD_PREBUILT)
328
329include $(CLEAR_VARS)
330
331LOCAL_MODULE_CLASS := JAVA_LIBRARIES
332LOCAL_MODULE := dialer-gifdecoder-target
333LOCAL_SDK_VERSION := current
Lujiang Xuec0f306f2017-05-25 09:10:58 -0700334LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/gifdecoder/SNAPSHOT/gifdecoder-SNAPSHOT$(COMMON_JAVA_PACKAGE_SUFFIX)
Eric Erfanian90508232017-03-24 09:31:16 -0700335LOCAL_UNINSTALLABLE_MODULE := true
336
337include $(BUILD_PREBUILT)
338
339include $(CLEAR_VARS)
340
341LOCAL_MODULE_CLASS := JAVA_LIBRARIES
342LOCAL_MODULE := dialer-glide-target
343LOCAL_SDK_VERSION := current
Lujiang Xuec0f306f2017-05-25 09:10:58 -0700344LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/glide/SNAPSHOT/glide-SNAPSHOT$(COMMON_JAVA_PACKAGE_SUFFIX)
Eric Erfanian90508232017-03-24 09:31:16 -0700345LOCAL_UNINSTALLABLE_MODULE := true
346
347include $(BUILD_PREBUILT)
348
349include $(CLEAR_VARS)
350
351LOCAL_MODULE_CLASS := JAVA_LIBRARIES
352LOCAL_MODULE := dialer-javax-annotation-api-target
353LOCAL_SDK_VERSION := current
354LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2$(COMMON_JAVA_PACKAGE_SUFFIX)
355LOCAL_UNINSTALLABLE_MODULE := true
356
357include $(BUILD_PREBUILT)
358
359include $(CLEAR_VARS)
360
361LOCAL_MODULE_CLASS := JAVA_LIBRARIES
362LOCAL_MODULE := dialer-libshortcutbadger-target
363LOCAL_SDK_VERSION := current
364LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/me/leolin/ShortcutBadger/1.1.13/ShortcutBadger-1.1.13$(COMMON_JAVA_PACKAGE_SUFFIX)
365LOCAL_UNINSTALLABLE_MODULE := true
366
367include $(BUILD_PREBUILT)
368
369include $(CLEAR_VARS)
370
371LOCAL_MODULE_CLASS := JAVA_LIBRARIES
372LOCAL_MODULE := dialer-javax-inject-target
373LOCAL_SDK_VERSION := current
374LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/javax/inject/javax.inject/1/javax.inject-1$(COMMON_JAVA_PACKAGE_SUFFIX)
375LOCAL_UNINSTALLABLE_MODULE := true
376
377include $(BUILD_PREBUILT)
378
Eric Erfanianccca3152017-02-22 16:32:36 -0800379include $(CLEAR_VARS)
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700380
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700381LOCAL_MODULE_CLASS := JAVA_LIBRARIES
382LOCAL_MODULE := dialer-commons-io-target
383LOCAL_SDK_VERSION := current
384LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/commons-io/commons-io/2.4/commons-io-2.4$(COMMON_JAVA_PACKAGE_SUFFIX)
385LOCAL_UNINSTALLABLE_MODULE := true
386
387include $(BUILD_PREBUILT)
388
389include $(CLEAR_VARS)
Eric Erfanian8369df02017-05-03 10:27:13 -0700390
391LOCAL_MODULE_CLASS := JAVA_LIBRARIES
392LOCAL_MODULE := dialer-mime4j-core-target
393LOCAL_SDK_VERSION := current
394LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/org/apache/james/apache-mime4j-core/0.7.2/apache-mime4j-core-0.7.2$(COMMON_JAVA_PACKAGE_SUFFIX)
395LOCAL_UNINSTALLABLE_MODULE := true
396
397include $(BUILD_PREBUILT)
398
399include $(CLEAR_VARS)
400
401LOCAL_MODULE_CLASS := JAVA_LIBRARIES
402LOCAL_MODULE := dialer-mime4j-dom-target
403LOCAL_SDK_VERSION := current
404LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/org/apache/james/apache-mime4j-dom/0.7.2/apache-mime4j-dom-0.7.2$(COMMON_JAVA_PACKAGE_SUFFIX)
405LOCAL_UNINSTALLABLE_MODULE := true
406
407include $(BUILD_PREBUILT)
408
Ta-wei Yen6af9c022017-05-25 14:57:51 -0700409include $(CLEAR_VARS)
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700410
411LOCAL_MODULE_CLASS := JAVA_LIBRARIES
412LOCAL_MODULE := dialer-grpc-core-target
413LOCAL_SDK_VERSION := current
414LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
415LOCAL_UNINSTALLABLE_MODULE := true
416
417include $(BUILD_PREBUILT)
418
419include $(CLEAR_VARS)
420
421LOCAL_MODULE_CLASS := JAVA_LIBRARIES
422LOCAL_MODULE := dialer-grpc-okhttp-target
423LOCAL_SDK_VERSION := current
424LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
425LOCAL_UNINSTALLABLE_MODULE := true
426
427include $(BUILD_PREBUILT)
428
429include $(CLEAR_VARS)
430
431LOCAL_MODULE_CLASS := JAVA_LIBRARIES
432LOCAL_MODULE := dialer-grpc-protobuf-lite-target
433LOCAL_SDK_VERSION := current
434LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-protobuf-lite/1.0.3/grpc-protobuf-lite-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
435LOCAL_UNINSTALLABLE_MODULE := true
436
437include $(BUILD_PREBUILT)
438
439include $(CLEAR_VARS)
440
441LOCAL_MODULE_CLASS := JAVA_LIBRARIES
442LOCAL_MODULE := dialer-grpc-stub-target
443LOCAL_SDK_VERSION := current
444LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
445LOCAL_UNINSTALLABLE_MODULE := true
446
447include $(BUILD_PREBUILT)
448
449include $(CLEAR_VARS)
450
451LOCAL_MODULE_CLASS := JAVA_LIBRARIES
452LOCAL_MODULE := dialer-grpc-all-target
453LOCAL_SDK_VERSION := current
454LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
455LOCAL_UNINSTALLABLE_MODULE := true
456
457include $(BUILD_PREBUILT)
458
459include $(CLEAR_VARS)
Eric Erfanian3bb96412017-06-22 10:19:53 -0700460
461LOCAL_MODULE_CLASS := JAVA_LIBRARIES
462LOCAL_MODULE := dialer-grpc-context-target
463LOCAL_SDK_VERSION := current
464LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-context/1.0.3/grpc-context-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
465LOCAL_UNINSTALLABLE_MODULE := true
466
467include $(BUILD_PREBUILT)
468
wangqi69674662017-06-29 13:14:51 -0700469include $(CLEAR_VARS)