blob: 140b41fe8df54b57520ed093236c5bcce03f95fb [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.backup.api_key. This should be added to
3# the manifest in the top level directory.
4# * removed com.google.android.geo.API_KEY key. This should be added to
5# the manifest files in java/com/android/incallui/calllocation/impl/
6# and /java/com/android/incallui/maps/impl/
Eric Erfanian3bb96412017-06-22 10:19:53 -07007# * b/62417801 modify translation string naming convention:
8# $ find . -type d | grep 262 | rename 's/(values)\-([a-zA-Z\+\-]+)\-(mcc262-mnc01)/$1-$3-$2/'
Eric Erfanian2f1c7582017-06-19 11:26:01 -07009# * b/62343966 include manually generated GRPC service class:
10# $ 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 \
11# --grpc-java_out=lite:"packages/apps/Dialer/java/com/android/voicemail/impl/" \
12# --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"
Eric Erfanian3bb96412017-06-22 10:19:53 -070013# * b/37077388 temporarily disable proguard with javac
Chiao Cheng94b10b52012-08-17 16:59:12 -070014LOCAL_PATH:= $(call my-dir)
15include $(CLEAR_VARS)
16
Eric Erfanianccca3152017-02-22 16:32:36 -080017# The base directory for Dialer sources.
18BASE_DIR := java/com/android
Jay Shrauner0f68a712014-07-16 16:13:57 -070019
Eric Erfanianccca3152017-02-22 16:32:36 -080020# Primary dialer module sources.
21SRC_DIRS := \
22 $(BASE_DIR)/contacts/common \
23 $(BASE_DIR)/dialer \
Eric Erfanian2f1c7582017-06-19 11:26:01 -070024 $(BASE_DIR)/dialershared \
Eric Erfanianccca3152017-02-22 16:32:36 -080025 $(BASE_DIR)/incallui \
Eric Erfaniand5e47f62017-03-15 14:41:07 -070026 $(BASE_DIR)/voicemail
27
28# Exclude files incompatible with AOSP.
29EXCLUDE_FILES := \
Eric Erfaniand5e47f62017-03-15 14:41:07 -070030 $(BASE_DIR)/incallui/calllocation/impl/AuthException.java \
31 $(BASE_DIR)/incallui/calllocation/impl/CallLocationImpl.java \
32 $(BASE_DIR)/incallui/calllocation/impl/CallLocationModule.java \
33 $(BASE_DIR)/incallui/calllocation/impl/DownloadMapImageTask.java \
34 $(BASE_DIR)/incallui/calllocation/impl/GoogleLocationSettingHelper.java \
35 $(BASE_DIR)/incallui/calllocation/impl/HttpFetcher.java \
36 $(BASE_DIR)/incallui/calllocation/impl/LocationFragment.java \
37 $(BASE_DIR)/incallui/calllocation/impl/LocationHelper.java \
38 $(BASE_DIR)/incallui/calllocation/impl/LocationPresenter.java \
39 $(BASE_DIR)/incallui/calllocation/impl/LocationUrlBuilder.java \
40 $(BASE_DIR)/incallui/calllocation/impl/ReverseGeocodeTask.java \
41 $(BASE_DIR)/incallui/calllocation/impl/TrafficStatsTags.java \
42 $(BASE_DIR)/incallui/maps/impl/MapsImpl.java \
43 $(BASE_DIR)/incallui/maps/impl/MapsModule.java \
Eric Erfanian2f1c7582017-06-19 11:26:01 -070044 $(BASE_DIR)/incallui/maps/impl/StaticMapFragment.java \
Chiao Cheng94b10b52012-08-17 16:59:12 -070045
Paul Duffin922b1082017-05-05 15:05:47 +010046# Exclude testing only class, not used anywhere here
47EXCLUDE_FILES += \
48 $(BASE_DIR)/contacts/common/format/testing/SpannedTestUtils.java
49
Eric Erfanian3bb96412017-06-22 10:19:53 -070050# Exclude build variants for now
51EXCLUDE_FILES += \
52 $(BASE_DIR)/dialer/buildtype/bugfood/BuildTypeAccessorImpl.java \
53 $(BASE_DIR)/dialer/buildtype/dogfood/BuildTypeAccessorImpl.java \
54 $(BASE_DIR)/dialer/buildtype/fishfood/BuildTypeAccessorImpl.java \
55 $(BASE_DIR)/dialer/buildtype/test/BuildTypeAccessorImpl.java \
56 $(BASE_DIR)/dialer/constants/googledialer/ConstantsImpl.java \
57 $(BASE_DIR)/dialer/binary/google/GoogleStubDialerRootComponent.java \
58 $(BASE_DIR)/dialer/binary/google/GoogleStubDialerApplication.java
59
Eric Erfanian415dffb2017-08-08 14:32:39 -070060EXCLUDE_RESOURCE_DIRECTORIES := \
61 java/com/android/incallui/maps/impl/res \
62
Eric Erfanianccca3152017-02-22 16:32:36 -080063# All Dialers resources.
Eric Erfanian415dffb2017-08-08 14:32:39 -070064RES_DIRS := $(call all-subdir-named-dirs,res,.)
65RES_DIRS := $(filter-out $(EXCLUDE_RESOURCE_DIRECTORIES),$(RES_DIRS))
Eric Erfaniand5e47f62017-03-15 14:41:07 -070066
Eric Erfanian415dffb2017-08-08 14:32:39 -070067EXCLUDE_MANIFESTS := \
68 $(BASE_DIR)/dialer/binary/aosp/testing/AndroidManifest.xml \
69 $(BASE_DIR)/dialer/binary/google/AndroidManifest.xml \
70 $(BASE_DIR)/incallui/calllocation/impl/AndroidManifest.xml \
71 $(BASE_DIR)/incallui/maps/impl/AndroidManifest.xml \
Eric Erfanian9b4d9bc2017-07-25 09:36:19 -070072
Eric Erfanianccca3152017-02-22 16:32:36 -080073# Dialer manifest files to merge.
Eric Erfanian415dffb2017-08-08 14:32:39 -070074DIALER_MANIFEST_FILES := $(call all-named-files-under,AndroidManifest.xml,.)
75DIALER_MANIFEST_FILES := $(filter-out $(EXCLUDE_MANIFESTS),$(DIALER_MANIFEST_FILES))
Chiao Cheng94b10b52012-08-17 16:59:12 -070076
Eric Erfanianccca3152017-02-22 16:32:36 -080077# Merge all manifest files.
78LOCAL_FULL_LIBS_MANIFEST_FILES := \
79 $(addprefix $(LOCAL_PATH)/, $(DIALER_MANIFEST_FILES))
80LOCAL_SRC_FILES := $(call all-java-files-under, $(SRC_DIRS))
Eric Erfaniand5e47f62017-03-15 14:41:07 -070081LOCAL_SRC_FILES := $(filter-out $(EXCLUDE_FILES),$(LOCAL_SRC_FILES))
Eric Erfanian8369df02017-05-03 10:27:13 -070082LOCAL_SRC_FILES += $(call all-proto-files-under, $(SRC_DIRS))
Eric Erfanian9bdb5032017-08-09 15:37:50 -070083
84# Backup Library
85BACKUP_LIB_SRC_DIR := ../../../external/libbackup/src/com/google/android/libraries/backup
86EXCLUDE_BACKUP_LIB_SRCS := $(call all-java-files-under, $(BACKUP_LIB_SRC_DIR)/shadow)
87LOCAL_SRC_FILES += $(call all-java-files-under, $(BACKUP_LIB_SRC_DIR))
88LOCAL_SRC_FILES := $(filter-out $(EXCLUDE_BACKUP_LIB_SRCS),$(LOCAL_SRC_FILES))
89
Eric Erfanian8369df02017-05-03 10:27:13 -070090LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)
91
Eric Erfanian415dffb2017-08-08 14:32:39 -070092LOCAL_RESOURCE_DIR := $(addprefix $(LOCAL_PATH)/, $(RES_DIRS))
93
94define all-dialer-manifest-extra-packages
95 $(shell cd $(LOCAL_PATH) ; \
96 find . -type f -name "AndroidManifest.xml" | uniq | sort | cut -c 8- | rev | cut -c 21- | rev | sed 's/\//./g')
97endef
98
99EXCLUDE_EXTRA_PACKAGES := \
100 com.android.dialer.binary.aosp.testing \
101 com.android.dialer.binary.google \
102 com.android.incallui.calllocation.impl \
103 com.android.incallui.maps.impl \
Eric Erfanianccca3152017-02-22 16:32:36 -0800104
105# We specify each package explicitly to glob resource files.
Eric Erfanian415dffb2017-08-08 14:32:39 -0700106LOCAL_AAPT_FLAGS := $(call all-dialer-manifest-extra-packages)
107LOCAL_AAPT_FLAGS := $(filter-out $(EXCLUDE_EXTRA_PACKAGES),$(LOCAL_AAPT_FLAGS))
108LOCAL_AAPT_FLAGS := $(addprefix --extra-packages , $(LOCAL_AAPT_FLAGS))
109LOCAL_AAPT_FLAGS += \
Eric Erfanianccca3152017-02-22 16:32:36 -0800110 --auto-add-overlay \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700111 --extra-packages me.leolin.shortcutbadger \
112
Chiao Cheng94b10b52012-08-17 16:59:12 -0700113LOCAL_STATIC_JAVA_LIBRARIES := \
Eric Erfanianccca3152017-02-22 16:32:36 -0800114 android-common \
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700115 android-support-dynamic-animation \
Eric Erfanianccca3152017-02-22 16:32:36 -0800116 com.android.vcard \
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700117 dialer-commons-io-target \
Eric Erfanian90508232017-03-24 09:31:16 -0700118 dialer-dagger2-target \
119 dialer-disklrucache-target \
120 dialer-gifdecoder-target \
121 dialer-glide-target \
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700122 dialer-grpc-all-target \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700123 dialer-grpc-context-target \
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700124 dialer-grpc-core-target \
125 dialer-grpc-okhttp-target \
126 dialer-grpc-protobuf-lite-target \
127 dialer-grpc-stub-target \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700128 dialer-guava-target \
Eric Erfanian90508232017-03-24 09:31:16 -0700129 dialer-javax-annotation-api-target \
130 dialer-javax-inject-target \
131 dialer-libshortcutbadger-target \
Eric Erfanian8369df02017-05-03 10:27:13 -0700132 dialer-mime4j-core-target \
133 dialer-mime4j-dom-target \
Eric Erfanianccca3152017-02-22 16:32:36 -0800134 jsr305 \
135 libphonenumber \
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700136 volley \
Chiao Cheng94b10b52012-08-17 16:59:12 -0700137
Alan Viveretteb5870be2017-04-26 11:15:10 -0400138LOCAL_STATIC_ANDROID_LIBRARIES := \
Eric Erfanian415dffb2017-08-08 14:32:39 -0700139 android-support-core-ui \
Alan Viveretteb5870be2017-04-26 11:15:10 -0400140 android-support-design \
141 android-support-transition \
142 android-support-v13 \
143 android-support-v4 \
144 android-support-v7-appcompat \
145 android-support-v7-cardview \
146 android-support-v7-recyclerview \
147
Eric Erfanianccca3152017-02-22 16:32:36 -0800148LOCAL_JAVA_LIBRARIES := \
Eric Erfanian90508232017-03-24 09:31:16 -0700149 dialer-auto-value \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700150 org.apache.http.legacy \
Eric Erfanianccca3152017-02-22 16:32:36 -0800151
152# Libraries needed by the compiler (JACK) to generate code.
153PROCESSOR_LIBRARIES_TARGET := \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700154 dialer-auto-value \
Eric Erfanianccca3152017-02-22 16:32:36 -0800155 dialer-dagger2 \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700156 dialer-dagger2-compiler \
Eric Erfanianccca3152017-02-22 16:32:36 -0800157 dialer-dagger2-producers \
158 dialer-guava \
159 dialer-javax-annotation-api \
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700160 dialer-javax-inject \
Eric Erfanianccca3152017-02-22 16:32:36 -0800161
162# Resolve the jar paths.
163PROCESSOR_JARS := $(call java-lib-deps, $(PROCESSOR_LIBRARIES_TARGET))
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700164# Necessary for annotation processors to work correctly.
Eric Erfanianccca3152017-02-22 16:32:36 -0800165LOCAL_ADDITIONAL_DEPENDENCIES += $(PROCESSOR_JARS)
166
167LOCAL_JACK_FLAGS += --processorpath $(call normalize-path-list,$(PROCESSOR_JARS))
Eric Erfanian90508232017-03-24 09:31:16 -0700168LOCAL_JAVACFLAGS += -processorpath $(call normalize-path-list,$(PROCESSOR_JARS))
Chiao Cheng94b10b52012-08-17 16:59:12 -0700169
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700170
171# Begin Bug: 37077388
Eric Erfanian3bb96412017-06-22 10:19:53 -0700172LOCAL_DX_FLAGS := --multi-dex
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700173LOCAL_JACK_FLAGS := --multi-dex native
174
175LOCAL_PROGUARD_ENABLED := disabled
176ifdef LOCAL_JACK_ENABLED
Eric Erfanian415dffb2017-08-08 14:32:39 -0700177
178define all-dialer-proguard-flags
179 $(shell cd $(LOCAL_PATH) ; \
180 find . -type f -name "proguard.*flags" | uniq | sort | cut -c 3-)
181endef
182
Eric Erfanian90508232017-03-24 09:31:16 -0700183# Proguard includes
Eric Erfanian415dffb2017-08-08 14:32:39 -0700184LOCAL_PROGUARD_FLAG_FILES := $(call all-dialer-proguard-flags)
Colin Crossf939e092017-04-05 22:13:40 -0700185LOCAL_PROGUARD_ENABLED := custom
186
Colin Crossf939e092017-04-05 22:13:40 -0700187LOCAL_PROGUARD_ENABLED += optimization
188endif
Chiao Cheng94b10b52012-08-17 16:59:12 -0700189
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700190# End Bug: 37077388
191
Ta-wei Yen6640e552017-04-21 15:33:24 -0700192LOCAL_SDK_VERSION := system_current
Eric Erfanianccca3152017-02-22 16:32:36 -0800193LOCAL_MODULE_TAGS := optional
194LOCAL_PACKAGE_NAME := Dialer
195LOCAL_CERTIFICATE := shared
196LOCAL_PRIVILEGED_MODULE := true
Eric Erfanian8369df02017-05-03 10:27:13 -0700197LOCAL_USE_AAPT2 := true
198
199# b/37483961 - Jack Not Compiling Dagger Class Properly
200LOCAL_JACK_ENABLED := javac_frontend
201
Chiao Cheng94b10b52012-08-17 16:59:12 -0700202include $(BUILD_PACKAGE)
203
Eric Erfanianccca3152017-02-22 16:32:36 -0800204# Cleanup local state
205BASE_DIR :=
206SRC_DIRS :=
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700207EXCLUDE_FILES :=
Eric Erfanianccca3152017-02-22 16:32:36 -0800208RES_DIRS :=
209DIALER_MANIFEST_FILES :=
210PROCESSOR_LIBRARIES_TARGET :=
211PROCESSOR_JARS :=
Eric Erfanian415dffb2017-08-08 14:32:39 -0700212EXCLUDE_MANIFESTS :=
213EXCLUDE_EXTRA_PACKAGES :=
Eric Erfanian9bdb5032017-08-09 15:37:50 -0700214BACKUP_LIB_SRC_DIR :=
215EXCLUDE_BACKUP_LIB_SRCS :=
Eric Erfanianccca3152017-02-22 16:32:36 -0800216
217# Create references to prebuilt libraries.
218include $(CLEAR_VARS)
219
220LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES := \
Eric Erfanian90508232017-03-24 09:31:16 -0700221 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 -0700222 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 -0700223 dialer-dagger2:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger/2.7/dagger-2.7$(COMMON_JAVA_PACKAGE_SUFFIX) \
224 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 -0700225 dialer-grpc-all:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
226 dialer-grpc-core:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
227 dialer-grpc-okhttp:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
228 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) \
229 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 -0700230 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 -0700231 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) \
232 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 -0800233
234include $(BUILD_MULTI_PREBUILT)
235
Eric Erfanian90508232017-03-24 09:31:16 -0700236# Enumerate target prebuilts to avoid linker warnings like
237# Dialer (java:sdk) should not link to dialer-guava (java:platform)
238include $(CLEAR_VARS)
239
240LOCAL_MODULE_CLASS := JAVA_LIBRARIES
241LOCAL_MODULE := dialer-guava-target
242LOCAL_SDK_VERSION := current
243LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/com/google/guava/guava/20.0/guava-20.0$(COMMON_JAVA_PACKAGE_SUFFIX)
244LOCAL_UNINSTALLABLE_MODULE := true
245
246include $(BUILD_PREBUILT)
247
248include $(CLEAR_VARS)
249
250LOCAL_MODULE_CLASS := JAVA_LIBRARIES
251LOCAL_MODULE := dialer-dagger2-target
252LOCAL_SDK_VERSION := current
Eric Erfanian8369df02017-05-03 10:27:13 -0700253LOCAL_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 -0700254LOCAL_UNINSTALLABLE_MODULE := true
255
256include $(BUILD_PREBUILT)
257
258include $(CLEAR_VARS)
259
260LOCAL_MODULE_CLASS := JAVA_LIBRARIES
261LOCAL_MODULE := dialer-disklrucache-target
262LOCAL_SDK_VERSION := current
Lujiang Xuec0f306f2017-05-25 09:10:58 -0700263LOCAL_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 -0700264LOCAL_UNINSTALLABLE_MODULE := true
265
266include $(BUILD_PREBUILT)
267
268include $(CLEAR_VARS)
269
270LOCAL_MODULE_CLASS := JAVA_LIBRARIES
271LOCAL_MODULE := dialer-gifdecoder-target
272LOCAL_SDK_VERSION := current
Lujiang Xuec0f306f2017-05-25 09:10:58 -0700273LOCAL_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 -0700274LOCAL_UNINSTALLABLE_MODULE := true
275
276include $(BUILD_PREBUILT)
277
278include $(CLEAR_VARS)
279
280LOCAL_MODULE_CLASS := JAVA_LIBRARIES
281LOCAL_MODULE := dialer-glide-target
282LOCAL_SDK_VERSION := current
Lujiang Xuec0f306f2017-05-25 09:10:58 -0700283LOCAL_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 -0700284LOCAL_UNINSTALLABLE_MODULE := true
285
286include $(BUILD_PREBUILT)
287
288include $(CLEAR_VARS)
289
290LOCAL_MODULE_CLASS := JAVA_LIBRARIES
291LOCAL_MODULE := dialer-javax-annotation-api-target
292LOCAL_SDK_VERSION := current
293LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2$(COMMON_JAVA_PACKAGE_SUFFIX)
294LOCAL_UNINSTALLABLE_MODULE := true
295
296include $(BUILD_PREBUILT)
297
298include $(CLEAR_VARS)
299
300LOCAL_MODULE_CLASS := JAVA_LIBRARIES
301LOCAL_MODULE := dialer-libshortcutbadger-target
302LOCAL_SDK_VERSION := current
303LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/me/leolin/ShortcutBadger/1.1.13/ShortcutBadger-1.1.13$(COMMON_JAVA_PACKAGE_SUFFIX)
304LOCAL_UNINSTALLABLE_MODULE := true
305
306include $(BUILD_PREBUILT)
307
308include $(CLEAR_VARS)
309
310LOCAL_MODULE_CLASS := JAVA_LIBRARIES
311LOCAL_MODULE := dialer-javax-inject-target
312LOCAL_SDK_VERSION := current
313LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/javax/inject/javax.inject/1/javax.inject-1$(COMMON_JAVA_PACKAGE_SUFFIX)
314LOCAL_UNINSTALLABLE_MODULE := true
315
316include $(BUILD_PREBUILT)
317
Eric Erfanianccca3152017-02-22 16:32:36 -0800318include $(CLEAR_VARS)
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700319
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700320LOCAL_MODULE_CLASS := JAVA_LIBRARIES
321LOCAL_MODULE := dialer-commons-io-target
322LOCAL_SDK_VERSION := current
323LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/commons-io/commons-io/2.4/commons-io-2.4$(COMMON_JAVA_PACKAGE_SUFFIX)
324LOCAL_UNINSTALLABLE_MODULE := true
325
326include $(BUILD_PREBUILT)
327
328include $(CLEAR_VARS)
Eric Erfanian8369df02017-05-03 10:27:13 -0700329
330LOCAL_MODULE_CLASS := JAVA_LIBRARIES
331LOCAL_MODULE := dialer-mime4j-core-target
332LOCAL_SDK_VERSION := current
333LOCAL_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)
334LOCAL_UNINSTALLABLE_MODULE := true
335
336include $(BUILD_PREBUILT)
337
338include $(CLEAR_VARS)
339
340LOCAL_MODULE_CLASS := JAVA_LIBRARIES
341LOCAL_MODULE := dialer-mime4j-dom-target
342LOCAL_SDK_VERSION := current
343LOCAL_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)
344LOCAL_UNINSTALLABLE_MODULE := true
345
346include $(BUILD_PREBUILT)
347
Ta-wei Yen6af9c022017-05-25 14:57:51 -0700348include $(CLEAR_VARS)
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700349
350LOCAL_MODULE_CLASS := JAVA_LIBRARIES
351LOCAL_MODULE := dialer-grpc-core-target
352LOCAL_SDK_VERSION := current
353LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
354LOCAL_UNINSTALLABLE_MODULE := true
355
356include $(BUILD_PREBUILT)
357
358include $(CLEAR_VARS)
359
360LOCAL_MODULE_CLASS := JAVA_LIBRARIES
361LOCAL_MODULE := dialer-grpc-okhttp-target
362LOCAL_SDK_VERSION := current
363LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
364LOCAL_UNINSTALLABLE_MODULE := true
365
366include $(BUILD_PREBUILT)
367
368include $(CLEAR_VARS)
369
370LOCAL_MODULE_CLASS := JAVA_LIBRARIES
371LOCAL_MODULE := dialer-grpc-protobuf-lite-target
372LOCAL_SDK_VERSION := current
373LOCAL_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)
374LOCAL_UNINSTALLABLE_MODULE := true
375
376include $(BUILD_PREBUILT)
377
378include $(CLEAR_VARS)
379
380LOCAL_MODULE_CLASS := JAVA_LIBRARIES
381LOCAL_MODULE := dialer-grpc-stub-target
382LOCAL_SDK_VERSION := current
383LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
384LOCAL_UNINSTALLABLE_MODULE := true
385
386include $(BUILD_PREBUILT)
387
388include $(CLEAR_VARS)
389
390LOCAL_MODULE_CLASS := JAVA_LIBRARIES
391LOCAL_MODULE := dialer-grpc-all-target
392LOCAL_SDK_VERSION := current
393LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
394LOCAL_UNINSTALLABLE_MODULE := true
395
396include $(BUILD_PREBUILT)
397
398include $(CLEAR_VARS)
Eric Erfanian3bb96412017-06-22 10:19:53 -0700399
400LOCAL_MODULE_CLASS := JAVA_LIBRARIES
401LOCAL_MODULE := dialer-grpc-context-target
402LOCAL_SDK_VERSION := current
403LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-context/1.0.3/grpc-context-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
404LOCAL_UNINSTALLABLE_MODULE := true
405
406include $(BUILD_PREBUILT)
407
wangqi69674662017-06-29 13:14:51 -0700408include $(CLEAR_VARS)