diff options
-rw-r--r-- | Android.mk | 1 | ||||
-rw-r--r-- | CleanSpec.mk | 1 | ||||
-rw-r--r-- | src/java/com/android/internal/telephony/AdnRecord.aidl | 20 |
3 files changed, 22 insertions, 0 deletions
@@ -16,6 +16,7 @@ LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) +LOCAL_AIDL_INCLUDES := $(LOCAL_PATH)/src/java LOCAL_SRC_FILES := \ src/java/com/android/internal/telephony/ISms.aidl \ src/java/com/android/internal/telephony/IIccPhoneBook.aidl \ diff --git a/CleanSpec.mk b/CleanSpec.mk index 9a63705..8b3a29d 100644 --- a/CleanSpec.mk +++ b/CleanSpec.mk @@ -39,6 +39,7 @@ # ************************************************ $(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/telephony-common_intermediates) +$(call add-clean-step, rm -rf $(OUT_DIR)/target/common/obj/JAVA_LIBRARIES/telephony-common_intermediates) # ************************************************ # NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST diff --git a/src/java/com/android/internal/telephony/AdnRecord.aidl b/src/java/com/android/internal/telephony/AdnRecord.aidl new file mode 100644 index 0000000..b4a1a29 --- /dev/null +++ b/src/java/com/android/internal/telephony/AdnRecord.aidl @@ -0,0 +1,20 @@ +/* +** Copyright 2007, 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.internal.telephony; + +parcelable AdnRecord; + |