summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xAndroid.mk1
-rw-r--r--res/values-da/strings.xml2
-rw-r--r--tests/Android.mk2
-rw-r--r--tests/src/com/android/basicsmsreceiver/DialogSmsDisplayTests.java1
4 files changed, 3 insertions, 3 deletions
diff --git a/Android.mk b/Android.mk
index c0cb798..50d2f1c 100755
--- a/Android.mk
+++ b/Android.mk
@@ -5,6 +5,7 @@ include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := optional
+LOCAL_JAVA_LIBRARIES := telephony-common
LOCAL_SRC_FILES := $(call all-java-files-under, src)
LOCAL_PACKAGE_NAME := BasicSmsReceiver
diff --git a/res/values-da/strings.xml b/res/values-da/strings.xml
index d08dbf6..7f2566e 100644
--- a/res/values-da/strings.xml
+++ b/res/values-da/strings.xml
@@ -18,5 +18,5 @@
xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
<string name="sms_app_name" msgid="3641211328012514267">"Enkel beskedmodtager"</string>
<string name="sms_message_from_format" msgid="7163240046237558485">"Meddelelse fra <xliff:g id="USERNAME">%1$s</xliff:g>"</string>
- <string name="sms_done_button" msgid="4063239029747798890">"Udfør"</string>
+ <string name="sms_done_button" msgid="4063239029747798890">"Færdig"</string>
</resources>
diff --git a/tests/Android.mk b/tests/Android.mk
index fe54a33..892a3b8 100644
--- a/tests/Android.mk
+++ b/tests/Android.mk
@@ -18,7 +18,7 @@ include $(CLEAR_VARS)
# We only want this apk build for tests.
LOCAL_MODULE_TAGS := tests
-LOCAL_JAVA_LIBRARIES := android.test.runner
+LOCAL_JAVA_LIBRARIES := android.test.runner telephony-common
# Include all test java files.
LOCAL_SRC_FILES := $(call all-java-files-under, src)
diff --git a/tests/src/com/android/basicsmsreceiver/DialogSmsDisplayTests.java b/tests/src/com/android/basicsmsreceiver/DialogSmsDisplayTests.java
index 265e9e8..5994861 100644
--- a/tests/src/com/android/basicsmsreceiver/DialogSmsDisplayTests.java
+++ b/tests/src/com/android/basicsmsreceiver/DialogSmsDisplayTests.java
@@ -29,7 +29,6 @@ import android.database.Cursor;
import android.graphics.Color;
import android.os.Bundle;
import android.provider.Telephony;
-import android.provider.Telephony.Sms.Intents;
import android.telephony.SmsManager;
import android.telephony.SmsMessage;
import android.telephony.TelephonyManager;