blob: 5eb098d7c3e01219a36a516a516f8f144af3b90d [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
92define all-dialer-manifest-extra-packages
93 $(shell cd $(LOCAL_PATH) ; \
94 find . -type f -name "AndroidManifest.xml" | uniq | sort | cut -c 8- | rev | cut -c 21- | rev | sed 's/\//./g')
95endef
96
97EXCLUDE_EXTRA_PACKAGES := \
98 com.android.dialer.binary.aosp.testing \
99 com.android.dialer.binary.google \
100 com.android.incallui.calllocation.impl \
101 com.android.incallui.maps.impl \
Eric Erfanianccca3152017-02-22 16:32:36 -0800102
103# We specify each package explicitly to glob resource files.
Eric Erfanian415dffb2017-08-08 14:32:39 -0700104LOCAL_AAPT_FLAGS := $(call all-dialer-manifest-extra-packages)
105LOCAL_AAPT_FLAGS := $(filter-out $(EXCLUDE_EXTRA_PACKAGES),$(LOCAL_AAPT_FLAGS))
106LOCAL_AAPT_FLAGS := $(addprefix --extra-packages , $(LOCAL_AAPT_FLAGS))
107LOCAL_AAPT_FLAGS += \
Eric Erfanianccca3152017-02-22 16:32:36 -0800108 --auto-add-overlay \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700109 --extra-packages me.leolin.shortcutbadger \
110
Chiao Cheng94b10b52012-08-17 16:59:12 -0700111LOCAL_STATIC_JAVA_LIBRARIES := \
Eric Erfanianccca3152017-02-22 16:32:36 -0800112 android-common \
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700113 android-support-dynamic-animation \
Eric Erfanianccca3152017-02-22 16:32:36 -0800114 com.android.vcard \
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700115 dialer-commons-io-target \
Eric Erfanian90508232017-03-24 09:31:16 -0700116 dialer-dagger2-target \
117 dialer-disklrucache-target \
118 dialer-gifdecoder-target \
119 dialer-glide-target \
Eric Erfanian1ce79b92017-08-10 08:11:26 -0700120 dialer-grpc-all-target \
121 dialer-grpc-context-target \
122 dialer-grpc-core-target \
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700123 dialer-grpc-okhttp-target \
124 dialer-grpc-protobuf-lite-target \
Eric Erfanian1ce79b92017-08-10 08:11:26 -0700125 dialer-grpc-stub-target \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700126 dialer-guava-target \
Eric Erfanian90508232017-03-24 09:31:16 -0700127 dialer-javax-annotation-api-target \
128 dialer-javax-inject-target \
129 dialer-libshortcutbadger-target \
Eric Erfanian8369df02017-05-03 10:27:13 -0700130 dialer-mime4j-core-target \
131 dialer-mime4j-dom-target \
Eric Erfanianccca3152017-02-22 16:32:36 -0800132 jsr305 \
133 libphonenumber \
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700134 volley \
Eric Erfaniand3dafe12017-08-18 08:20:09 -0700135 libbackup \
Chiao Cheng94b10b52012-08-17 16:59:12 -0700136
Alan Viveretteb5870be2017-04-26 11:15:10 -0400137LOCAL_STATIC_ANDROID_LIBRARIES := \
Eric Erfanian415dffb2017-08-08 14:32:39 -0700138 android-support-core-ui \
Alan Viveretteb5870be2017-04-26 11:15:10 -0400139 android-support-design \
140 android-support-transition \
141 android-support-v13 \
142 android-support-v4 \
143 android-support-v7-appcompat \
144 android-support-v7-cardview \
145 android-support-v7-recyclerview \
146
Eric Erfanianccca3152017-02-22 16:32:36 -0800147LOCAL_JAVA_LIBRARIES := \
Eric Erfanian90508232017-03-24 09:31:16 -0700148 dialer-auto-value \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700149 org.apache.http.legacy \
Eric Erfanianccca3152017-02-22 16:32:36 -0800150
151# Libraries needed by the compiler (JACK) to generate code.
152PROCESSOR_LIBRARIES_TARGET := \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700153 dialer-auto-value \
Eric Erfanianccca3152017-02-22 16:32:36 -0800154 dialer-dagger2 \
Eric Erfanian3bb96412017-06-22 10:19:53 -0700155 dialer-dagger2-compiler \
Eric Erfanianccca3152017-02-22 16:32:36 -0800156 dialer-dagger2-producers \
157 dialer-guava \
158 dialer-javax-annotation-api \
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700159 dialer-javax-inject \
Eric Erfanianccca3152017-02-22 16:32:36 -0800160
161# Resolve the jar paths.
162PROCESSOR_JARS := $(call java-lib-deps, $(PROCESSOR_LIBRARIES_TARGET))
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700163# Necessary for annotation processors to work correctly.
Eric Erfanianccca3152017-02-22 16:32:36 -0800164LOCAL_ADDITIONAL_DEPENDENCIES += $(PROCESSOR_JARS)
165
166LOCAL_JACK_FLAGS += --processorpath $(call normalize-path-list,$(PROCESSOR_JARS))
Eric Erfanian90508232017-03-24 09:31:16 -0700167LOCAL_JAVACFLAGS += -processorpath $(call normalize-path-list,$(PROCESSOR_JARS))
Chiao Cheng94b10b52012-08-17 16:59:12 -0700168
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700169
170# Begin Bug: 37077388
Eric Erfanian3bb96412017-06-22 10:19:53 -0700171LOCAL_DX_FLAGS := --multi-dex
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700172LOCAL_JACK_FLAGS := --multi-dex native
173
174LOCAL_PROGUARD_ENABLED := disabled
175ifdef LOCAL_JACK_ENABLED
Eric Erfanian415dffb2017-08-08 14:32:39 -0700176
177define all-dialer-proguard-flags
178 $(shell cd $(LOCAL_PATH) ; \
179 find . -type f -name "proguard.*flags" | uniq | sort | cut -c 3-)
180endef
181
Eric Erfanian90508232017-03-24 09:31:16 -0700182# Proguard includes
Eric Erfanian415dffb2017-08-08 14:32:39 -0700183LOCAL_PROGUARD_FLAG_FILES := $(call all-dialer-proguard-flags)
Colin Crossf939e092017-04-05 22:13:40 -0700184LOCAL_PROGUARD_ENABLED := custom
185
Colin Crossf939e092017-04-05 22:13:40 -0700186LOCAL_PROGUARD_ENABLED += optimization
187endif
Chiao Cheng94b10b52012-08-17 16:59:12 -0700188
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700189# End Bug: 37077388
190
Ta-wei Yen6640e552017-04-21 15:33:24 -0700191LOCAL_SDK_VERSION := system_current
Eric Erfanianccca3152017-02-22 16:32:36 -0800192LOCAL_MODULE_TAGS := optional
193LOCAL_PACKAGE_NAME := Dialer
194LOCAL_CERTIFICATE := shared
195LOCAL_PRIVILEGED_MODULE := true
Eric Erfanian8369df02017-05-03 10:27:13 -0700196LOCAL_USE_AAPT2 := true
197
198# b/37483961 - Jack Not Compiling Dagger Class Properly
199LOCAL_JACK_ENABLED := javac_frontend
200
Chiao Cheng94b10b52012-08-17 16:59:12 -0700201include $(BUILD_PACKAGE)
202
Eric Erfanianccca3152017-02-22 16:32:36 -0800203# Cleanup local state
204BASE_DIR :=
205SRC_DIRS :=
Eric Erfaniand5e47f62017-03-15 14:41:07 -0700206EXCLUDE_FILES :=
Eric Erfanianccca3152017-02-22 16:32:36 -0800207RES_DIRS :=
208DIALER_MANIFEST_FILES :=
209PROCESSOR_LIBRARIES_TARGET :=
210PROCESSOR_JARS :=
Eric Erfanian415dffb2017-08-08 14:32:39 -0700211EXCLUDE_MANIFESTS :=
212EXCLUDE_EXTRA_PACKAGES :=
Eric Erfanianccca3152017-02-22 16:32:36 -0800213
214# Create references to prebuilt libraries.
215include $(CLEAR_VARS)
216
217LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES := \
Eric Erfanian90508232017-03-24 09:31:16 -0700218 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 -0700219 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 -0700220 dialer-dagger2:../../../prebuilts/tools/common/m2/repository/com/google/dagger/dagger/2.7/dagger-2.7$(COMMON_JAVA_PACKAGE_SUFFIX) \
221 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 -0700222 dialer-grpc-all:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
223 dialer-grpc-core:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
224 dialer-grpc-okhttp:../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX) \
225 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) \
226 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 -0700227 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 -0700228 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) \
229 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 -0800230
231include $(BUILD_MULTI_PREBUILT)
232
Eric Erfanian90508232017-03-24 09:31:16 -0700233# Enumerate target prebuilts to avoid linker warnings like
234# Dialer (java:sdk) should not link to dialer-guava (java:platform)
235include $(CLEAR_VARS)
236
237LOCAL_MODULE_CLASS := JAVA_LIBRARIES
238LOCAL_MODULE := dialer-guava-target
239LOCAL_SDK_VERSION := current
240LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/com/google/guava/guava/20.0/guava-20.0$(COMMON_JAVA_PACKAGE_SUFFIX)
241LOCAL_UNINSTALLABLE_MODULE := true
242
243include $(BUILD_PREBUILT)
244
245include $(CLEAR_VARS)
246
247LOCAL_MODULE_CLASS := JAVA_LIBRARIES
248LOCAL_MODULE := dialer-dagger2-target
249LOCAL_SDK_VERSION := current
Eric Erfanian8369df02017-05-03 10:27:13 -0700250LOCAL_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 -0700251LOCAL_UNINSTALLABLE_MODULE := true
252
253include $(BUILD_PREBUILT)
254
255include $(CLEAR_VARS)
256
257LOCAL_MODULE_CLASS := JAVA_LIBRARIES
258LOCAL_MODULE := dialer-disklrucache-target
259LOCAL_SDK_VERSION := current
Lujiang Xuec0f306f2017-05-25 09:10:58 -0700260LOCAL_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 -0700261LOCAL_UNINSTALLABLE_MODULE := true
262
263include $(BUILD_PREBUILT)
264
265include $(CLEAR_VARS)
266
267LOCAL_MODULE_CLASS := JAVA_LIBRARIES
268LOCAL_MODULE := dialer-gifdecoder-target
269LOCAL_SDK_VERSION := current
Lujiang Xuec0f306f2017-05-25 09:10:58 -0700270LOCAL_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 -0700271LOCAL_UNINSTALLABLE_MODULE := true
272
273include $(BUILD_PREBUILT)
274
275include $(CLEAR_VARS)
276
277LOCAL_MODULE_CLASS := JAVA_LIBRARIES
278LOCAL_MODULE := dialer-glide-target
279LOCAL_SDK_VERSION := current
Lujiang Xuec0f306f2017-05-25 09:10:58 -0700280LOCAL_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 -0700281LOCAL_UNINSTALLABLE_MODULE := true
282
283include $(BUILD_PREBUILT)
284
285include $(CLEAR_VARS)
286
287LOCAL_MODULE_CLASS := JAVA_LIBRARIES
288LOCAL_MODULE := dialer-javax-annotation-api-target
289LOCAL_SDK_VERSION := current
290LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/javax/annotation/javax.annotation-api/1.2/javax.annotation-api-1.2$(COMMON_JAVA_PACKAGE_SUFFIX)
291LOCAL_UNINSTALLABLE_MODULE := true
292
293include $(BUILD_PREBUILT)
294
295include $(CLEAR_VARS)
296
297LOCAL_MODULE_CLASS := JAVA_LIBRARIES
298LOCAL_MODULE := dialer-libshortcutbadger-target
299LOCAL_SDK_VERSION := current
300LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/me/leolin/ShortcutBadger/1.1.13/ShortcutBadger-1.1.13$(COMMON_JAVA_PACKAGE_SUFFIX)
301LOCAL_UNINSTALLABLE_MODULE := true
302
303include $(BUILD_PREBUILT)
304
305include $(CLEAR_VARS)
306
307LOCAL_MODULE_CLASS := JAVA_LIBRARIES
308LOCAL_MODULE := dialer-javax-inject-target
309LOCAL_SDK_VERSION := current
310LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/javax/inject/javax.inject/1/javax.inject-1$(COMMON_JAVA_PACKAGE_SUFFIX)
311LOCAL_UNINSTALLABLE_MODULE := true
312
313include $(BUILD_PREBUILT)
314
Eric Erfanianccca3152017-02-22 16:32:36 -0800315include $(CLEAR_VARS)
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700316
Eric Erfaniancdb1edf2017-03-29 10:20:40 -0700317LOCAL_MODULE_CLASS := JAVA_LIBRARIES
318LOCAL_MODULE := dialer-commons-io-target
319LOCAL_SDK_VERSION := current
320LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/commons-io/commons-io/2.4/commons-io-2.4$(COMMON_JAVA_PACKAGE_SUFFIX)
321LOCAL_UNINSTALLABLE_MODULE := true
322
323include $(BUILD_PREBUILT)
324
325include $(CLEAR_VARS)
Eric Erfanian8369df02017-05-03 10:27:13 -0700326
327LOCAL_MODULE_CLASS := JAVA_LIBRARIES
328LOCAL_MODULE := dialer-mime4j-core-target
329LOCAL_SDK_VERSION := current
330LOCAL_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)
331LOCAL_UNINSTALLABLE_MODULE := true
332
333include $(BUILD_PREBUILT)
334
335include $(CLEAR_VARS)
336
337LOCAL_MODULE_CLASS := JAVA_LIBRARIES
338LOCAL_MODULE := dialer-mime4j-dom-target
339LOCAL_SDK_VERSION := current
340LOCAL_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)
341LOCAL_UNINSTALLABLE_MODULE := true
342
343include $(BUILD_PREBUILT)
344
Ta-wei Yen6af9c022017-05-25 14:57:51 -0700345include $(CLEAR_VARS)
Eric Erfanian2f1c7582017-06-19 11:26:01 -0700346
347LOCAL_MODULE_CLASS := JAVA_LIBRARIES
348LOCAL_MODULE := dialer-grpc-core-target
349LOCAL_SDK_VERSION := current
350LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-core/1.0.3/grpc-core-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
351LOCAL_UNINSTALLABLE_MODULE := true
352
353include $(BUILD_PREBUILT)
354
355include $(CLEAR_VARS)
356
357LOCAL_MODULE_CLASS := JAVA_LIBRARIES
358LOCAL_MODULE := dialer-grpc-okhttp-target
359LOCAL_SDK_VERSION := current
360LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-okhttp/1.0.3/grpc-okhttp-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
361LOCAL_UNINSTALLABLE_MODULE := true
362
363include $(BUILD_PREBUILT)
364
365include $(CLEAR_VARS)
366
367LOCAL_MODULE_CLASS := JAVA_LIBRARIES
368LOCAL_MODULE := dialer-grpc-protobuf-lite-target
369LOCAL_SDK_VERSION := current
370LOCAL_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)
371LOCAL_UNINSTALLABLE_MODULE := true
372
373include $(BUILD_PREBUILT)
374
375include $(CLEAR_VARS)
376
377LOCAL_MODULE_CLASS := JAVA_LIBRARIES
378LOCAL_MODULE := dialer-grpc-stub-target
379LOCAL_SDK_VERSION := current
380LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-stub/1.0.3/grpc-stub-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
381LOCAL_UNINSTALLABLE_MODULE := true
382
383include $(BUILD_PREBUILT)
384
385include $(CLEAR_VARS)
386
387LOCAL_MODULE_CLASS := JAVA_LIBRARIES
388LOCAL_MODULE := dialer-grpc-all-target
389LOCAL_SDK_VERSION := current
390LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-all/1.0.3/grpc-all-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
391LOCAL_UNINSTALLABLE_MODULE := true
392
393include $(BUILD_PREBUILT)
394
395include $(CLEAR_VARS)
Eric Erfanian3bb96412017-06-22 10:19:53 -0700396
397LOCAL_MODULE_CLASS := JAVA_LIBRARIES
398LOCAL_MODULE := dialer-grpc-context-target
399LOCAL_SDK_VERSION := current
400LOCAL_SRC_FILES := ../../../prebuilts/tools/common/m2/repository/io/grpc/grpc-context/1.0.3/grpc-context-1.0.3$(COMMON_JAVA_PACKAGE_SUFFIX)
401LOCAL_UNINSTALLABLE_MODULE := true
402
403include $(BUILD_PREBUILT)
404
wangqi69674662017-06-29 13:14:51 -0700405include $(CLEAR_VARS)