diff --git a/Android.mk b/Android.mk
new file mode 100644
index 0000000..d685b9c
--- /dev/null
+++ b/Android.mk
@@ -0,0 +1,15 @@
+LOCAL_PATH:= $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_MODULE_TAGS := optional
+
+LOCAL_SRC_FILES := $(call all-subdir-java-files)
+
+LOCAL_PROGUARD_ENABLED := disabled
+
+LOCAL_PACKAGE_NAME := CryptfsPasswordManager
+
+
+include $(BUILD_PACKAGE)
+
+include $(call all-makefiles-under,$(LOCAL_PATH))
diff --git a/res/layout/activity_main.xml b/res/layout/activity_main.xml
index b8877bc..79fa223 100644
--- a/res/layout/activity_main.xml
+++ b/res/layout/activity_main.xml
@@ -29,7 +29,7 @@
android:id="@+id/currentPasswdLabel"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:text="Current password:" />
+ android:text="@string/current_passwd_pmt" />
+ android:text="@string/new_passwd_pmt" />
+ android:text="@string/confirm_passwd_pmt" />
+ android:text="@string/change_passwd_btn" />
\ No newline at end of file
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 4888c17..6a6631a 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -14,9 +14,13 @@
to set the password manually BEFORE rebooting.
Successfuly changed device encryption password.
Passwords don\'t match.
+ Confirm password:
Confirmation password is required.
New password is required.
Current password is required.
+ Current password:
+ New password:
+ Change password
Cannot get superuser access, exiting.
No superuser package found, exiting.
This device is not encrypted, exiting.