diff options
-rw-r--r-- | api/system-current.txt | 1 | ||||
-rw-r--r-- | core/java/android/printservice/recommendation/RecommendationService.java | 3 | ||||
-rw-r--r-- | packages/PrintRecommendationService/Android.mk (renamed from packages/PrintServiceRecommendationService/Android.mk) | 0 | ||||
-rw-r--r-- | packages/PrintRecommendationService/AndroidManifest.xml (renamed from packages/PrintServiceRecommendationService/AndroidManifest.xml) | 0 | ||||
-rw-r--r-- | packages/PrintRecommendationService/CleanSpec.mk | 49 | ||||
-rw-r--r-- | packages/PrintRecommendationService/MODULE_LICENSE_APACHE2 (renamed from packages/PrintServiceRecommendationService/MODULE_LICENSE_APACHE2) | 0 | ||||
-rw-r--r-- | packages/PrintRecommendationService/NOTICE (renamed from packages/PrintServiceRecommendationService/NOTICE) | 0 | ||||
-rw-r--r-- | packages/PrintRecommendationService/res/values/donottranslate.xml (renamed from packages/PrintServiceRecommendationService/res/values/donottranslate.xml) | 0 | ||||
-rw-r--r-- | packages/PrintRecommendationService/res/values/strings.xml (renamed from packages/PrintServiceRecommendationService/res/values/strings.xml) | 0 | ||||
-rw-r--r-- | packages/PrintRecommendationService/res/xml/vendorconfigs.xml (renamed from packages/PrintServiceRecommendationService/res/xml/vendorconfigs.xml) | 0 | ||||
-rw-r--r-- | packages/PrintRecommendationService/src/com/android/printservice/recommendation/PrintServicePlugin.java (renamed from packages/PrintServiceRecommendationService/src/com/android/printservice/recommendation/PrintServicePlugin.java) | 0 | ||||
-rw-r--r-- | packages/PrintRecommendationService/src/com/android/printservice/recommendation/RecommendationServiceImpl.java (renamed from packages/PrintServiceRecommendationService/src/com/android/printservice/recommendation/RecommendationServiceImpl.java) | 0 | ||||
-rw-r--r-- | packages/PrintRecommendationService/src/com/android/printservice/recommendation/RemotePrintServicePlugin.java (renamed from packages/PrintServiceRecommendationService/src/com/android/printservice/recommendation/RemotePrintServicePlugin.java) | 0 | ||||
-rw-r--r-- | packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/mdnsFilter/MDNSFilterPlugin.java (renamed from packages/PrintServiceRecommendationService/src/com/android/printservice/recommendation/plugin/mdnsFilter/MDNSFilterPlugin.java) | 0 | ||||
-rw-r--r-- | packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/mdnsFilter/VendorConfig.java (renamed from packages/PrintServiceRecommendationService/src/com/android/printservice/recommendation/plugin/mdnsFilter/VendorConfig.java) | 0 | ||||
-rw-r--r-- | packages/PrintRecommendationService/src/com/android/printservice/recommendation/util/MDNSUtils.java (renamed from packages/PrintServiceRecommendationService/src/com/android/printservice/recommendation/util/MDNSUtils.java) | 0 | ||||
-rw-r--r-- | packages/PrintRecommendationService/src/com/android/printservice/recommendation/util/NsdResolveQueue.java (renamed from packages/PrintServiceRecommendationService/src/com/android/printservice/recommendation/util/NsdResolveQueue.java) | 0 |
17 files changed, 50 insertions, 3 deletions
diff --git a/api/system-current.txt b/api/system-current.txt index 2f39ac0ac61e..1909ed995af6 100644 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -32920,6 +32920,7 @@ package android.printservice.recommendation { method public abstract void onConnected(); method public abstract void onDisconnected(); method public final void updateRecommendations(java.util.List<android.printservice.recommendation.RecommendationInfo>); + field public static final java.lang.String SERVICE_INTERFACE = "android.printservice.recommendation.RecommendationService"; } } diff --git a/core/java/android/printservice/recommendation/RecommendationService.java b/core/java/android/printservice/recommendation/RecommendationService.java index b7ea51271043..733629aa3564 100644 --- a/core/java/android/printservice/recommendation/RecommendationService.java +++ b/core/java/android/printservice/recommendation/RecommendationService.java @@ -27,7 +27,6 @@ import android.os.Looper; import android.os.Message; import android.os.RemoteException; import android.util.Log; -import com.android.internal.annotations.GuardedBy; import java.util.List; @@ -46,8 +45,6 @@ public abstract class RecommendationService extends Service { /** * The {@link Intent} action that must be declared as handled by a service in its manifest for * the system to recognize it as a print service recommendation service. - * - * @hide */ public static final String SERVICE_INTERFACE = "android.printservice.recommendation.RecommendationService"; diff --git a/packages/PrintServiceRecommendationService/Android.mk b/packages/PrintRecommendationService/Android.mk index 66cb0573aef0..66cb0573aef0 100644 --- a/packages/PrintServiceRecommendationService/Android.mk +++ b/packages/PrintRecommendationService/Android.mk diff --git a/packages/PrintServiceRecommendationService/AndroidManifest.xml b/packages/PrintRecommendationService/AndroidManifest.xml index 0eb218c853ec..0eb218c853ec 100644 --- a/packages/PrintServiceRecommendationService/AndroidManifest.xml +++ b/packages/PrintRecommendationService/AndroidManifest.xml diff --git a/packages/PrintRecommendationService/CleanSpec.mk b/packages/PrintRecommendationService/CleanSpec.mk new file mode 100644 index 000000000000..c087cb88680f --- /dev/null +++ b/packages/PrintRecommendationService/CleanSpec.mk @@ -0,0 +1,49 @@ +# Copyright (C) 2016 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. +# + +# If you don't need to do a full clean build but would like to touch +# a file or delete some intermediate files, add a clean step to the end +# of the list. These steps will only be run once, if they haven't been +# run before. +# +# E.g.: +# $(call add-clean-step, touch -c external/sqlite/sqlite3.h) +# $(call add-clean-step, rm -rf $(PRODUCT_OUT)/obj/STATIC_LIBRARIES/libz_intermediates) +# +# Always use "touch -c" and "rm -f" or "rm -rf" to gracefully deal with +# files that are missing or have been moved. +# +# Use $(PRODUCT_OUT) to get to the "out/target/product/blah/" directory. +# Use $(OUT_DIR) to refer to the "out" directory. +# +# If you need to re-do something that's already mentioned, just copy +# the command and add it to the bottom of the list. E.g., if a change +# that you made last week required touching a file and a change you +# made today requires touching the same file, just copy the old +# touch step and add it to the end of the list. +# +# ************************************************ +# NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST +# ************************************************ + +# For example: +#$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/APPS/AndroidTests_intermediates) +#$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/core_intermediates) +#$(call add-clean-step, find $(OUT_DIR) -type f -name "IGTalkSession*" -print0 | xargs -0 rm -f) +#$(call add-clean-step, rm -rf $(PRODUCT_OUT)/data/*) + +# ************************************************ +# NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST +# ************************************************ diff --git a/packages/PrintServiceRecommendationService/MODULE_LICENSE_APACHE2 b/packages/PrintRecommendationService/MODULE_LICENSE_APACHE2 index e69de29bb2d1..e69de29bb2d1 100644 --- a/packages/PrintServiceRecommendationService/MODULE_LICENSE_APACHE2 +++ b/packages/PrintRecommendationService/MODULE_LICENSE_APACHE2 diff --git a/packages/PrintServiceRecommendationService/NOTICE b/packages/PrintRecommendationService/NOTICE index c5b1efa7aac7..c5b1efa7aac7 100644 --- a/packages/PrintServiceRecommendationService/NOTICE +++ b/packages/PrintRecommendationService/NOTICE diff --git a/packages/PrintServiceRecommendationService/res/values/donottranslate.xml b/packages/PrintRecommendationService/res/values/donottranslate.xml index 4cf0eaf4181b..4cf0eaf4181b 100644 --- a/packages/PrintServiceRecommendationService/res/values/donottranslate.xml +++ b/packages/PrintRecommendationService/res/values/donottranslate.xml diff --git a/packages/PrintServiceRecommendationService/res/values/strings.xml b/packages/PrintRecommendationService/res/values/strings.xml index 07d0004fa09b..07d0004fa09b 100644 --- a/packages/PrintServiceRecommendationService/res/values/strings.xml +++ b/packages/PrintRecommendationService/res/values/strings.xml diff --git a/packages/PrintServiceRecommendationService/res/xml/vendorconfigs.xml b/packages/PrintRecommendationService/res/xml/vendorconfigs.xml index 119943cd5f9f..119943cd5f9f 100644 --- a/packages/PrintServiceRecommendationService/res/xml/vendorconfigs.xml +++ b/packages/PrintRecommendationService/res/xml/vendorconfigs.xml diff --git a/packages/PrintServiceRecommendationService/src/com/android/printservice/recommendation/PrintServicePlugin.java b/packages/PrintRecommendationService/src/com/android/printservice/recommendation/PrintServicePlugin.java index d604ef8a49ea..d604ef8a49ea 100644 --- a/packages/PrintServiceRecommendationService/src/com/android/printservice/recommendation/PrintServicePlugin.java +++ b/packages/PrintRecommendationService/src/com/android/printservice/recommendation/PrintServicePlugin.java diff --git a/packages/PrintServiceRecommendationService/src/com/android/printservice/recommendation/RecommendationServiceImpl.java b/packages/PrintRecommendationService/src/com/android/printservice/recommendation/RecommendationServiceImpl.java index 9f6dad8f2e2a..9f6dad8f2e2a 100644 --- a/packages/PrintServiceRecommendationService/src/com/android/printservice/recommendation/RecommendationServiceImpl.java +++ b/packages/PrintRecommendationService/src/com/android/printservice/recommendation/RecommendationServiceImpl.java diff --git a/packages/PrintServiceRecommendationService/src/com/android/printservice/recommendation/RemotePrintServicePlugin.java b/packages/PrintRecommendationService/src/com/android/printservice/recommendation/RemotePrintServicePlugin.java index dbd164946dfb..dbd164946dfb 100644 --- a/packages/PrintServiceRecommendationService/src/com/android/printservice/recommendation/RemotePrintServicePlugin.java +++ b/packages/PrintRecommendationService/src/com/android/printservice/recommendation/RemotePrintServicePlugin.java diff --git a/packages/PrintServiceRecommendationService/src/com/android/printservice/recommendation/plugin/mdnsFilter/MDNSFilterPlugin.java b/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/mdnsFilter/MDNSFilterPlugin.java index 26300b1e37b9..26300b1e37b9 100644 --- a/packages/PrintServiceRecommendationService/src/com/android/printservice/recommendation/plugin/mdnsFilter/MDNSFilterPlugin.java +++ b/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/mdnsFilter/MDNSFilterPlugin.java diff --git a/packages/PrintServiceRecommendationService/src/com/android/printservice/recommendation/plugin/mdnsFilter/VendorConfig.java b/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/mdnsFilter/VendorConfig.java index 57d5c710f6bd..57d5c710f6bd 100644 --- a/packages/PrintServiceRecommendationService/src/com/android/printservice/recommendation/plugin/mdnsFilter/VendorConfig.java +++ b/packages/PrintRecommendationService/src/com/android/printservice/recommendation/plugin/mdnsFilter/VendorConfig.java diff --git a/packages/PrintServiceRecommendationService/src/com/android/printservice/recommendation/util/MDNSUtils.java b/packages/PrintRecommendationService/src/com/android/printservice/recommendation/util/MDNSUtils.java index 0541c3565dba..0541c3565dba 100644 --- a/packages/PrintServiceRecommendationService/src/com/android/printservice/recommendation/util/MDNSUtils.java +++ b/packages/PrintRecommendationService/src/com/android/printservice/recommendation/util/MDNSUtils.java diff --git a/packages/PrintServiceRecommendationService/src/com/android/printservice/recommendation/util/NsdResolveQueue.java b/packages/PrintRecommendationService/src/com/android/printservice/recommendation/util/NsdResolveQueue.java index fad50f6a404b..fad50f6a404b 100644 --- a/packages/PrintServiceRecommendationService/src/com/android/printservice/recommendation/util/NsdResolveQueue.java +++ b/packages/PrintRecommendationService/src/com/android/printservice/recommendation/util/NsdResolveQueue.java |