diff --git a/doc/实践考评-阅读维护开源软件的汇报.pptx b/doc/实践考评-阅读维护开源软件的汇报.pptx
new file mode 100644
index 00000000..01a242a3
Binary files /dev/null and b/doc/实践考评-阅读维护开源软件的汇报.pptx differ
diff --git a/doc/开源代码阅读、标注和维护文档.docx b/doc/开源代码阅读、标注和维护文档.docx
index af1c39bb..fbfd1523 100644
Binary files a/doc/开源代码阅读、标注和维护文档.docx and b/doc/开源代码阅读、标注和维护文档.docx differ
diff --git a/doc/阅读维护开源软件的团队自评报告.xlsx b/doc/阅读维护开源软件的团队自评报告.xlsx
new file mode 100644
index 00000000..91dab0bd
Binary files /dev/null and b/doc/阅读维护开源软件的团队自评报告.xlsx differ
diff --git a/src/.gradle/8.0/checksums/checksums.lock b/src/.gradle/8.0/checksums/checksums.lock
index 03da79d0..1819516c 100644
Binary files a/src/.gradle/8.0/checksums/checksums.lock and b/src/.gradle/8.0/checksums/checksums.lock differ
diff --git a/src/.gradle/8.0/checksums/sha1-checksums.bin b/src/.gradle/8.0/checksums/sha1-checksums.bin
index 7f5acdc2..521a8d25 100644
Binary files a/src/.gradle/8.0/checksums/sha1-checksums.bin and b/src/.gradle/8.0/checksums/sha1-checksums.bin differ
diff --git a/src/.gradle/8.0/executionHistory/executionHistory.bin b/src/.gradle/8.0/executionHistory/executionHistory.bin
index 2099630e..7ec526c8 100644
Binary files a/src/.gradle/8.0/executionHistory/executionHistory.bin and b/src/.gradle/8.0/executionHistory/executionHistory.bin differ
diff --git a/src/.gradle/8.0/executionHistory/executionHistory.lock b/src/.gradle/8.0/executionHistory/executionHistory.lock
index aa793573..f9f815af 100644
Binary files a/src/.gradle/8.0/executionHistory/executionHistory.lock and b/src/.gradle/8.0/executionHistory/executionHistory.lock differ
diff --git a/src/.gradle/8.0/fileHashes/fileHashes.bin b/src/.gradle/8.0/fileHashes/fileHashes.bin
index 140bc91c..6fb59666 100644
Binary files a/src/.gradle/8.0/fileHashes/fileHashes.bin and b/src/.gradle/8.0/fileHashes/fileHashes.bin differ
diff --git a/src/.gradle/8.0/fileHashes/fileHashes.lock b/src/.gradle/8.0/fileHashes/fileHashes.lock
index 8c556ed9..402eaff1 100644
Binary files a/src/.gradle/8.0/fileHashes/fileHashes.lock and b/src/.gradle/8.0/fileHashes/fileHashes.lock differ
diff --git a/src/.gradle/8.0/fileHashes/resourceHashesCache.bin b/src/.gradle/8.0/fileHashes/resourceHashesCache.bin
index ed5f2329..c09378fb 100644
Binary files a/src/.gradle/8.0/fileHashes/resourceHashesCache.bin and b/src/.gradle/8.0/fileHashes/resourceHashesCache.bin differ
diff --git a/src/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/src/.gradle/buildOutputCleanup/buildOutputCleanup.lock
index af1e8b38..fb4be7df 100644
Binary files a/src/.gradle/buildOutputCleanup/buildOutputCleanup.lock and b/src/.gradle/buildOutputCleanup/buildOutputCleanup.lock differ
diff --git a/src/.gradle/buildOutputCleanup/outputFiles.bin b/src/.gradle/buildOutputCleanup/outputFiles.bin
index 6b21a062..6d19c028 100644
Binary files a/src/.gradle/buildOutputCleanup/outputFiles.bin and b/src/.gradle/buildOutputCleanup/outputFiles.bin differ
diff --git a/src/.gradle/file-system.probe b/src/.gradle/file-system.probe
index f48a2d7b..493977ff 100644
Binary files a/src/.gradle/file-system.probe and b/src/.gradle/file-system.probe differ
diff --git a/src/.idea/deploymentTargetDropDown.xml b/src/.idea/deploymentTargetDropDown.xml
index 02150a46..4299f184 100644
--- a/src/.idea/deploymentTargetDropDown.xml
+++ b/src/.idea/deploymentTargetDropDown.xml
@@ -12,6 +12,6 @@
-
+
\ No newline at end of file
diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivityChangePasswordBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivityChangePasswordBinding.java
new file mode 100644
index 00000000..5fdac9bd
--- /dev/null
+++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivityChangePasswordBinding.java
@@ -0,0 +1,102 @@
+// Generated by view binder compiler. Do not edit!
+package net.micode.notes.databinding;
+
+import android.support.annotation.NonNull;
+import android.support.annotation.Nullable;
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import android.viewbinding.ViewBinding;
+import android.viewbinding.ViewBindings;
+import android.widget.Button;
+import android.widget.EditText;
+import android.widget.LinearLayout;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import java.lang.String;
+import net.micode.notes.R;
+
+public final class ActivityChangePasswordBinding implements ViewBinding {
+ @NonNull
+ private final LinearLayout rootView;
+
+ @NonNull
+ public final Button Acknowledged;
+
+ @NonNull
+ public final EditText ackPassword;
+
+ @NonNull
+ public final EditText newPassword;
+
+ @NonNull
+ public final EditText oldPassword;
+
+ private ActivityChangePasswordBinding(@NonNull LinearLayout rootView,
+ @NonNull Button Acknowledged, @NonNull EditText ackPassword, @NonNull EditText newPassword,
+ @NonNull EditText oldPassword) {
+ this.rootView = rootView;
+ this.Acknowledged = Acknowledged;
+ this.ackPassword = ackPassword;
+ this.newPassword = newPassword;
+ this.oldPassword = oldPassword;
+ }
+
+ @Override
+ @NonNull
+ public LinearLayout getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static ActivityChangePasswordBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static ActivityChangePasswordBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.activity_change_password, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static ActivityChangePasswordBinding bind(@NonNull View rootView) {
+ // The body of this method is generated in a way you would not otherwise write.
+ // This is done to optimize the compiled bytecode for size and performance.
+ int id;
+ missingId: {
+ id = R.id.Acknowledged;
+ Button Acknowledged = ViewBindings.findChildViewById(rootView, id);
+ if (Acknowledged == null) {
+ break missingId;
+ }
+
+ id = R.id.ack_password;
+ EditText ackPassword = ViewBindings.findChildViewById(rootView, id);
+ if (ackPassword == null) {
+ break missingId;
+ }
+
+ id = R.id.new_password;
+ EditText newPassword = ViewBindings.findChildViewById(rootView, id);
+ if (newPassword == null) {
+ break missingId;
+ }
+
+ id = R.id.old_password;
+ EditText oldPassword = ViewBindings.findChildViewById(rootView, id);
+ if (oldPassword == null) {
+ break missingId;
+ }
+
+ return new ActivityChangePasswordBinding((LinearLayout) rootView, Acknowledged, ackPassword,
+ newPassword, oldPassword);
+ }
+ String missingId = rootView.getResources().getResourceName(id);
+ throw new NullPointerException("Missing required view with ID: ".concat(missingId));
+ }
+}
diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivityDeletePasswordBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivityDeletePasswordBinding.java
new file mode 100644
index 00000000..acaabb28
--- /dev/null
+++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivityDeletePasswordBinding.java
@@ -0,0 +1,81 @@
+// Generated by view binder compiler. Do not edit!
+package net.micode.notes.databinding;
+
+import android.support.annotation.NonNull;
+import android.support.annotation.Nullable;
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import android.viewbinding.ViewBinding;
+import android.viewbinding.ViewBindings;
+import android.widget.Button;
+import android.widget.EditText;
+import android.widget.LinearLayout;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import java.lang.String;
+import net.micode.notes.R;
+
+public final class ActivityDeletePasswordBinding implements ViewBinding {
+ @NonNull
+ private final LinearLayout rootView;
+
+ @NonNull
+ public final Button DtAcknowledged;
+
+ @NonNull
+ public final EditText thepassword;
+
+ private ActivityDeletePasswordBinding(@NonNull LinearLayout rootView,
+ @NonNull Button DtAcknowledged, @NonNull EditText thepassword) {
+ this.rootView = rootView;
+ this.DtAcknowledged = DtAcknowledged;
+ this.thepassword = thepassword;
+ }
+
+ @Override
+ @NonNull
+ public LinearLayout getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static ActivityDeletePasswordBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static ActivityDeletePasswordBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.activity_delete_password, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static ActivityDeletePasswordBinding bind(@NonNull View rootView) {
+ // The body of this method is generated in a way you would not otherwise write.
+ // This is done to optimize the compiled bytecode for size and performance.
+ int id;
+ missingId: {
+ id = R.id.Dt_Acknowledged;
+ Button DtAcknowledged = ViewBindings.findChildViewById(rootView, id);
+ if (DtAcknowledged == null) {
+ break missingId;
+ }
+
+ id = R.id.thepassword;
+ EditText thepassword = ViewBindings.findChildViewById(rootView, id);
+ if (thepassword == null) {
+ break missingId;
+ }
+
+ return new ActivityDeletePasswordBinding((LinearLayout) rootView, DtAcknowledged,
+ thepassword);
+ }
+ String missingId = rootView.getResources().getResourceName(id);
+ throw new NullPointerException("Missing required view with ID: ".concat(missingId));
+ }
+}
diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivityLoginBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivityLoginBinding.java
new file mode 100644
index 00000000..dab933ae
--- /dev/null
+++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivityLoginBinding.java
@@ -0,0 +1,80 @@
+// Generated by view binder compiler. Do not edit!
+package net.micode.notes.databinding;
+
+import android.support.annotation.NonNull;
+import android.support.annotation.Nullable;
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import android.viewbinding.ViewBinding;
+import android.viewbinding.ViewBindings;
+import android.widget.Button;
+import android.widget.EditText;
+import android.widget.LinearLayout;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import java.lang.String;
+import net.micode.notes.R;
+
+public final class ActivityLoginBinding implements ViewBinding {
+ @NonNull
+ private final LinearLayout rootView;
+
+ @NonNull
+ public final EditText lgPassword;
+
+ @NonNull
+ public final Button login;
+
+ private ActivityLoginBinding(@NonNull LinearLayout rootView, @NonNull EditText lgPassword,
+ @NonNull Button login) {
+ this.rootView = rootView;
+ this.lgPassword = lgPassword;
+ this.login = login;
+ }
+
+ @Override
+ @NonNull
+ public LinearLayout getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static ActivityLoginBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static ActivityLoginBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.activity_login, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static ActivityLoginBinding bind(@NonNull View rootView) {
+ // The body of this method is generated in a way you would not otherwise write.
+ // This is done to optimize the compiled bytecode for size and performance.
+ int id;
+ missingId: {
+ id = R.id.lg_password;
+ EditText lgPassword = ViewBindings.findChildViewById(rootView, id);
+ if (lgPassword == null) {
+ break missingId;
+ }
+
+ id = R.id.login;
+ Button login = ViewBindings.findChildViewById(rootView, id);
+ if (login == null) {
+ break missingId;
+ }
+
+ return new ActivityLoginBinding((LinearLayout) rootView, lgPassword, login);
+ }
+ String missingId = rootView.getResources().getResourceName(id);
+ throw new NullPointerException("Missing required view with ID: ".concat(missingId));
+ }
+}
diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivitySetLoginpasswordBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivitySetLoginpasswordBinding.java
new file mode 100644
index 00000000..1259fac3
--- /dev/null
+++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivitySetLoginpasswordBinding.java
@@ -0,0 +1,91 @@
+// Generated by view binder compiler. Do not edit!
+package net.micode.notes.databinding;
+
+import android.support.annotation.NonNull;
+import android.support.annotation.Nullable;
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+import android.viewbinding.ViewBinding;
+import android.viewbinding.ViewBindings;
+import android.widget.Button;
+import android.widget.EditText;
+import android.widget.LinearLayout;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import java.lang.String;
+import net.micode.notes.R;
+
+public final class ActivitySetLoginpasswordBinding implements ViewBinding {
+ @NonNull
+ private final LinearLayout rootView;
+
+ @NonNull
+ public final Button acknowledge;
+
+ @NonNull
+ public final EditText password;
+
+ @NonNull
+ public final EditText passwordAck;
+
+ private ActivitySetLoginpasswordBinding(@NonNull LinearLayout rootView,
+ @NonNull Button acknowledge, @NonNull EditText password, @NonNull EditText passwordAck) {
+ this.rootView = rootView;
+ this.acknowledge = acknowledge;
+ this.password = password;
+ this.passwordAck = passwordAck;
+ }
+
+ @Override
+ @NonNull
+ public LinearLayout getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static ActivitySetLoginpasswordBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static ActivitySetLoginpasswordBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.activity_set_loginpassword, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static ActivitySetLoginpasswordBinding bind(@NonNull View rootView) {
+ // The body of this method is generated in a way you would not otherwise write.
+ // This is done to optimize the compiled bytecode for size and performance.
+ int id;
+ missingId: {
+ id = R.id.acknowledge;
+ Button acknowledge = ViewBindings.findChildViewById(rootView, id);
+ if (acknowledge == null) {
+ break missingId;
+ }
+
+ id = R.id.password;
+ EditText password = ViewBindings.findChildViewById(rootView, id);
+ if (password == null) {
+ break missingId;
+ }
+
+ id = R.id.password_ack;
+ EditText passwordAck = ViewBindings.findChildViewById(rootView, id);
+ if (passwordAck == null) {
+ break missingId;
+ }
+
+ return new ActivitySetLoginpasswordBinding((LinearLayout) rootView, acknowledge, password,
+ passwordAck);
+ }
+ String missingId = rootView.getResources().getResourceName(id);
+ throw new NullPointerException("Missing required view with ID: ".concat(missingId));
+ }
+}
diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteEditBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteEditBinding.java
index f98a1bcd..f4c03801 100644
--- a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteEditBinding.java
+++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteEditBinding.java
@@ -8,6 +8,7 @@ import android.view.View;
import android.view.ViewGroup;
import android.viewbinding.ViewBinding;
import android.viewbinding.ViewBindings;
+import android.widget.Button;
import android.widget.FrameLayout;
import android.widget.ImageView;
import android.widget.LinearLayout;
@@ -25,6 +26,9 @@ public final class NoteEditBinding implements ViewBinding {
@NonNull
public final ImageView btnSetBgColor;
+ @NonNull
+ public final Button btnSetType;
+
@NonNull
public final LinearLayout fontSizeSelector;
@@ -110,8 +114,9 @@ public final class NoteEditBinding implements ViewBinding {
public final TextView tvModifiedDate;
private NoteEditBinding(@NonNull FrameLayout rootView, @NonNull ImageView btnSetBgColor,
- @NonNull LinearLayout fontSizeSelector, @NonNull ImageView ivAlertIcon,
- @NonNull ImageView ivBgBlue, @NonNull ImageView ivBgBlueSelect, @NonNull ImageView ivBgGreen,
+ @NonNull Button btnSetType, @NonNull LinearLayout fontSizeSelector,
+ @NonNull ImageView ivAlertIcon, @NonNull ImageView ivBgBlue,
+ @NonNull ImageView ivBgBlueSelect, @NonNull ImageView ivBgGreen,
@NonNull ImageView ivBgGreenSelect, @NonNull ImageView ivBgRed,
@NonNull ImageView ivBgRedSelect, @NonNull ImageView ivBgWhite,
@NonNull ImageView ivBgWhiteSelect, @NonNull ImageView ivBgYellow,
@@ -125,6 +130,7 @@ public final class NoteEditBinding implements ViewBinding {
@NonNull TextView tvAlertDate, @NonNull TextView tvModifiedDate) {
this.rootView = rootView;
this.btnSetBgColor = btnSetBgColor;
+ this.btnSetType = btnSetType;
this.fontSizeSelector = fontSizeSelector;
this.ivAlertIcon = ivAlertIcon;
this.ivBgBlue = ivBgBlue;
@@ -188,6 +194,12 @@ public final class NoteEditBinding implements ViewBinding {
break missingId;
}
+ id = R.id.btn_SetType;
+ Button btnSetType = ViewBindings.findChildViewById(rootView, id);
+ if (btnSetType == null) {
+ break missingId;
+ }
+
id = R.id.font_size_selector;
LinearLayout fontSizeSelector = ViewBindings.findChildViewById(rootView, id);
if (fontSizeSelector == null) {
@@ -356,12 +368,12 @@ public final class NoteEditBinding implements ViewBinding {
break missingId;
}
- return new NoteEditBinding((FrameLayout) rootView, btnSetBgColor, fontSizeSelector,
- ivAlertIcon, ivBgBlue, ivBgBlueSelect, ivBgGreen, ivBgGreenSelect, ivBgRed, ivBgRedSelect,
- ivBgWhite, ivBgWhiteSelect, ivBgYellow, ivBgYellowSelect, ivLargeSelect, ivMediumSelect,
- ivSmallSelect, ivSuperSelect, llFontLarge, llFontNormal, llFontSmall, llFontSuper,
- noteBgColorSelector, noteEditList, noteEditView, noteTitle, svNoteEdit, textNum,
- tvAlertDate, tvModifiedDate);
+ return new NoteEditBinding((FrameLayout) rootView, btnSetBgColor, btnSetType,
+ fontSizeSelector, ivAlertIcon, ivBgBlue, ivBgBlueSelect, ivBgGreen, ivBgGreenSelect,
+ ivBgRed, ivBgRedSelect, ivBgWhite, ivBgWhiteSelect, ivBgYellow, ivBgYellowSelect,
+ ivLargeSelect, ivMediumSelect, ivSmallSelect, ivSuperSelect, llFontLarge, llFontNormal,
+ llFontSmall, llFontSuper, noteBgColorSelector, noteEditList, noteEditView, noteTitle,
+ svNoteEdit, textNum, tvAlertDate, tvModifiedDate);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteItemBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteItemBinding.java
index 592f6059..f950f2d5 100644
--- a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteItemBinding.java
+++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteItemBinding.java
@@ -39,9 +39,12 @@ public final class NoteItemBinding implements ViewBinding {
@NonNull
public final TextView tvTitle;
+ @NonNull
+ public final TextView tvType;
+
private NoteItemBinding(@NonNull FrameLayout rootView, @NonNull CheckBox checkbox,
@NonNull ImageView ivAlertIcon, @NonNull FrameLayout noteItem, @NonNull TextView tvName,
- @NonNull TextView tvTime, @NonNull TextView tvTitle) {
+ @NonNull TextView tvTime, @NonNull TextView tvTitle, @NonNull TextView tvType) {
this.rootView = rootView;
this.checkbox = checkbox;
this.ivAlertIcon = ivAlertIcon;
@@ -49,6 +52,7 @@ public final class NoteItemBinding implements ViewBinding {
this.tvName = tvName;
this.tvTime = tvTime;
this.tvTitle = tvTitle;
+ this.tvType = tvType;
}
@Override
@@ -110,8 +114,14 @@ public final class NoteItemBinding implements ViewBinding {
break missingId;
}
+ id = R.id.tv_type;
+ TextView tvType = ViewBindings.findChildViewById(rootView, id);
+ if (tvType == null) {
+ break missingId;
+ }
+
return new NoteItemBinding((FrameLayout) rootView, checkbox, ivAlertIcon, noteItem, tvName,
- tvTime, tvTitle);
+ tvTime, tvTitle, tvType);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
diff --git a/src/app/build/intermediates/apk/debug/app-debug.apk b/src/app/build/intermediates/apk/debug/app-debug.apk
index f55cd150..17d855c1 100644
Binary files a/src/app/build/intermediates/apk/debug/app-debug.apk and b/src/app/build/intermediates/apk/debug/app-debug.apk differ
diff --git a/src/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar b/src/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar
index 18cc6495..bc607998 100644
Binary files a/src/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar and b/src/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar differ
diff --git a/src/app/build/intermediates/compile_app_classes_jar/debug/classes.jar b/src/app/build/intermediates/compile_app_classes_jar/debug/classes.jar
index 3a4ee780..847fe419 100644
Binary files a/src/app/build/intermediates/compile_app_classes_jar/debug/classes.jar and b/src/app/build/intermediates/compile_app_classes_jar/debug/classes.jar differ
diff --git a/src/app/build/intermediates/data_binding_base_class_log_artifact/debug/out/net.micode.notes-binding_classes.json b/src/app/build/intermediates/data_binding_base_class_log_artifact/debug/out/net.micode.notes-binding_classes.json
index eee12b00..eb7e2358 100644
Binary files a/src/app/build/intermediates/data_binding_base_class_log_artifact/debug/out/net.micode.notes-binding_classes.json and b/src/app/build/intermediates/data_binding_base_class_log_artifact/debug/out/net.micode.notes-binding_classes.json differ
diff --git a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/activity_change_password-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/activity_change_password-layout.xml
new file mode 100644
index 00000000..386bf8ae
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/activity_change_password-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/activity_delete_password-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/activity_delete_password-layout.xml
new file mode 100644
index 00000000..5c939353
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/activity_delete_password-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/activity_login-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/activity_login-layout.xml
new file mode 100644
index 00000000..5dfdd8a1
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/activity_login-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/activity_set_loginpassword-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/activity_set_loginpassword-layout.xml
new file mode 100644
index 00000000..70a0b1a5
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/activity_set_loginpassword-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_edit-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_edit-layout.xml
index 6494f450..3b6c5e69 100644
--- a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_edit-layout.xml
+++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_edit-layout.xml
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_item-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_item-layout.xml
index 8f506645..ed680fad 100644
--- a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_item-layout.xml
+++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_item-layout.xml
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_list-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_list-layout.xml
index d38ebb07..2000703b 100644
--- a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_list-layout.xml
+++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_list-layout.xml
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_change_password-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_change_password-layout.xml
new file mode 100644
index 00000000..386bf8ae
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_change_password-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_delete_password-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_delete_password-layout.xml
new file mode 100644
index 00000000..5c939353
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_delete_password-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_login-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_login-layout.xml
new file mode 100644
index 00000000..5dfdd8a1
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_login-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_set_loginpassword-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_set_loginpassword-layout.xml
new file mode 100644
index 00000000..70a0b1a5
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_set_loginpassword-layout.xml
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_edit-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_edit-layout.xml
index 6494f450..3b6c5e69 100644
--- a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_edit-layout.xml
+++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_edit-layout.xml
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_item-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_item-layout.xml
index 8f506645..ed680fad 100644
--- a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_item-layout.xml
+++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_item-layout.xml
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list-layout.xml
index d38ebb07..2000703b 100644
--- a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list-layout.xml
+++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list-layout.xml
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_0/graph.bin b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_1ca9b824d04112bd85a3c42f1f1f25fde537f964c681eba9a5a65ab54a959b5b_bucket_0/graph.bin
similarity index 100%
rename from src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_0/graph.bin
rename to src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_1ca9b824d04112bd85a3c42f1f1f25fde537f964c681eba9a5a65ab54a959b5b_bucket_0/graph.bin
diff --git a/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_1/graph.bin b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_1ca9b824d04112bd85a3c42f1f1f25fde537f964c681eba9a5a65ab54a959b5b_bucket_1/graph.bin
similarity index 100%
rename from src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_1/graph.bin
rename to src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_1ca9b824d04112bd85a3c42f1f1f25fde537f964c681eba9a5a65ab54a959b5b_bucket_1/graph.bin
diff --git a/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_2/graph.bin b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_1ca9b824d04112bd85a3c42f1f1f25fde537f964c681eba9a5a65ab54a959b5b_bucket_2/graph.bin
similarity index 100%
rename from src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_2/graph.bin
rename to src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_1ca9b824d04112bd85a3c42f1f1f25fde537f964c681eba9a5a65ab54a959b5b_bucket_2/graph.bin
diff --git a/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_3/graph.bin b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_1ca9b824d04112bd85a3c42f1f1f25fde537f964c681eba9a5a65ab54a959b5b_bucket_3/graph.bin
similarity index 100%
rename from src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_3/graph.bin
rename to src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_1ca9b824d04112bd85a3c42f1f1f25fde537f964c681eba9a5a65ab54a959b5b_bucket_3/graph.bin
diff --git a/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_4/graph.bin b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_1ca9b824d04112bd85a3c42f1f1f25fde537f964c681eba9a5a65ab54a959b5b_bucket_4/graph.bin
similarity index 100%
rename from src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_4/graph.bin
rename to src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_1ca9b824d04112bd85a3c42f1f1f25fde537f964c681eba9a5a65ab54a959b5b_bucket_4/graph.bin
diff --git a/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_5/graph.bin b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_1ca9b824d04112bd85a3c42f1f1f25fde537f964c681eba9a5a65ab54a959b5b_bucket_5/graph.bin
similarity index 100%
rename from src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_5/graph.bin
rename to src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_1ca9b824d04112bd85a3c42f1f1f25fde537f964c681eba9a5a65ab54a959b5b_bucket_5/graph.bin
diff --git a/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_6/graph.bin b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_1ca9b824d04112bd85a3c42f1f1f25fde537f964c681eba9a5a65ab54a959b5b_bucket_6/graph.bin
similarity index 100%
rename from src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_6/graph.bin
rename to src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_1ca9b824d04112bd85a3c42f1f1f25fde537f964c681eba9a5a65ab54a959b5b_bucket_6/graph.bin
diff --git a/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_7/graph.bin b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_1ca9b824d04112bd85a3c42f1f1f25fde537f964c681eba9a5a65ab54a959b5b_bucket_7/graph.bin
similarity index 100%
rename from src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_7/graph.bin
rename to src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_1ca9b824d04112bd85a3c42f1f1f25fde537f964c681eba9a5a65ab54a959b5b_bucket_7/graph.bin
diff --git a/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_0/graph.bin b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_63bd1c7a1c15aa087baa706d29fd08277ae84530676b0baa1255252826842dde_bucket_0/graph.bin
similarity index 100%
rename from src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_0/graph.bin
rename to src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_63bd1c7a1c15aa087baa706d29fd08277ae84530676b0baa1255252826842dde_bucket_0/graph.bin
diff --git a/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_1/graph.bin b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_63bd1c7a1c15aa087baa706d29fd08277ae84530676b0baa1255252826842dde_bucket_1/graph.bin
similarity index 100%
rename from src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_1/graph.bin
rename to src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_63bd1c7a1c15aa087baa706d29fd08277ae84530676b0baa1255252826842dde_bucket_1/graph.bin
diff --git a/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_2/graph.bin b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_63bd1c7a1c15aa087baa706d29fd08277ae84530676b0baa1255252826842dde_bucket_2/graph.bin
similarity index 100%
rename from src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_2/graph.bin
rename to src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_63bd1c7a1c15aa087baa706d29fd08277ae84530676b0baa1255252826842dde_bucket_2/graph.bin
diff --git a/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_3/graph.bin b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_63bd1c7a1c15aa087baa706d29fd08277ae84530676b0baa1255252826842dde_bucket_3/graph.bin
similarity index 100%
rename from src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_3/graph.bin
rename to src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_63bd1c7a1c15aa087baa706d29fd08277ae84530676b0baa1255252826842dde_bucket_3/graph.bin
diff --git a/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_4/graph.bin b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_63bd1c7a1c15aa087baa706d29fd08277ae84530676b0baa1255252826842dde_bucket_4/graph.bin
similarity index 100%
rename from src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_4/graph.bin
rename to src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_63bd1c7a1c15aa087baa706d29fd08277ae84530676b0baa1255252826842dde_bucket_4/graph.bin
diff --git a/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_5/graph.bin b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_63bd1c7a1c15aa087baa706d29fd08277ae84530676b0baa1255252826842dde_bucket_5/graph.bin
similarity index 100%
rename from src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_5/graph.bin
rename to src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_63bd1c7a1c15aa087baa706d29fd08277ae84530676b0baa1255252826842dde_bucket_5/graph.bin
diff --git a/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_6/graph.bin b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_63bd1c7a1c15aa087baa706d29fd08277ae84530676b0baa1255252826842dde_bucket_6/graph.bin
similarity index 100%
rename from src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_6/graph.bin
rename to src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_63bd1c7a1c15aa087baa706d29fd08277ae84530676b0baa1255252826842dde_bucket_6/graph.bin
diff --git a/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_7/graph.bin b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_63bd1c7a1c15aa087baa706d29fd08277ae84530676b0baa1255252826842dde_bucket_7/graph.bin
similarity index 100%
rename from src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_7/graph.bin
rename to src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_63bd1c7a1c15aa087baa706d29fd08277ae84530676b0baa1255252826842dde_bucket_7/graph.bin
diff --git a/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex
index 977c376c..3ce50c81 100644
Binary files a/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex and b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex differ
diff --git a/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/12/classes.dex b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/12/classes.dex
index a2499d0b..f1be93d1 100644
Binary files a/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/12/classes.dex and b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/12/classes.dex differ
diff --git a/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/15/classes.dex b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/15/classes.dex
index 06e297c9..ceeae680 100644
Binary files a/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/15/classes.dex and b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/15/classes.dex differ
diff --git a/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/4/classes.dex b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/4/classes.dex
index 1bd66248..3869f02a 100644
Binary files a/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/4/classes.dex and b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/4/classes.dex differ
diff --git a/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex
index 020d14b6..9c44fb6e 100644
Binary files a/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex and b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex differ
diff --git a/src/app/build/intermediates/dex_archive_input_jar_hashes/debug/out b/src/app/build/intermediates/dex_archive_input_jar_hashes/debug/out
index 21bf69b2..746348b6 100644
Binary files a/src/app/build/intermediates/dex_archive_input_jar_hashes/debug/out and b/src/app/build/intermediates/dex_archive_input_jar_hashes/debug/out differ
diff --git a/src/app/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/out b/src/app/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/out
index c2f6f291..585d66c7 100644
Binary files a/src/app/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/out and b/src/app/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/out differ
diff --git a/src/app/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json b/src/app/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json
index d897786b..24149285 100644
Binary files a/src/app/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json and b/src/app/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json differ
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties b/src/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties
index cc5871dc..4c4117a2 100644
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties
@@ -1,102 +1,109 @@
-#Thu Jan 18 09:02:54 CST 2024
-net.micode.notes.app-main-7\:/color/primary_text_dark.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\color_primary_text_dark.xml.flat
-net.micode.notes.app-main-7\:/color/secondary_text_dark.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\color_secondary_text_dark.xml.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/a.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_a.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/abc.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_abc.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/bg_btn_set_color.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_bg_btn_set_color.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/bg_color_btn_mask.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_bg_color_btn_mask.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/call_record.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_call_record.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/clock.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_clock.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/delete.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_delete.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/dropdown_icon.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_dropdown_icon.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/edit_blue.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_blue.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/edit_green.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_green.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/edit_red.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_red.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/edit_title_blue.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_blue.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/edit_title_green.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_green.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/edit_title_red.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_red.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/edit_title_white.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_white.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/edit_title_yellow.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_yellow.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/edit_white.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_white.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/edit_yellow.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_yellow.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/font_large.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_large.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/font_normal.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_normal.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/font_size_selector_bg.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_size_selector_bg.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/font_small.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_small.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/font_super.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_super.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/icon_app.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_icon_app.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/icon_app_new.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_icon_app_new.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/list_background.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_background.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/list_blue_down.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_blue_down.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/list_blue_middle.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_blue_middle.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/list_blue_single.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_blue_single.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/list_blue_up.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_blue_up.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/list_folder.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_folder.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/list_footer_bg.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_footer_bg.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/list_green_down.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_green_down.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/list_green_middle.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_green_middle.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/list_green_single.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_green_single.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/list_green_up.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_green_up.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/list_red_down.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_red_down.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/list_red_middle.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_red_middle.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/list_red_single.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_red_single.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/list_red_up.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_red_up.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/list_white_down.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_white_down.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/list_white_middle.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_white_middle.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/list_white_single.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_white_single.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/list_white_up.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_white_up.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/list_yellow_down.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_yellow_down.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/list_yellow_middle.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_yellow_middle.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/list_yellow_single.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_yellow_single.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/list_yellow_up.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_yellow_up.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/menu_delete.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_menu_delete.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/menu_move.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_menu_move.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/new_note_normal.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_new_note_normal.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/new_note_pressed.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_new_note_pressed.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/note_edit_color_selector_panel.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_note_edit_color_selector_panel.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/notification.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_notification.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/search_result.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_search_result.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/selected.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_selected.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/splash.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_splash.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/title_alert.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_title_alert.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/title_bar_bg.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_title_bar_bg.9.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/widget_2x_blue.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_blue.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/widget_2x_green.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_green.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/widget_2x_red.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_red.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/widget_2x_white.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_white.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/widget_2x_yellow.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_yellow.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/widget_4x_blue.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_blue.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/widget_4x_green.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_green.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/widget_4x_red.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_red.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/widget_4x_white.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_white.png.flat
-net.micode.notes.app-main-7\:/drawable-hdpi/widget_4x_yellow.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_yellow.png.flat
-net.micode.notes.app-main-7\:/drawable/new_note.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable_new_note.xml.flat
-net.micode.notes.app-main-7\:/drawable/splash.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable_splash.png.flat
-net.micode.notes.app-main-7\:/menu/call_note_edit.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\menu_call_note_edit.xml.flat
-net.micode.notes.app-main-7\:/menu/call_record_folder.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\menu_call_record_folder.xml.flat
-net.micode.notes.app-main-7\:/menu/note_edit.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\menu_note_edit.xml.flat
-net.micode.notes.app-main-7\:/menu/note_list.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\menu_note_list.xml.flat
-net.micode.notes.app-main-7\:/menu/note_list_dropdown.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\menu_note_list_dropdown.xml.flat
-net.micode.notes.app-main-7\:/menu/note_list_options.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\menu_note_list_options.xml.flat
-net.micode.notes.app-main-7\:/menu/sub_folder.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\menu_sub_folder.xml.flat
-net.micode.notes.app-main-7\:/raw-zh-rCN/introduction=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\raw-zh-rCN_introduction.flat
-net.micode.notes.app-main-7\:/raw/introduction=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\raw_introduction.flat
-net.micode.notes.app-main-7\:/xml/preferences.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\xml_preferences.xml.flat
-net.micode.notes.app-main-7\:/xml/searchable.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\xml_searchable.xml.flat
-net.micode.notes.app-main-7\:/xml/widget_2x_info.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\xml_widget_2x_info.xml.flat
-net.micode.notes.app-main-7\:/xml/widget_4x_info.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\xml_widget_4x_info.xml.flat
-net.micode.notes.app-mergeDebugResources-4\:/layout/account_dialog_title.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_account_dialog_title.xml.flat
-net.micode.notes.app-mergeDebugResources-4\:/layout/activity_splash.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_activity_splash.xml.flat
-net.micode.notes.app-mergeDebugResources-4\:/layout/add_account_text.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_add_account_text.xml.flat
-net.micode.notes.app-mergeDebugResources-4\:/layout/datetime_picker.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_datetime_picker.xml.flat
-net.micode.notes.app-mergeDebugResources-4\:/layout/dialog_edit_text.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_dialog_edit_text.xml.flat
-net.micode.notes.app-mergeDebugResources-4\:/layout/folder_list_item.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_folder_list_item.xml.flat
-net.micode.notes.app-mergeDebugResources-4\:/layout/note_edit.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_note_edit.xml.flat
-net.micode.notes.app-mergeDebugResources-4\:/layout/note_edit_list_item.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_note_edit_list_item.xml.flat
-net.micode.notes.app-mergeDebugResources-4\:/layout/note_item.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_note_item.xml.flat
-net.micode.notes.app-mergeDebugResources-4\:/layout/note_list.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_note_list.xml.flat
-net.micode.notes.app-mergeDebugResources-4\:/layout/note_list_dropdown_menu.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_note_list_dropdown_menu.xml.flat
-net.micode.notes.app-mergeDebugResources-4\:/layout/note_list_footer.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_note_list_footer.xml.flat
-net.micode.notes.app-mergeDebugResources-4\:/layout/settings_header.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_settings_header.xml.flat
-net.micode.notes.app-mergeDebugResources-4\:/layout/widget_2x.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_widget_2x.xml.flat
-net.micode.notes.app-mergeDebugResources-4\:/layout/widget_4x.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_widget_4x.xml.flat
+#Thu Jan 18 22:10:51 CST 2024
+net.micode.notes.app-main-7\:/color/primary_text_dark.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\color_primary_text_dark.xml.flat
+net.micode.notes.app-main-7\:/color/secondary_text_dark.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\color_secondary_text_dark.xml.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/a.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_a.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/abc.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_abc.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/bg_btn_set_color.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_bg_btn_set_color.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/bg_color_btn_mask.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_bg_color_btn_mask.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/call_record.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_call_record.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/clock.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_clock.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/daybackground.webp=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_daybackground.webp.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/delete.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_delete.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/dropdown_icon.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_dropdown_icon.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/edit_blue.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_blue.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/edit_green.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_green.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/edit_red.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_red.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/edit_title_blue.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_blue.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/edit_title_green.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_green.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/edit_title_red.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_red.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/edit_title_white.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_white.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/edit_title_yellow.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_yellow.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/edit_white.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_white.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/edit_yellow.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_yellow.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/font_large.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_large.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/font_normal.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_normal.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/font_size_selector_bg.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_size_selector_bg.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/font_small.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_small.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/font_super.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_super.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/icon_app.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_icon_app.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/icon_app_new.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_icon_app_new.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/list_background.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_background.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/list_blue_down.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_blue_down.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/list_blue_middle.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_blue_middle.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/list_blue_single.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_blue_single.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/list_blue_up.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_blue_up.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/list_folder.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_folder.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/list_footer_bg.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_footer_bg.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/list_green_down.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_green_down.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/list_green_middle.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_green_middle.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/list_green_single.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_green_single.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/list_green_up.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_green_up.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/list_red_down.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_red_down.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/list_red_middle.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_red_middle.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/list_red_single.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_red_single.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/list_red_up.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_red_up.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/list_white_down.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_white_down.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/list_white_middle.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_white_middle.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/list_white_single.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_white_single.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/list_white_up.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_white_up.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/list_yellow_down.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_yellow_down.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/list_yellow_middle.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_yellow_middle.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/list_yellow_single.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_yellow_single.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/list_yellow_up.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_yellow_up.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/menu_delete.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_menu_delete.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/menu_move.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_menu_move.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/new_note_normal.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_new_note_normal.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/new_note_pressed.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_new_note_pressed.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/nightbackground.webp=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_nightbackground.webp.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/note_edit_color_selector_panel.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_note_edit_color_selector_panel.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/notification.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_notification.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/search_result.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_search_result.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/selected.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_selected.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/splash.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_splash.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/title_alert.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_title_alert.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/title_bar_bg.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_title_bar_bg.9.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/widget_2x_blue.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_blue.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/widget_2x_green.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_green.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/widget_2x_red.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_red.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/widget_2x_white.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_white.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/widget_2x_yellow.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_yellow.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/widget_4x_blue.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_blue.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/widget_4x_green.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_green.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/widget_4x_red.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_red.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/widget_4x_white.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_white.png.flat
+net.micode.notes.app-main-7\:/drawable-hdpi/widget_4x_yellow.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_yellow.png.flat
+net.micode.notes.app-main-7\:/drawable/new_note.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable_new_note.xml.flat
+net.micode.notes.app-main-7\:/drawable/splash.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable_splash.png.flat
+net.micode.notes.app-main-7\:/menu/call_note_edit.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\menu_call_note_edit.xml.flat
+net.micode.notes.app-main-7\:/menu/call_record_folder.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\menu_call_record_folder.xml.flat
+net.micode.notes.app-main-7\:/menu/note_edit.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\menu_note_edit.xml.flat
+net.micode.notes.app-main-7\:/menu/note_list.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\menu_note_list.xml.flat
+net.micode.notes.app-main-7\:/menu/note_list_dropdown.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\menu_note_list_dropdown.xml.flat
+net.micode.notes.app-main-7\:/menu/note_list_options.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\menu_note_list_options.xml.flat
+net.micode.notes.app-main-7\:/menu/note_type.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\menu_note_type.xml.flat
+net.micode.notes.app-main-7\:/menu/sub_folder.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\menu_sub_folder.xml.flat
+net.micode.notes.app-main-7\:/raw-zh-rCN/introduction=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\raw-zh-rCN_introduction.flat
+net.micode.notes.app-main-7\:/raw/introduction=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\raw_introduction.flat
+net.micode.notes.app-main-7\:/xml/preferences.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\xml_preferences.xml.flat
+net.micode.notes.app-main-7\:/xml/searchable.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\xml_searchable.xml.flat
+net.micode.notes.app-main-7\:/xml/widget_2x_info.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\xml_widget_2x_info.xml.flat
+net.micode.notes.app-main-7\:/xml/widget_4x_info.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\xml_widget_4x_info.xml.flat
+net.micode.notes.app-mergeDebugResources-4\:/layout/account_dialog_title.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_account_dialog_title.xml.flat
+net.micode.notes.app-mergeDebugResources-4\:/layout/activity_change_password.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_activity_change_password.xml.flat
+net.micode.notes.app-mergeDebugResources-4\:/layout/activity_delete_password.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_activity_delete_password.xml.flat
+net.micode.notes.app-mergeDebugResources-4\:/layout/activity_login.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_activity_login.xml.flat
+net.micode.notes.app-mergeDebugResources-4\:/layout/activity_set_loginpassword.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_activity_set_loginpassword.xml.flat
+net.micode.notes.app-mergeDebugResources-4\:/layout/activity_splash.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_activity_splash.xml.flat
+net.micode.notes.app-mergeDebugResources-4\:/layout/add_account_text.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_add_account_text.xml.flat
+net.micode.notes.app-mergeDebugResources-4\:/layout/datetime_picker.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_datetime_picker.xml.flat
+net.micode.notes.app-mergeDebugResources-4\:/layout/dialog_edit_text.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_dialog_edit_text.xml.flat
+net.micode.notes.app-mergeDebugResources-4\:/layout/folder_list_item.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_folder_list_item.xml.flat
+net.micode.notes.app-mergeDebugResources-4\:/layout/note_edit.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_note_edit.xml.flat
+net.micode.notes.app-mergeDebugResources-4\:/layout/note_edit_list_item.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_note_edit_list_item.xml.flat
+net.micode.notes.app-mergeDebugResources-4\:/layout/note_item.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_note_item.xml.flat
+net.micode.notes.app-mergeDebugResources-4\:/layout/note_list.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_note_list.xml.flat
+net.micode.notes.app-mergeDebugResources-4\:/layout/note_list_dropdown_menu.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_note_list_dropdown_menu.xml.flat
+net.micode.notes.app-mergeDebugResources-4\:/layout/note_list_footer.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_note_list_footer.xml.flat
+net.micode.notes.app-mergeDebugResources-4\:/layout/settings_header.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_settings_header.xml.flat
+net.micode.notes.app-mergeDebugResources-4\:/layout/widget_2x.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_widget_2x.xml.flat
+net.micode.notes.app-mergeDebugResources-4\:/layout/widget_4x.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_widget_4x.xml.flat
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-af/values-af.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-af/values-af.xml
deleted file mode 100644
index 84812a8e..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-af/values-af.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Navigeer tuis"
- "Navigeer op"
- "Nog opsies"
- "Klaar"
- "Sien alles"
- "Kies \'n program"
- "Vee navraag uit"
- "Soeknavraag"
- "Soek"
- "Dien navraag in"
- "Stemsoektog"
- "Deel met"
- "Deel met %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-am/values-am.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-am/values-am.xml
deleted file mode 100644
index 6d8ce8e5..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-am/values-am.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "ወደ መነሻ ይዳስሱ"
- "ወደ ላይ ይዳስሱ"
- "ተጨማሪ አማራጮች"
- "ተከናውኗል"
- "ሁሉንም ይመልከቱ"
- "መተግበሪያ ይምረጡ"
- "መጠይቅ አጽዳ"
- "የፍለጋ ጥያቄ"
- "ፍለጋ"
- "መጠይቅ ያስረክቡ"
- "የድምፅ ፍለጋ"
- "ከሚከተለው ጋር ያጋሩ"
- "ከ%s ጋር ያጋሩ"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ar/values-ar.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ar/values-ar.xml
deleted file mode 100644
index 6ee5951b..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ar/values-ar.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "التنقل إلى الشاشة الرئيسية"
- "التنقل إلى أعلى"
- "خيارات إضافية"
- "تم"
- "عرض الكل"
- "اختيار تطبيق"
- "محو طلب البحث"
- "طلب البحث"
- "بحث"
- "إرسال طلب البحث"
- "البحث الصوتي"
- "مشاركة مع"
- "مشاركة مع %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bg/values-bg.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bg/values-bg.xml
deleted file mode 100644
index aa7ff35a..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bg/values-bg.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Придвижване към „Начало“"
- "Придвижване нагоре"
- "Още опции"
- "Готово"
- "Вижте всички"
- "Изберете приложение"
- "Изчистване на заявката"
- "Заявка за търсене"
- "Търсене"
- "Изпращане на заявката"
- "Гласово търсене"
- "Споделяне със:"
- "Споделяне със: %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml
deleted file mode 100644
index 3ce5f3ee..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "হোম এ নেভিগেট করুন"
- "উপরের দিকে নেভিগেট করুন"
- "আরো বিকল্প"
- "সম্পন্ন হয়েছে"
- "সবগুলো দেখুন"
- "একটি অ্যাপ্লিকেশান চয়ন করুন"
- "ক্যোয়ারী সাফ করুন"
- "ক্যোয়ারী অনুসন্ধান করুন"
- "অনুসন্ধান করুন"
- "ক্যোয়ারী জমা দিন"
- "ভয়েস অনুসন্ধান"
- "এর সাথে ভাগ করুন"
- "%s এর সাথে ভাগ করুন"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ca/values-ca.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ca/values-ca.xml
deleted file mode 100644
index 80dd170d..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ca/values-ca.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Navega a la pàgina d\'inici"
- "Navega cap a dalt"
- "Més opcions"
- "Fet"
- "Mostra\'ls tots"
- "Selecciona una aplicació"
- "Esborra la consulta"
- "Consulta de cerca"
- "Cerca"
- "Envia la consulta"
- "Cerca per veu"
- "Comparteix amb"
- "Comparteix amb %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-cs/values-cs.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-cs/values-cs.xml
deleted file mode 100644
index a862180a..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-cs/values-cs.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Přejít na plochu"
- "Přejít nahoru"
- "Více možností"
- "Hotovo"
- "Zobrazit vše"
- "Vybrat aplikaci"
- "Smazat dotaz"
- "Vyhledávací dotaz"
- "Hledat"
- "Odeslat dotaz"
- "Hlasové vyhledávání"
- "Sdílet pomocí"
- "Sdílet pomocí %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-da/values-da.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-da/values-da.xml
deleted file mode 100644
index 91f5306b..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-da/values-da.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Naviger hjem"
- "Naviger op"
- "Flere muligheder"
- "Luk"
- "Se alle"
- "Vælg en app"
- "Ryd forespørgslen"
- "Søgeforespørgsel"
- "Søg"
- "Indsend forespørgslen"
- "Stemmesøgning"
- "Del med"
- "Del med %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-de/values-de.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-de/values-de.xml
deleted file mode 100644
index b6912f6b..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-de/values-de.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Zur Startseite"
- "Nach oben"
- "Weitere Optionen"
- "Fertig"
- "Alle ansehen"
- "App auswählen"
- "Suchanfrage löschen"
- "Suchanfrage"
- "Suchen"
- "Suchanfrage senden"
- "Sprachsuche"
- "Freigeben für"
- "Freigeben für %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-el/values-el.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-el/values-el.xml
deleted file mode 100644
index ad57bc33..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-el/values-el.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Πλοήγηση στην αρχική σελίδα"
- "Πλοήγηση προς τα επάνω"
- "Περισσότερες επιλογές"
- "Τέλος"
- "Προβολή όλων"
- "Επιλέξτε κάποια εφαρμογή"
- "Διαγραφή ερωτήματος"
- "Ερώτημα αναζήτησης"
- "Αναζήτηση"
- "Υποβολή ερωτήματος"
- "Φωνητική αναζήτηση"
- "Κοινή χρήση με"
- "Κοινή χρήση με %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml
deleted file mode 100644
index dec9a30f..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Navigate home"
- "Navigate up"
- "More options"
- "Finished"
- "See all"
- "Choose an app"
- "Clear query"
- "Search query"
- "Search"
- "Submit query"
- "Voice search"
- "Share with"
- "Share with %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml
deleted file mode 100644
index dec9a30f..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Navigate home"
- "Navigate up"
- "More options"
- "Finished"
- "See all"
- "Choose an app"
- "Clear query"
- "Search query"
- "Search"
- "Submit query"
- "Voice search"
- "Share with"
- "Share with %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml
deleted file mode 100644
index 7e84c580..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Navegar a la página principal"
- "Navegar hacia arriba"
- "Más opciones"
- "Listo"
- "Ver todo"
- "Elige una aplicación."
- "Eliminar la consulta"
- "Consulta de búsqueda"
- "Búsqueda"
- "Enviar consulta"
- "Búsqueda por voz"
- "Compartir con"
- "Compartir con %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es/values-es.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es/values-es.xml
deleted file mode 100644
index b05af8fe..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es/values-es.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Ir a la pantalla de inicio"
- "Desplazarse hacia arriba"
- "Más opciones"
- "Listo"
- "Ver todo"
- "Seleccionar una aplicación"
- "Borrar consulta"
- "Consulta"
- "Buscar"
- "Enviar consulta"
- "Búsqueda por voz"
- "Compartir con"
- "Compartir con %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml
deleted file mode 100644
index 90b6d81a..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Navigeerimine avaekraanile"
- "Navigeerimine üles"
- "Rohkem valikuid"
- "Valmis"
- "Kuva kõik"
- "Valige rakendus"
- "Päringu tühistamine"
- "Otsingupäring"
- "Otsing"
- "Päringu esitamine"
- "Häälotsing"
- "Jagamine:"
- "Jagamine kasutajaga %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml
deleted file mode 100644
index 653ccd97..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Joan orri nagusira"
- "Joan gora"
- "Aukera gehiago"
- "Eginda"
- "Ikusi guztiak"
- "Aukeratu aplikazio bat"
- "Garbitu kontsulta"
- "Bilaketa-kontsulta"
- "Bilatu"
- "Bidali kontsulta"
- "Ahots bidezko bilaketa"
- "Partekatu hauekin"
- "Partekatu %s erabiltzailearekin"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fa/values-fa.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fa/values-fa.xml
deleted file mode 100644
index 04db10a5..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fa/values-fa.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "پیمایش به صفحه اصلی"
- "پیمایش به بالا"
- "گزینههای بیشتر"
- "انجام شد"
- "مشاهده همه"
- "انتخاب برنامه"
- "پاک کردن عبارت جستجو"
- "عبارت جستجو"
- "جستجو"
- "ارسال عبارت جستجو"
- "جستجوی شفاهی"
- "اشتراکگذاری با"
- "اشتراکگذاری با %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fi/values-fi.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fi/values-fi.xml
deleted file mode 100644
index 883e8f4e..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fi/values-fi.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Siirry etusivulle"
- "Siirry ylös"
- "Lisää"
- "Valmis"
- "Näytä kaikki"
- "Valitse sovellus"
- "Tyhjennä kysely"
- "Hakulauseke"
- "Haku"
- "Lähetä kysely"
- "Puhehaku"
- "Jakaminen:"
- "Jakaminen: %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml
deleted file mode 100644
index bb824264..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Revenir à l\'accueil"
- "Revenir en haut de la page"
- "Plus d\'options"
- "Terminé"
- "Voir toutes les chaînes"
- "Sélectionnez une application"
- "Effacer la requête"
- "Requête de recherche"
- "Rechercher"
- "Envoyer la requête"
- "Recherche vocale"
- "Partager avec"
- "Partager avec %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr/values-fr.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr/values-fr.xml
deleted file mode 100644
index a73a2b33..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr/values-fr.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Revenir à l\'accueil"
- "Revenir en haut de la page"
- "Plus d\'options"
- "OK"
- "Tout afficher"
- "Sélectionner une application"
- "Effacer la requête"
- "Requête de recherche"
- "Rechercher"
- "Envoyer la requête"
- "Recherche vocale"
- "Partager avec"
- "Partager avec %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml
deleted file mode 100644
index d5ca5e2a..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Ir á páxina de inicio"
- "Desprazarse cara arriba"
- "Máis opcións"
- "Feito"
- "Ver todas"
- "Escoller unha aplicación"
- "Borrar consulta"
- "Consulta de busca"
- "Buscar"
- "Enviar consulta"
- "Busca de voz"
- "Compartir con"
- "Compartir con %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml
deleted file mode 100644
index e38bb90b..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
- 54dip
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml
deleted file mode 100644
index 56a5d476..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hi/values-hi.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hi/values-hi.xml
deleted file mode 100644
index c3f81b63..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hi/values-hi.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "मुखपृष्ठ पर नेविगेट करें"
- "ऊपर नेविगेट करें"
- "अधिक विकल्प"
- "पूर्ण"
- "सभी देखें"
- "कोई एप्लिकेशन चुनें"
- "क्वेरी साफ़ करें"
- "खोज क्वेरी"
- "खोजें"
- "क्वेरी सबमिट करें"
- "ध्वनि खोज"
- "इसके द्वारा साझा करें"
- "%s के साथ साझा करें"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hr/values-hr.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hr/values-hr.xml
deleted file mode 100644
index 4eefcd30..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hr/values-hr.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Idi na početnu"
- "Idi gore"
- "Dodatne opcije"
- "Gotovo"
- "Prikaži sve"
- "Odabir aplikacije"
- "Izbriši upit"
- "Upit za pretraživanje"
- "Pretraživanje"
- "Pošalji upit"
- "Glasovno pretraživanje"
- "Dijeljenje sa"
- "Dijeljenje sa: %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hu/values-hu.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hu/values-hu.xml
deleted file mode 100644
index 7a92ebe5..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hu/values-hu.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Ugrás a főoldalra"
- "Felfelé mozgatás"
- "További lehetőségek"
- "Kész"
- "Összes megtekintése"
- "Válasszon ki egy alkalmazást"
- "Lekérdezés törlése"
- "Keresési lekérdezés"
- "Keresés"
- "Lekérdezés küldése"
- "Hangalapú keresés"
- "Megosztás a következővel:"
- "Megosztás a következővel: %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml
deleted file mode 100644
index 9eaf5bba..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Ուղղվել տուն"
- "Ուղղվել վերև"
- "Այլ ընտրանքներ"
- "Կատարված է"
- "Տեսնել բոլորը"
- "Ընտրել ծրագիր"
- "Մաքրել հարցումը"
- "Որոնման հարցում"
- "Որոնել"
- "Ուղարկել հարցումը"
- "Ձայնային որոնում"
- "Տարածել"
- "Տարածել ըստ %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-in/values-in.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-in/values-in.xml
deleted file mode 100644
index ca27a16a..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-in/values-in.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Navigasi ke beranda"
- "Navigasi naik"
- "Opsi lain"
- "Selesai"
- "Lihat semua"
- "Pilih aplikasi"
- "Hapus kueri"
- "Kueri penelusuran"
- "Telusuri"
- "Kirim kueri"
- "Penelusuran suara"
- "Bagikan dengan"
- "Bagikan dengan %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml
deleted file mode 100644
index a43b8296..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Fara heim"
- "Fara upp"
- "Fleiri valkostir"
- "Lokið"
- "Sjá allt"
- "Veldu forrit"
- "Hreinsa fyrirspurn"
- "Leitarfyrirspurn"
- "Leita"
- "Senda fyrirspurn"
- "Raddleit"
- "Deila með"
- "Deila með %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-it/values-it.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-it/values-it.xml
deleted file mode 100644
index 5afc3976..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-it/values-it.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Vai alla home page"
- "Vai in alto"
- "Altre opzioni"
- "Fine"
- "Visualizza tutte"
- "Scegli un\'applicazione"
- "Cancella query"
- "Query di ricerca"
- "Cerca"
- "Invia query"
- "Ricerca vocale"
- "Condividi con"
- "Condividi con %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-iw/values-iw.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-iw/values-iw.xml
deleted file mode 100644
index 8d76e348..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-iw/values-iw.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "נווט לדף הבית"
- "נווט למעלה"
- "עוד אפשרויות"
- "בוצע"
- "ראה הכול"
- "בחר אפליקציה"
- "מחק שאילתה"
- "שאילתת חיפוש"
- "חפש"
- "שלח שאילתה"
- "חיפוש קולי"
- "שתף עם"
- "שתף עם %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ja/values-ja.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ja/values-ja.xml
deleted file mode 100644
index d638b592..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ja/values-ja.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "ホームへ移動"
- "上へ移動"
- "その他のオプション"
- "完了"
- "すべて表示"
- "アプリの選択"
- "検索キーワードを削除"
- "検索キーワード"
- "検索"
- "検索キーワードを送信"
- "音声検索"
- "共有"
- "%sと共有"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml
deleted file mode 100644
index 269ffd01..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "მთავარზე ნავიგაცია"
- "ზემოთ ნავიგაცია"
- "მეტი ვარიანტები"
- "დასრულდა"
- "ყველას ნახვა"
- "აპის არჩევა"
- "მოთხოვნის გასუფთავება"
- "ძიების მოთხოვნა"
- "ძიება"
- "მოთხოვნის გადაგზავნა"
- "ხმოვანი ძიება"
- "გაზიარება:"
- "%s-თან გაზიარება"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml
deleted file mode 100644
index 87d0ff34..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Негізгі бетте қозғалу"
- "Жоғары қозғалу"
- "Басқа опциялар"
- "Орындалды"
- "Барлығын көру"
- "Қолданбаны таңдау"
- "Сұрақты жою"
- "Сұрақты іздеу"
- "Іздеу"
- "Сұрақты жіберу"
- "Дауыс арқылы іздеу"
- "Бөлісу"
- "%s бөлісу"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-km-rKH/values-km-rKH.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-km-rKH/values-km-rKH.xml
deleted file mode 100644
index 14bcf76e..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-km-rKH/values-km-rKH.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "រកមើលទៅដើម"
- "រកមើលឡើងលើ"
- "ជម្រើសច្រើនទៀត"
- "រួចរាល់"
- "មើលទាំងអស់"
- "ជ្រើសកម្មវិធី"
- "សម្អាតសំណួរ"
- "ស្វែងរកសំណួរ"
- "ស្វែងរក"
- "ដាក់ស្នើសំណួរ"
- "ការស្វែងរកសំឡេង"
- "ចែករំលែកជាមួយ"
- "ចែករំលែកជាមួយ %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kn-rIN/values-kn-rIN.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kn-rIN/values-kn-rIN.xml
deleted file mode 100644
index 52464af0..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kn-rIN/values-kn-rIN.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
- "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
- "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"
- "ಮುಗಿದಿದೆ"
- "ಎಲ್ಲವನ್ನೂ ನೋಡಿ"
- "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ"
- "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು"
- "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"
- "ಹುಡುಕು"
- "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು"
- "ಧ್ವನಿ ಹುಡುಕಾಟ"
- "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
- "%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ko/values-ko.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ko/values-ko.xml
deleted file mode 100644
index 60a62613..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ko/values-ko.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "홈 탐색"
- "위로 탐색"
- "옵션 더보기"
- "완료"
- "전체 보기"
- "앱 선택"
- "검색어 삭제"
- "검색어"
- "검색"
- "검색어 보내기"
- "음성 검색"
- "공유 대상"
- "%s와(과) 공유"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ky-rKG/values-ky-rKG.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ky-rKG/values-ky-rKG.xml
deleted file mode 100644
index 6d6999bb..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ky-rKG/values-ky-rKG.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Үйгө багыттоо"
- "Жогору"
- "Көбүрөөк мүмкүнчүлүктөр"
- "Даяр"
- "Бардыгын көрүү"
- "Колдонмо тандоо"
- "Талаптарды тазалоо"
- "Издөө талаптары"
- "Издөө"
- "Талап жөнөтүү"
- "Үн аркылуу издөө"
- "Бөлүшүү"
- "%s аркылуу бөлүшүү"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-land/values-land.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-land/values-land.xml
deleted file mode 100644
index fabf9eb2..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-land/values-land.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
- true
- true
- 48dp
- 0dp
- 32dp
- 12dp
- 14dp
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml
deleted file mode 100644
index 55aba508..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml
+++ /dev/null
@@ -1,14 +0,0 @@
-
-
- true
- true
- 440dp
- 192dip
- - 60%
- - 90%
- - 60%
- - 90%
- 4
-
-
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lo-rLA/values-lo-rLA.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lo-rLA/values-lo-rLA.xml
deleted file mode 100644
index 562656b0..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lo-rLA/values-lo-rLA.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "ກັບໄປໜ້າຫຼັກ"
- "ຂຶ້ນເທິງ"
- "ໂຕເລືອກອື່ນ"
- "ແລ້ວໆ"
- "ເບິ່ງທັງຫມົດ"
- "ເລືອກແອັບຯ"
- "ລຶບຂໍ້ຄວາມຊອກຫາ"
- "ຊອກຫາ"
- "ຊອກຫາ"
- "ສົ່ງການຊອກຫາ"
- "ຊອກຫາດ້ວຍສຽງ"
- "ແບ່ງປັນກັບ"
- "ແບ່ງປັນກັບ %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lt/values-lt.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lt/values-lt.xml
deleted file mode 100644
index a7818b51..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lt/values-lt.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Eiti į pagrindinį puslapį"
- "Eiti į viršų"
- "Daugiau parinkčių"
- "Atlikta"
- "Peržiūrėti viską"
- "Pasirinkti programą"
- "Išvalyti užklausą"
- "Paieškos užklausa"
- "Paieška"
- "Pateikti užklausą"
- "Paieška balsu"
- "Bendrinti naudojant"
- "Bendrinti naudojant „%s“"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lv/values-lv.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lv/values-lv.xml
deleted file mode 100644
index 5c9058b7..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lv/values-lv.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Pārvietoties uz sākuma ekrānu"
- "Pārvietoties augšup"
- "Vairāk opciju"
- "Gatavs"
- "Skatīt visu"
- "Izvēlieties lietotni"
- "Notīrīt vaicājumu"
- "Meklēšanas vaicājums"
- "Meklēt"
- "Iesniegt vaicājumu"
- "Meklēšana ar balsi"
- "Kopīgot ar:"
- "Kopīgot ar %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mk-rMK/values-mk-rMK.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mk-rMK/values-mk-rMK.xml
deleted file mode 100644
index cab46deb..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mk-rMK/values-mk-rMK.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
- "Движи се кон дома"
- "Движи се нагоре"
- "Повеќе опции"
- "Готово"
- "Види ги сите"
- "Избери апликација"
- "Исчисти барање"
- "Пребарај барање"
- "Пребарај"
- "Поднеси барање"
- "Гласовно пребарување"
- "Сподели со"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ml-rIN/values-ml-rIN.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ml-rIN/values-ml-rIN.xml
deleted file mode 100644
index 93c373f2..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ml-rIN/values-ml-rIN.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
- "മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
- "കൂടുതല് ഓപ്ഷനുകള്"
- "പൂർത്തിയാക്കി"
- "എല്ലാം കാണുക"
- "ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക"
- "അന്വേഷണം മായ്ക്കുക"
- "തിരയൽ അന്വേഷണം"
- "തിരയൽ"
- "അന്വേഷണം സമർപ്പിക്കുക"
- "വോയ്സ് തിരയൽ"
- "ഇവരുമായി പങ്കിടുക"
- "%s എന്നതുമായി പങ്കിടുക"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mn-rMN/values-mn-rMN.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mn-rMN/values-mn-rMN.xml
deleted file mode 100644
index 5ee6af16..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mn-rMN/values-mn-rMN.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Нүүр хуудас руу шилжих"
- "Дээш шилжих"
- "Нэмэлт сонголтууд"
- "Дууссан"
- "Бүгдийг харах"
- "Апп сонгох"
- "Асуулгыг цэвэрлэх"
- "Хайх асуулга"
- "Хайх"
- "Асуулгыг илгээх"
- "Дуут хайлт"
- "Хуваалцах"
- "%s-тай хуваалцах"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mr-rIN/values-mr-rIN.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mr-rIN/values-mr-rIN.xml
deleted file mode 100644
index a6ec02de..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mr-rIN/values-mr-rIN.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "मुख्यपृष्ठ नेव्हिगेट करा"
- "वर नेव्हिगेट करा"
- "अधिक पर्याय"
- "पूर्ण झाले"
- "सर्व पहा"
- "एक अॅप निवडा"
- "क्वेरी स्पष्ट करा"
- "शोध क्वेरी"
- "शोध"
- "क्वेरी सबमिट करा"
- "व्हॉइस शोध"
- "यांच्यासह सामायिक करा"
- "%s सह सामायिक करा"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ms-rMY/values-ms-rMY.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ms-rMY/values-ms-rMY.xml
deleted file mode 100644
index 9d9261e1..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ms-rMY/values-ms-rMY.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Navigasi skrin utama"
- "Navigasi ke atas"
- "Lagi pilihan"
- "Selesai"
- "Lihat semua"
- "Pilih apl"
- "Kosongkan pertanyaan"
- "Pertanyaan carian"
- "Cari"
- "Serah pertanyaan"
- "Carian suara"
- "Kongsi dengan"
- "Kongsi dengan %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-my-rMM/values-my-rMM.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-my-rMM/values-my-rMM.xml
deleted file mode 100644
index 43155fba..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-my-rMM/values-my-rMM.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "မူလနေရာကို သွားရန်"
- "အပေါ်သို့သွားရန်"
- "ပိုမိုရွေးချယ်စရာများ"
- "ပြီးဆုံးပါပြီ"
- "အားလုံးကို ကြည့်ရန်"
- "အပလီကေးရှင်း တစ်ခုခုကို ရွေးချယ်ပါ"
- "ရှာစရာ အချက်အလက်များ ရှင်းလင်းရန်"
- "ရှာစရာ အချက်အလက်နေရာ"
- "ရှာဖွေရန်"
- "ရှာဖွေစရာ အချက်အလက်ကို အတည်ပြုရန်"
- "အသံဖြင့် ရှာဖွေခြင်း"
- "မျှဝေဖို့ ရွေးပါ"
- "%s ကို မျှဝေပါရန်"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-nb/values-nb.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-nb/values-nb.xml
deleted file mode 100644
index 5731f03b..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-nb/values-nb.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Gå til startsiden"
- "Gå opp"
- "Flere alternativer"
- "Ferdig"
- "Se alle"
- "Velg en app"
- "Slett søket"
- "Søkeord"
- "Søk"
- "Utfør søket"
- "Talesøk"
- "Del med"
- "Del med %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ne-rNP/values-ne-rNP.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ne-rNP/values-ne-rNP.xml
deleted file mode 100644
index 33cdeb99..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ne-rNP/values-ne-rNP.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "गृह खोज्नुहोस्"
- "माथि खोज्नुहोस्"
- "थप विकल्पहरू"
- "सम्पन्न भयो"
- "सबै हेर्नुहोस्"
- "एउटा अनुप्रयोग छान्नुहोस्"
- "प्रश्न हटाउनुहोस्"
- "जिज्ञासाको खोज गर्नुहोस्"
- "खोज्नुहोस्"
- "जिज्ञासा पेस गर्नुहोस्"
- "भ्वाइस खोजी"
- "साझेदारी गर्नुहोस्..."
- "%s सँग साझेदारी गर्नुहोस्"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-night-v8/values-night-v8.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-night-v8/values-night-v8.xml
deleted file mode 100644
index c10c0361..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-night-v8/values-night-v8.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-nl/values-nl.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-nl/values-nl.xml
deleted file mode 100644
index 2efd0aa6..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-nl/values-nl.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Navigeren naar startpositie"
- "Omhoog navigeren"
- "Meer opties"
- "Gereed"
- "Alles weergeven"
- "Een app selecteren"
- "Zoekopdracht wissen"
- "Zoekopdracht"
- "Zoeken"
- "Zoekopdracht verzenden"
- "Gesproken zoekopdracht"
- "Delen met"
- "Delen met %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pl/values-pl.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pl/values-pl.xml
deleted file mode 100644
index a01797de..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pl/values-pl.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Przejdź do strony głównej"
- "Przejdź wyżej"
- "Więcej opcji"
- "Gotowe"
- "Zobacz wszystkie"
- "Wybierz aplikację"
- "Wyczyść zapytanie"
- "Wyszukiwane hasło"
- "Szukaj"
- "Wyślij zapytanie"
- "Wyszukiwanie głosowe"
- "Udostępnij dla"
- "Udostępnij dla %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-port/values-port.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-port/values-port.xml
deleted file mode 100644
index 7a925dc7..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-port/values-port.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
- false
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml
deleted file mode 100644
index 04c8392d..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Navegar para a página inicial"
- "Navegar para cima"
- "Mais opções"
- "Concluído"
- "Ver tudo"
- "Escolher uma aplicação"
- "Limpar consulta"
- "Consulta de pesquisa"
- "Pesquisar"
- "Enviar consulta"
- "Pesquisa por voz"
- "Partilhar com"
- "Partilhar com %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pt/values-pt.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pt/values-pt.xml
deleted file mode 100644
index b18ecb72..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pt/values-pt.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Navegar para a página inicial"
- "Navegar para cima"
- "Mais opções"
- "Concluído"
- "Ver tudo"
- "Selecione um aplicativo"
- "Limpar consulta"
- "Consulta de pesquisa"
- "Pesquisar"
- "Enviar consulta"
- "Pesquisa por voz"
- "Compartilhar com"
- "Compartilhar com %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ro/values-ro.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ro/values-ro.xml
deleted file mode 100644
index e4747858..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ro/values-ro.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Navigați la ecranul de pornire"
- "Navigați în sus"
- "Mai multe opțiuni"
- "Terminat"
- "Afișați-le pe toate"
- "Alegeți o aplicaţie"
- "Ștergeți interogarea"
- "Interogare de căutare"
- "Căutați"
- "Trimiteți interogarea"
- "Căutare vocală"
- "Trimiteți la"
- "Trimiteți la %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ru/values-ru.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ru/values-ru.xml
deleted file mode 100644
index ac7bee01..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ru/values-ru.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Перейти на главный экран"
- "Перейти вверх"
- "Другие параметры"
- "Готово"
- "Показать все"
- "Выбрать приложение"
- "Удалить запрос"
- "Поисковый запрос"
- "Поиск"
- "Отправить запрос"
- "Голосовой поиск"
- "Открыть доступ"
- "Открыть доступ пользователю %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-si-rLK/values-si-rLK.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-si-rLK/values-si-rLK.xml
deleted file mode 100644
index 57bf17c5..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-si-rLK/values-si-rLK.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "ගෙදරට සංචාලනය කරන්න"
- "ඉහලට සංචාලනය කරන්න"
- "තවත් විකල්ප"
- "අවසාන වූ"
- "සියල්ල බලන්න"
- "යෙදුමක් තෝරන්න"
- "විමසුම හිස් කරන්න"
- "සෙවුම් විමසුම"
- "සෙවීම"
- "විමසුම යොමු කරන්න"
- "හඬ සෙවීම"
- "සමඟ බෙදාගන්න"
- "%s සමඟ බෙදාගන්න"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sk/values-sk.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sk/values-sk.xml
deleted file mode 100644
index 803a8509..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sk/values-sk.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Prejsť na plochu"
- "Prejsť hore"
- "Ďalšie možnosti"
- "Hotovo"
- "Zobraziť všetko"
- "Zvoľte aplikáciu"
- "Vymazať dopyt"
- "Vyhľadávací dopyt"
- "Hľadať"
- "Odoslať dopyt"
- "Hlasové vyhľadávanie"
- "Zdieľať pomocou"
- "Zdieľať pomocou %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sl/values-sl.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sl/values-sl.xml
deleted file mode 100644
index fedbf1b4..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sl/values-sl.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Krmarjenje domov"
- "Krmarjenje navzgor"
- "Več možnosti"
- "Končano"
- "Pokaži vse"
- "Izbira aplikacije"
- "Izbris poizvedbe"
- "Iskalna poizvedba"
- "Iskanje"
- "Pošiljanje poizvedbe"
- "Glasovno iskanje"
- "Deljenje z"
- "Deljenje z:"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sr/values-sr.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sr/values-sr.xml
deleted file mode 100644
index 473792fd..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sr/values-sr.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Одлазак на Почетну"
- "Кретање нагоре"
- "Још опција"
- "Готово"
- "Прикажи све"
- "Избор апликације"
- "Брисање упита"
- "Упит за претрагу"
- "Претрага"
- "Слање упита"
- "Гласовна претрага"
- "Дели са"
- "Дели са апликацијом %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sv/values-sv.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sv/values-sv.xml
deleted file mode 100644
index 8376337e..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sv/values-sv.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Visa startsidan"
- "Navigera uppåt"
- "Fler alternativ"
- "Klart"
- "Visa alla"
- "Välj en app"
- "Ta bort frågan"
- "Sökfråga"
- "Sök"
- "Skicka fråga"
- "Röstsökning"
- "Dela med"
- "Dela med %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sw/values-sw.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sw/values-sw.xml
deleted file mode 100644
index 3c123274..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sw/values-sw.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Nenda mwanzo"
- "Nenda juu"
- "Chaguo zaidi"
- "Nimemaliza"
- "Angalia zote"
- "Chagua programu"
- "Futa hoja"
- "Hoja ya utafutaji"
- "Tafuta"
- "Wasilisha hoja"
- "Tafuta kwa kutamka"
- "Shiriki na:"
- "Shiriki na %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml
deleted file mode 100644
index 4defbcd1..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
- 24dp
- 64dp
- 4dp
- 8dp
- 18dp
- 580dp
- 16dp
- 20dp
- 5
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ta-rIN/values-ta-rIN.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ta-rIN/values-ta-rIN.xml
deleted file mode 100644
index 433fd076..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ta-rIN/values-ta-rIN.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "முகப்பிற்கு வழிசெலுத்து"
- "மேலே வழிசெலுத்து"
- "மேலும் விருப்பங்கள்"
- "முடிந்தது"
- "எல்லாம் காட்டு"
- "பயன்பாட்டைத் தேர்வுசெய்க"
- "வினவலை அழி"
- "தேடல் வினவல்"
- "தேடு"
- "வினவலைச் சமர்ப்பி"
- "குரல் தேடல்"
- "இதனுடன் பகிர்"
- "%s உடன் பகிர்"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-te-rIN/values-te-rIN.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-te-rIN/values-te-rIN.xml
deleted file mode 100644
index 2140213f..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-te-rIN/values-te-rIN.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "హోమ్కు నావిగేట్ చేయండి"
- "పైకి నావిగేట్ చేయండి"
- "మరిన్ని ఎంపికలు"
- "పూర్తయింది"
- "అన్నీ చూడండి"
- "అనువర్తనాన్ని ఎంచుకోండి"
- "ప్రశ్నను క్లియర్ చేయి"
- "ప్రశ్న శోధించండి"
- "శోధించు"
- "ప్రశ్నని సమర్పించు"
- "వాయిస్ శోధన"
- "వీరితో భాగస్వామ్యం చేయి"
- "%sతో భాగస్వామ్యం చేయి"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-th/values-th.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-th/values-th.xml
deleted file mode 100644
index dbd3724c..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-th/values-th.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "นำทางไปหน้าแรก"
- "นำทางขึ้น"
- "ตัวเลือกอื่น"
- "เสร็จสิ้น"
- "ดูทั้งหมด"
- "เลือกแอป"
- "ล้างข้อความค้นหา"
- "ข้อความค้นหา"
- "ค้นหา"
- "ส่งข้อความค้นหา"
- "ค้นหาด้วยเสียง"
- "แชร์กับ"
- "แชร์กับ %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-tl/values-tl.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-tl/values-tl.xml
deleted file mode 100644
index 55a0f6c8..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-tl/values-tl.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Mag-navigate patungo sa home"
- "Mag-navigate pataas"
- "Higit pang mga opsyon"
- "Tapos na"
- "Tingnan lahat"
- "Pumili ng isang app"
- "I-clear ang query"
- "Query sa paghahanap"
- "Maghanap"
- "Isumite ang query"
- "Paghahanap gamit ang boses"
- "Ibahagi sa/kay"
- "Ibahagi sa/kay %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-tr/values-tr.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-tr/values-tr.xml
deleted file mode 100644
index 2c227a35..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-tr/values-tr.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Ana ekrana git"
- "Yukarı git"
- "Diğer seçenekler"
- "Tamamlandı"
- "Tümünü göster"
- "Bir uygulama seçin"
- "Sorguyu temizle"
- "Arama sorgusu"
- "Ara"
- "Sorguyu gönder"
- "Sesli arama"
- "Şununla paylaş"
- "%s ile paylaş"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-uk/values-uk.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-uk/values-uk.xml
deleted file mode 100644
index 0bf05dae..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-uk/values-uk.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Перейти на головний"
- "Перейти вгору"
- "Інші опції"
- "Готово"
- "Переглянути всі"
- "Вибрати програму"
- "Очистити запит"
- "Пошуковий запит"
- "Пошук"
- "Надіслати запит"
- "Голосовий пошук"
- "Надіслати через"
- "Надіслати через %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ur-rPK/values-ur-rPK.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ur-rPK/values-ur-rPK.xml
deleted file mode 100644
index f4197592..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ur-rPK/values-ur-rPK.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "ہوم پر نیویگیٹ کریں"
- "اوپر نیویگیٹ کریں"
- "مزید اختیارات"
- "ہو گیا"
- "سبھی دیکھیں"
- "ایک ایپ منتخب کریں"
- "استفسار صاف کریں"
- "استفسار تلاش کریں"
- "تلاش کریں"
- "استفسار جمع کرائیں"
- "صوتی تلاش"
- "اشتراک کریں مع"
- "%s کے ساتھ اشتراک کریں"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-uz-rUZ/values-uz-rUZ.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-uz-rUZ/values-uz-rUZ.xml
deleted file mode 100644
index 15933f1c..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-uz-rUZ/values-uz-rUZ.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
- "Boshiga o‘tish"
- "Yuqoriga o‘tish"
- "Qo‘shimcha sozlamalar"
- "Tayyor"
- "Barchasini ko‘rish"
- "Dastur tanlang"
- "So‘rovni tozalash"
- "So‘rovni izlash"
- "Izlash"
- "So‘rov yaratish"
- "Ovozli qidiruv"
- "Bo‘lishish:"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v11/values-v11.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v11/values-v11.xml
deleted file mode 100644
index 4b2c585f..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v11/values-v11.xml
+++ /dev/null
@@ -1,165 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v12/values-v12.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v12/values-v12.xml
deleted file mode 100644
index aa0db6fb..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v12/values-v12.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v14/values-v14.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v14/values-v14.xml
deleted file mode 100644
index 7239a2c8..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v14/values-v14.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v17/values-v17.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v17/values-v17.xml
deleted file mode 100644
index 3f2d1d67..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v17/values-v17.xml
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v18/values-v18.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v18/values-v18.xml
deleted file mode 100644
index 7dad77f9..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v18/values-v18.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
- 0px
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v21/values-v21.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v21/values-v21.xml
deleted file mode 100644
index a7e34015..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v21/values-v21.xml
+++ /dev/null
@@ -1,256 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-vi/values-vi.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-vi/values-vi.xml
deleted file mode 100644
index 73045f9a..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-vi/values-vi.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Điều hướng về trang chủ"
- "Điều hướng lên trên"
- "Thêm tùy chọn"
- "Xong"
- "Xem tất cả"
- "Chọn một ứng dụng"
- "Xóa truy vấn"
- "Tìm kiếm truy vấn"
- "Tìm kiếm"
- "Gửi truy vấn"
- "Tìm kiếm bằng giọng nói"
- "Chia sẻ với"
- "Chia sẻ với %s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml
deleted file mode 100644
index fd9dac9b..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
- 3
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml
deleted file mode 100644
index 5b7dcf65..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
- true
- true
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml
deleted file mode 100644
index dcd19ee3..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
- 4
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml
deleted file mode 100644
index 4c058c26..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
- 192dip
- 5
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml
deleted file mode 100644
index 966aafb2..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
- false
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml
deleted file mode 100644
index 98b3f8c2..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
-
- 256dip
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml
deleted file mode 100644
index ba8d9dae..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
-
- false
- 192dip
- - 60%
- - 90%
- - 50%
- - 70%
- 5
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
deleted file mode 100644
index 0c285368..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
+++ /dev/null
@@ -1,121 +0,0 @@
-
-
-
- - 短信
- - 邮件
-
-
- - %1$s 条符合“%2$s”的搜索结果
-
- "转到主屏幕"
- "转到上一层级"
- "更多选项"
- "完成"
- "查看全部"
- "选择应用"
- "清除查询"
- "搜索查询"
- "搜索"
- "提交查询"
- "语音搜索"
- "分享方式"
- "通过%s分享"
- 确认删除文件夹及所包含的便签吗?
- 确认要删除该条便签吗?
- 确认要删除所选的 %d 条便签吗?
- 删除
- 便签
- 便签2x2
- 便签4x4
- 删除
- 通话便签
- 取消
- 设置
- 成功删除提醒
- 不能为空便签设置闹钟提醒
- 不能将空便签发送到桌面
- 要查看的便签不存在
- 导出文本时发生错误,请检查SD卡
- SD卡被占用,不能操作
- 同步已取消
- 同步失败,发生内部错误
- 同步失败,请检查网络和帐号设置
- 导出失败
- 文件夹 %1$s 已存在,请重新命名
- yyyyMMdd
- MM月dd日 kk:mm
- 已将文本文件(%1$s)输出至SD卡(%2$s)目录
- 已将所选 %1$d 条便签移到 %2$s 文件夹
- 请输入名称
- 已添加到桌面
- 提醒我
- 新建文件夹
- 删除
- 取消全选
- 导出文本
- 修改文件夹名称
- 刪除文件夹
- 查看文件夹
- 大
- 正常
- 文字大小
- 小
- 超大
- 进入清单模式
- 移动到文件夹
- 上一级文件夹
- 退出清单模式
- 删除提醒
- 搜索
- 全选
- 没有选中项,操作无效
- 选中了 %d 项
- 发送到桌面
- 设置
- 分享
- 同步
- 取消同步
- 选择文件夹
- 已过期
- 发送邮件
- 打开地图
- 呼叫电话
- 浏览网页
- 查看
- 知道了
- 新建便签
- ...
- 与google task同步便签记录
- 同步账号
- 添加账号
- 新建便签背景颜色随机
- 取消同步
- 立即同步
- 当前帐号 %1$s
- 如更换同步帐号,过去的帐号同步信息将被清空,再次切换的同时可能会造成数据重复
- 请选择google帐号,便签将与该帐号的google task内容同步。
- 同步便签
- 上次同步于 %1$s
- 取消
- 更换账号
- 删除账号
- 设置
- 正在同步中,不能修改同步帐号
- 同步帐号已设置为%1$s
- 便签
- 搜索便签
- 正在搜索便签
- 便签中的文字
- 创建提醒
- 导出成功
- 与%1$s同步成功
- 正在获取服务器便签列表...
- 登录%1$s...
- 正在同步本地便签...
- 同步已取消
- 同步失败
- 同步成功
- 同步便签...
- 没有关联内容,点击新建便签。
- 访客模式下,便签内容不可见
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml
deleted file mode 100644
index 462f2b36..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "瀏覽主頁"
- "向上瀏覽"
- "更多選項"
- "完成"
- "顯示全部"
- "選擇應用程式"
- "清除查詢"
- "搜尋查詢"
- "搜尋"
- "提交查詢"
- "語音搜尋"
- "分享對象"
- "與「%s」分享"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml
deleted file mode 100644
index 794f7fd5..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml
+++ /dev/null
@@ -1,121 +0,0 @@
-
-
-
- - 短信
- - 郵件
-
-
- - %1$s 條符合”%2$s“的搜尋結果
-
- "瀏覽首頁"
- "向上瀏覽"
- "更多選項"
- "完成"
- "查看全部"
- "選擇應用程式"
- "清除查詢"
- "搜尋查詢"
- "搜尋"
- "提交查詢"
- "語音搜尋"
- "選擇分享對象"
- "與「%s」分享"
- 確認刪除檔夾及所包含的便簽嗎?
- 确认要删除該條便籤嗎?
- 确认要刪除所選的 %d 條便籤嗎?
- 刪除
- 便簽
- 便簽2x2
- 便簽4x4
- 刪除
- 通話便籤
- 取消
- 設置
- 成功刪除提醒
- 不能爲空便籤設置鬧鐘提醒
- 不能將空便籤發送到桌面
- 要查看的便籤不存在
- 導出TXT時發生錯誤,請檢查SD卡
- SD卡被佔用,不能操作
- 同步已取消
- 同步失敗,發生內部錯誤
- 同步失敗,請檢查網絡和帳號設置
- 導出失敗
- 文件夾 %1$s 已存在,請重新命名
- yyyyMMdd
- MM月dd日 kk:mm
- 已將文本文件(%1$s)導出至SD(%2$s)目錄
- 已將所選 %1$d 便籤移到 %2$s 文件夾
- 請輸入名稱
- 已添加到桌面
- 提醒我
- 新建文件夾
- 刪除
- 取消全選
- 導出文本
- 修改文件夾名稱
- 刪除文件夾
- 查看文件夾
- 大
- 正常
- 文字大小
- 小
- 超大
- 進入清單模式
- 移動到文件夾
- 上一級文件夾
- 退出清單模式
- 刪除提醒
- 搜尋
- 全選
- 沒有選中項,操作無效
- 選中了 %d 項
- 發送到桌面
- 設置
- 分享
- 同步
- 取消同步
- 選擇文件夾
- 已過期
- 發送郵件
- 打開地圖
- 呼叫電話
- 浏覽網頁
- 查看
- 知道了
- 新建便簽
- ...
- 与google task同步便簽記錄
- 同步賬號
- 添加賬號
- 新建便籤背景顏色隨機
- 取消同步
- 立即同步
- 當前帳號 %1$s
- 如更換同步帳號,過去的帳號同步信息將被清空,再次切換的同時可能會造成數據重復
- 請選擇google帳號,便簽將與該帳號的google task內容同步。
- 同步便簽
- 上次同步于 %1$s
- 取消
- 更換賬號
- 刪除賬號
- 設置
- 正在同步中,不能修改同步帳號
- 同步帳號已設置為%1$s
- 便籤
- 搜索便籤
- 正在搜索便籤
- 便籤中的文字
- 創建提醒
- 導出成功
- 與%1$s同步成功
- 正在獲取服務器便籤列表...
- 登陸%1$s...
- 正在同步本地便籤...
- 同步已取消
- 同步失敗
- 同步成功
- 同步便簽...
- 沒有關聯內容,點擊新建便簽。
- 訪客模式下,便籤內容不可見
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zu/values-zu.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zu/values-zu.xml
deleted file mode 100644
index d383c891..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zu/values-zu.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
- "Zulazulela ekhaya"
- "Zulazulela phezulu"
- "Izinketho eziningi"
- "Kwenziwe"
- "Buka konke"
- "Khetha uhlelo lokusebenza"
- "Sula inkinga"
- "Umbuzo wosesho"
- "Sesha"
- "Hambisa umbuzo"
- "Ukusesha ngezwi"
- "Yabelana no-"
- "Yabelana no-%s"
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values/values.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values/values.xml
index a29a44db..5e71e472 100644
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values/values.xml
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values/values.xml
@@ -172,6 +172,7 @@
- %1$s results for \"%2$s\"
+ SetType
Navigate home
%1$s, %2$s
%1$s, %2$s, %3$s
@@ -198,6 +199,7 @@
Notes 4x4
Delete
Call notes
+ empty
cancel
set
Delete reminder successfully
@@ -220,11 +222,15 @@
Export text file (%1$s) to SD (%2$s) directory
(%d)
Have moved selected %1$d notes to %2$s folder
+ You haven not input anything
Input name
Note added to home
Remind me
+ change font
+ change password
New Folder
Delete
+ delete password
Deselect all
Export text
Change folder name
@@ -236,10 +242,13 @@
Small
Super
Enter check list
+ setting password
Move to folder
Parent folder
Leave check list
+ read contain
Delete reminder
+ revoke
Search
Select all
Nothing selected, the operation is invalid
@@ -247,6 +256,7 @@
Send to home
Settings
Share
+ Sort
Sync
Cancel syncing
Select folder
@@ -292,6 +302,7 @@
Sync is failed
Sync is successful
Syncing notes...
+ Tips
FullscreenActivity
SplashActivity
No associated note found, click to create associated note.
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml
index 724f96fd..da1e0c83 100644
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml
@@ -1332,7 +1332,7 @@
- ?attr/colorControlActivated
- ?attr/colorControlHighlight
- ?attr/colorButtonNormal
- "Điều hướng về trang chủ""Điều hướng lên trên""Thêm tùy chọn""Xong""Xem tất cả""Chọn một ứng dụng""Xóa truy vấn""Tìm kiếm truy vấn""Tìm kiếm""Gửi truy vấn""Tìm kiếm bằng giọng nói""Chia sẻ với""Chia sẻ với %s"3truetrue4192dip5falsefalse192dip- 60%
- 90%
- 50%
- 70%
5256dip"转到主屏幕""转到上一层级""更多选项""完成""查看全部""选择应用""清除查询""搜索查询""搜索""提交查询""语音搜索""分享方式""通过%s分享""瀏覽主頁""向上瀏覽""更多選項""完成""顯示全部""選擇應用程式""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""分享對象""與「%s」分享""瀏覽首頁""向上瀏覽""更多選項""完成""查看全部""選擇應用程式""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""選擇分享對象""與「%s」分享""Zulazulela ekhaya""Zulazulela phezulu""Izinketho eziningi""Kwenziwe""Buka konke""Khetha uhlelo lokusebenza""Sula inkinga""Umbuzo wosesho""Sesha""Hambisa umbuzo""Ukusesha ngezwi""Yabelana no-""Yabelana no-%s"
+ "Điều hướng về trang chủ""Điều hướng lên trên""Thêm tùy chọn""Xong""Xem tất cả""Chọn một ứng dụng""Xóa truy vấn""Tìm kiếm truy vấn""Tìm kiếm""Gửi truy vấn""Tìm kiếm bằng giọng nói""Chia sẻ với""Chia sẻ với %s"3truetrue4192dip5falsefalse192dip- 60%
- 90%
- 50%
- 70%
5256dip"转到主屏幕""转到上一层级""更多选项""完成""查看全部""选择应用""清除查询""搜索查询""搜索""提交查询""语音搜索""分享方式""通过%s分享""瀏覽主頁""向上瀏覽""更多選項""完成""顯示全部""選擇應用程式""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""分享對象""與「%s」分享""瀏覽首頁""向上瀏覽""更多選項""完成""查看全部""選擇應用程式""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""選擇分享對象""與「%s」分享""Zulazulela ekhaya""Zulazulela phezulu""Izinketho eziningi""Kwenziwe""Buka konke""Khetha uhlelo lokusebenza""Sula inkinga""Umbuzo wosesho""Sesha""Hambisa umbuzo""Ukusesha ngezwi""Yabelana no-""Yabelana no-%s"
- -%s
- --%s
- --%s
@@ -1340,14 +1340,14 @@
- Messaging
- Email
-
+
- #335b5b5b#FF039BE5#FF01579B#FF40C4FF#FF00B0FF#6600000033sp26sp20sp17sp14spNotesNotes 2x2Notes 4x4No associated note found, click to create associated note.Privacy mode,can not see note content...Add noteDelete reminder successfullySet reminderExpiredyyyyMMddMMMd kk:mmGot itTake a lookCallSend emailBrowse webOpen map/MIUI/notes/notes_%s.txt(%d)New FolderExport textSyncCancel syncingSettingsSearchDeleteMove to folder%d selectedNothing selected, the operation is invalidSelect allDeselect allFont sizeSmallMediumLargeSuperEnter check listLeave check listView folderDelete folderChange folder nameThe folder %1$s exist, please renameShareSend to homeRemind meDelete reminderSelect folderParent folderNote added to homeConfirm to delete folder and its notes?Delete selected notesConfirm to delete the selected %d notes?Confirm to delete this note?Have moved selected %1$d notes to %2$s folderSD card busy, not available nowExport failed, please check SD cardThe note is not existSorry, can not set clock on empty noteSorry, can not send and empty note to homeExport successfulExport failExport text file (%1$s) to SD (%2$s) directorySyncing notes...Sync is successfulSync is failedSync is canceledSync is successful with account %1$sSync failed, please check network and account settingsSync failed, internal error occursSync is canceledLogging into %1$s...Getting remote note list...Synchronize local notes with Google Task...SettingsSync accountSync notes with google taskLast sync time %1$syyyy-MM-dd hh:mm:ssAdd accountChange sync accountRemove sync accountCancelSync immediatelyCancel syncingCurrent account %1$sAll sync related information will be deleted, which may result in duplicated items sometimeSync notesPlease select a google account. Local notes will be synced with google task.Cannot change the account because sync is in progress%1$s has been set as the sync accountNew note background color randomDeleteCall notesInput nameSearching NotesSearch notesText in your notesNotessetcancel
+ #335b5b5b#FF039BE5#FF01579B#FF40C4FF#FF00B0FF#6600000033sp26sp20sp17sp14sprevokeTipsempty You haven not input anythingread containsetting passworddelete passwordchange passwordchange fontNotesNotes 2x2Notes 4x4No associated note found, click to create associated note.Privacy mode,can not see note content...Add noteDelete reminder successfullySet reminderExpiredyyyyMMddMMMd kk:mmGot itTake a lookCallSend emailBrowse webOpen map/MIUI/notes/notes_%s.txt(%d)New FolderExport textSyncCancel syncingSettingsSearchDeleteMove to folder%d selectedNothing selected, the operation is invalidSelect allDeselect allFont sizeSmallMediumLargeSuperEnter check listLeave check listView folderDelete folderChange folder nameThe folder %1$s exist, please renameShareSend to homeRemind meDelete reminderSelect folderParent folderNote added to homeConfirm to delete folder and its notes?Delete selected notesConfirm to delete the selected %d notes?Confirm to delete this note?Have moved selected %1$d notes to %2$s folderSD card busy, not available nowExport failed, please check SD cardThe note is not existSorry, can not set clock on empty noteSorry, can not send and empty note to homeExport successfulExport failExport text file (%1$s) to SD (%2$s) directorySyncing notes...Sync is successfulSync is failedSync is canceledSync is successful with account %1$sSync failed, please check network and account settingsSync failed, internal error occursSync is canceledLogging into %1$s...Getting remote note list...Synchronize local notes with Google Task...SettingsSync accountSync notes with google taskLast sync time %1$syyyy-MM-dd hh:mm:ssAdd accountChange sync accountRemove sync accountCancelSync immediatelyCancel syncingCurrent account %1$sAll sync related information will be deleted, which may result in duplicated items sometimeSync notesPlease select a google account. Local notes will be synced with google task.Cannot change the account because sync is in progress%1$s has been set as the sync accountNew note background color randomSetTypeSortDeleteCall notesInput nameSearching NotesSearch notesText in your notesNotessetcancel
- %1$s result for \"%2$s\"
- %1$s results for \"%2$s\"
- FullscreenActivitySplashActivityDummy Button寒假快乐!
+
- 短信
- 邮件
- 便签便签2x2便签4x4没有关联内容,点击新建便签。访客模式下,便签内容不可见...新建便签成功删除提醒创建提醒已过期yyyyMMddMM月dd日 kk:mm知道了查看呼叫电话发送邮件浏览网页打开地图新建文件夹导出文本同步取消同步设置搜索删除移动到文件夹选中了 %d 项没有选中项,操作无效全选取消全选文字大小小正常大超大进入清单模式退出清单模式查看文件夹刪除文件夹修改文件夹名称文件夹 %1$s 已存在,请重新命名分享发送到桌面提醒我删除提醒选择文件夹上一级文件夹已添加到桌面删除确认要删除所选的 %d 条便签吗?确认要删除该条便签吗?确认删除文件夹及所包含的便签吗?已将所选 %1$d 条便签移到 %2$s 文件夹SD卡被占用,不能操作导出文本时发生错误,请检查SD卡要查看的便签不存在不能为空便签设置闹钟提醒不能将空便签发送到桌面导出成功导出失败已将文本文件(%1$s)输出至SD卡(%2$s)目录同步便签...同步成功同步失败同步已取消与%1$s同步成功同步失败,请检查网络和帐号设置同步失败,发生内部错误同步已取消登录%1$s...正在获取服务器便签列表...正在同步本地便签...设置同步账号与google task同步便签记录上次同步于 %1$s添加账号更换账号删除账号取消立即同步取消同步当前帐号 %1$s如更换同步帐号,过去的帐号同步信息将被清空,再次切换的同时可能会造成数据重复同步便签请选择google帐号,便签将与该帐号的google task内容同步。正在同步中,不能修改同步帐号同步帐号已设置为%1$s新建便签背景颜色随机删除通话便签请输入名称正在搜索便签搜索便签便签中的文字便签设置取消
+ 便签便签2x2便签4x4没有关联内容,点击新建便签。访客模式下,便签内容不可见...新建便签成功删除提醒创建提醒已过期yyyyMMddMM月dd日 kk:mm知道了查看呼叫电话发送邮件浏览网页打开地图撤销提示空文本未输入内容新建文件夹导出文本同步取消同步设置搜索删除移动到文件夹选中了 %d 项没有选中项,操作无效全选取消全选文字大小小正常大超大进入清单模式退出清单模式查看文件夹刪除文件夹修改文件夹名称文件夹 %1$s 已存在,请重新命名分享发送到桌面提醒我删除提醒选择文件夹上一级文件夹已添加到桌面删除确认要删除所选的 %d 条便签吗?确认要删除该条便签吗?确认删除文件夹及所包含的便签吗?已将所选 %1$d 条便签移到 %2$s 文件夹SD卡被占用,不能操作导出文本时发生错误,请检查SD卡要查看的便签不存在不能为空便签设置闹钟提醒不能将空便签发送到桌面导出成功导出失败已将文本文件(%1$s)输出至SD卡(%2$s)目录同步便签...同步成功同步失败同步已取消与%1$s同步成功同步失败,请检查网络和帐号设置同步失败,发生内部错误同步已取消登录%1$s...正在获取服务器便签列表...正在同步本地便签...设置同步账号与google task同步便签记录上次同步于 %1$s添加账号更换账号删除账号取消立即同步取消同步当前帐号 %1$s如更换同步帐号,过去的帐号同步信息将被清空,再次切换的同时可能会造成数据重复同步便签请选择google帐号,便签将与该帐号的google task内容同步。正在同步中,不能修改同步帐号同步帐号已设置为%1$s新建便签背景颜色随机删除通话便签请输入名称正在搜索便签搜索便签便签中的文字便签设置取消便签类型便签整理
- %1$s 条符合“%2$s”的搜索结果
-
+
- 短信
- 郵件
- 便簽便簽2x2便簽4x4沒有關聯內容,點擊新建便簽。訪客模式下,便籤內容不可見...新建便簽成功刪除提醒創建提醒已過期yyyyMMddMM月dd日 kk:mm知道了查看呼叫電話發送郵件浏覽網頁打開地圖已將所選 %1$d 便籤移到 %2$s 文件夾新建文件夾導出文本同步取消同步設置搜尋刪除移動到文件夾選中了 %d 項沒有選中項,操作無效全選取消全選文字大小小正常大超大進入清單模式退出清單模式查看文件夾刪除文件夾修改文件夾名稱文件夾 %1$s 已存在,請重新命名分享發送到桌面提醒我刪除提醒選擇文件夾上一級文件夾已添加到桌面刪除确认要刪除所選的 %d 條便籤嗎?确认要删除該條便籤嗎?確認刪除檔夾及所包含的便簽嗎?SD卡被佔用,不能操作導出TXT時發生錯誤,請檢查SD卡要查看的便籤不存在不能爲空便籤設置鬧鐘提醒不能將空便籤發送到桌面導出成功導出失敗已將文本文件(%1$s)導出至SD(%2$s)目錄同步便簽...同步成功同步失敗同步已取消與%1$s同步成功同步失敗,請檢查網絡和帳號設置同步失敗,發生內部錯誤同步已取消登陸%1$s...正在獲取服務器便籤列表...正在同步本地便籤...設置同步賬號与google task同步便簽記錄上次同步于 %1$s添加賬號更換賬號刪除賬號取消立即同步取消同步當前帳號 %1$s如更換同步帳號,過去的帳號同步信息將被清空,再次切換的同時可能會造成數據重復同步便簽請選擇google帳號,便簽將與該帳號的google task內容同步。正在同步中,不能修改同步帳號同步帳號已設置為%1$s新建便籤背景顏色隨機刪除通話便籤請輸入名稱正在搜索便籤搜索便籤便籤中的文字便籤設置取消
+ 便簽便簽2x2便簽4x4沒有關聯內容,點擊新建便簽。訪客模式下,便籤內容不可見...新建便簽成功刪除提醒創建提醒已過期yyyyMMddMM月dd日 kk:mm知道了查看呼叫電話發送郵件浏覽網頁打開地圖已將所選 %1$d 便籤移到 %2$s 文件夾新建文件夾導出文本同步取消同步設置搜尋刪除移動到文件夾選中了 %d 項沒有選中項,操作無效全選取消全選文字大小小正常大超大進入清單模式退出清單模式查看文件夾刪除文件夾修改文件夾名稱文件夾 %1$s 已存在,請重新命名分享發送到桌面提醒我刪除提醒選擇文件夾上一級文件夾已添加到桌面刪除确认要刪除所選的 %d 條便籤嗎?确认要删除該條便籤嗎?確認刪除檔夾及所包含的便簽嗎?SD卡被佔用,不能操作導出TXT時發生錯誤,請檢查SD卡要查看的便籤不存在不能爲空便籤設置鬧鐘提醒不能將空便籤發送到桌面導出成功導出失敗已將文本文件(%1$s)導出至SD(%2$s)目錄同步便簽...同步成功同步失敗同步已取消與%1$s同步成功同步失敗,請檢查網絡和帳號設置同步失敗,發生內部錯誤同步已取消登陸%1$s...正在獲取服務器便籤列表...正在同步本地便籤...設置同步賬號与google task同步便簽記錄上次同步于 %1$s添加賬號更換賬號刪除賬號取消立即同步取消同步當前帳號 %1$s如更換同步帳號,過去的帳號同步信息將被清空,再次切換的同時可能會造成數據重復同步便簽請選擇google帳號,便簽將與該帳號的google task內容同步。正在同步中,不能修改同步帳號同步帳號已設置為%1$s新建便籤背景顏色隨機刪除通話便籤請輸入名稱正在搜索便籤搜索便籤便籤中的文字便籤設置取消
- %1$s 條符合”%2$s“的搜尋結果
-
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/account_dialog_title.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/account_dialog_title.xml
deleted file mode 100644
index 77171121..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/account_dialog_title.xml
+++ /dev/null
@@ -1,43 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/activity_splash.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/activity_splash.xml
deleted file mode 100644
index 19e9d979..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/activity_splash.xml
+++ /dev/null
@@ -1,55 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/add_account_text.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/add_account_text.xml
deleted file mode 100644
index c7991780..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/add_account_text.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/datetime_picker.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/datetime_picker.xml
deleted file mode 100644
index f10d592b..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/datetime_picker.xml
+++ /dev/null
@@ -1,56 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/dialog_edit_text.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/dialog_edit_text.xml
deleted file mode 100644
index 361b39a8..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/dialog_edit_text.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/folder_list_item.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/folder_list_item.xml
deleted file mode 100644
index 77e81483..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/folder_list_item.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_edit.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_edit.xml
deleted file mode 100644
index 1b3eca8e..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_edit.xml
+++ /dev/null
@@ -1,408 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_edit_list_item.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_edit_list_item.xml
deleted file mode 100644
index a885f9c2..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_edit_list_item.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_item.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_item.xml
deleted file mode 100644
index d541f6a1..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_item.xml
+++ /dev/null
@@ -1,78 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_list.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_list.xml
deleted file mode 100644
index 6b25d38f..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_list.xml
+++ /dev/null
@@ -1,58 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_list_dropdown_menu.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_list_dropdown_menu.xml
deleted file mode 100644
index 3fa271d0..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_list_dropdown_menu.xml
+++ /dev/null
@@ -1,32 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_list_footer.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_list_footer.xml
deleted file mode 100644
index 5ca7b225..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_list_footer.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/settings_header.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/settings_header.xml
deleted file mode 100644
index 5eb8c509..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/settings_header.xml
+++ /dev/null
@@ -1,41 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/widget_2x.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/widget_2x.xml
deleted file mode 100644
index 55970cee..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/widget_2x.xml
+++ /dev/null
@@ -1,37 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/widget_4x.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/widget_4x.xml
deleted file mode 100644
index dc9bb519..00000000
--- a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/widget_4x.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/src/app/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
index 668d3bb1..11a58257 100644
--- a/src/app/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
@@ -1,4 +1,4 @@
-#Thu Jan 18 09:02:56 CST 2024
+#Fri Jan 19 03:36:40 CST 2024
net.micode.notes.app-main-5\:/color/primary_text_dark.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\color\\primary_text_dark.xml
net.micode.notes.app-main-5\:/color/secondary_text_dark.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\color\\secondary_text_dark.xml
net.micode.notes.app-main-5\:/drawable-hdpi/a.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\a.png
@@ -7,6 +7,7 @@ net.micode.notes.app-main-5\:/drawable-hdpi/bg_btn_set_color.png=C\:\\Users\\hui
net.micode.notes.app-main-5\:/drawable-hdpi/bg_color_btn_mask.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\bg_color_btn_mask.png
net.micode.notes.app-main-5\:/drawable-hdpi/call_record.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\call_record.png
net.micode.notes.app-main-5\:/drawable-hdpi/clock.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\clock.png
+net.micode.notes.app-main-5\:/drawable-hdpi/daybackground.webp=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\daybackground.webp
net.micode.notes.app-main-5\:/drawable-hdpi/delete.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\delete.png
net.micode.notes.app-main-5\:/drawable-hdpi/dropdown_icon.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\dropdown_icon.9.png
net.micode.notes.app-main-5\:/drawable-hdpi/edit_blue.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\edit_blue.9.png
@@ -53,6 +54,7 @@ net.micode.notes.app-main-5\:/drawable-hdpi/menu_delete.png=C\:\\Users\\huigenb\
net.micode.notes.app-main-5\:/drawable-hdpi/menu_move.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\menu_move.png
net.micode.notes.app-main-5\:/drawable-hdpi/new_note_normal.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\new_note_normal.png
net.micode.notes.app-main-5\:/drawable-hdpi/new_note_pressed.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\new_note_pressed.png
+net.micode.notes.app-main-5\:/drawable-hdpi/nightbackground.webp=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\nightbackground.webp
net.micode.notes.app-main-5\:/drawable-hdpi/note_edit_color_selector_panel.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\note_edit_color_selector_panel.png
net.micode.notes.app-main-5\:/drawable-hdpi/notification.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\notification.png
net.micode.notes.app-main-5\:/drawable-hdpi/search_result.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\search_result.png
@@ -78,6 +80,7 @@ net.micode.notes.app-main-5\:/menu/note_edit.xml=C\:\\Users\\huigenb\\Desktop\\G
net.micode.notes.app-main-5\:/menu/note_list.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\menu\\note_list.xml
net.micode.notes.app-main-5\:/menu/note_list_dropdown.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\menu\\note_list_dropdown.xml
net.micode.notes.app-main-5\:/menu/note_list_options.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\menu\\note_list_options.xml
+net.micode.notes.app-main-5\:/menu/note_type.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\menu\\note_type.xml
net.micode.notes.app-main-5\:/menu/sub_folder.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\menu\\sub_folder.xml
net.micode.notes.app-main-5\:/raw-zh-rCN/introduction=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\raw-zh-rCN\\introduction
net.micode.notes.app-main-5\:/raw/introduction=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\raw\\introduction
@@ -86,6 +89,10 @@ net.micode.notes.app-main-5\:/xml/searchable.xml=C\:\\Users\\huigenb\\Desktop\\G
net.micode.notes.app-main-5\:/xml/widget_2x_info.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\xml\\widget_2x_info.xml
net.micode.notes.app-main-5\:/xml/widget_4x_info.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\xml\\widget_4x_info.xml
net.micode.notes.app-packageDebugResources-2\:/layout/account_dialog_title.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\layout\\account_dialog_title.xml
+net.micode.notes.app-packageDebugResources-2\:/layout/activity_change_password.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\layout\\activity_change_password.xml
+net.micode.notes.app-packageDebugResources-2\:/layout/activity_delete_password.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\layout\\activity_delete_password.xml
+net.micode.notes.app-packageDebugResources-2\:/layout/activity_login.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\layout\\activity_login.xml
+net.micode.notes.app-packageDebugResources-2\:/layout/activity_set_loginpassword.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\layout\\activity_set_loginpassword.xml
net.micode.notes.app-packageDebugResources-2\:/layout/activity_splash.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\layout\\activity_splash.xml
net.micode.notes.app-packageDebugResources-2\:/layout/add_account_text.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\layout\\add_account_text.xml
net.micode.notes.app-packageDebugResources-2\:/layout/datetime_picker.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\layout\\datetime_picker.xml
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
index d65e0cce..6c9757b6 100644
--- a/src/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
@@ -7,6 +7,7 @@
- %1$s 条符合“%2$s”的搜索结果
+ 便签类型
确认删除文件夹及所包含的便签吗?
确认要删除该条便签吗?
确认要删除所选的 %d 条便签吗?
@@ -16,6 +17,7 @@
便签4x4
删除
通话便签
+ 空文本
取消
设置
成功删除提醒
@@ -33,6 +35,7 @@
MM月dd日 kk:mm
已将文本文件(%1$s)输出至SD卡(%2$s)目录
已将所选 %1$d 条便签移到 %2$s 文件夹
+ 未输入内容
请输入名称
已添加到桌面
提醒我
@@ -53,6 +56,7 @@
上一级文件夹
退出清单模式
删除提醒
+ 撤销
搜索
全选
没有选中项,操作无效
@@ -60,6 +64,7 @@
发送到桌面
设置
分享
+ 便签整理
同步
取消同步
选择文件夹
@@ -103,6 +108,7 @@
同步失败
同步成功
同步便签...
+ 提示
没有关联内容,点击新建便签。
访客模式下,便签内容不可见
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml
index 26c1ff9f..f7504e94 100644
--- a/src/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml
@@ -26,6 +26,7 @@
- %1$s results for \"%2$s\"
+ SetType
Confirm to delete folder and its notes?
Confirm to delete this note?
Confirm to delete the selected %d notes?
@@ -35,6 +36,7 @@
Notes 4x4
Delete
Call notes
+ empty
cancel
set
Delete reminder successfully
@@ -57,11 +59,15 @@
Export text file (%1$s) to SD (%2$s) directory
(%d)
Have moved selected %1$d notes to %2$s folder
+ You haven not input anything
Input name
Note added to home
Remind me
+ change font
+ change password
New Folder
Delete
+ delete password
Deselect all
Export text
Change folder name
@@ -73,10 +79,13 @@
Small
Super
Enter check list
+ setting password
Move to folder
Parent folder
Leave check list
+ read contain
Delete reminder
+ revoke
Search
Select all
Nothing selected, the operation is invalid
@@ -84,6 +93,7 @@
Send to home
Settings
Share
+ Sort
Sync
Cancel syncing
Select folder
@@ -128,6 +138,7 @@
Sync is failed
Sync is successful
Syncing notes...
+ Tips
FullscreenActivity
SplashActivity
No associated note found, click to create associated note.
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/merger.xml
index 358772c9..c24641bc 100644
--- a/src/app/build/intermediates/incremental/debug/packageDebugResources/merger.xml
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/merger.xml
@@ -1,5 +1,5 @@
-
+
- -%s
- --%s
- --%s
@@ -10,7 +10,7 @@
- #335b5b5b#FF039BE5#FF01579B#FF40C4FF#FF00B0FF#6600000033sp26sp20sp17sp14spNotesNotes 2x2Notes 4x4No associated note found, click to create associated note.Privacy mode,can not see note content...Add noteDelete reminder successfullySet reminderExpiredyyyyMMddMMMd kk:mmGot itTake a lookCallSend emailBrowse webOpen map/MIUI/notes/notes_%s.txt(%d)New FolderExport textSyncCancel syncingSettingsSearchDeleteMove to folder%d selectedNothing selected, the operation is invalidSelect allDeselect allFont sizeSmallMediumLargeSuperEnter check listLeave check listView folderDelete folderChange folder nameThe folder %1$s exist, please renameShareSend to homeRemind meDelete reminderSelect folderParent folderNote added to homeConfirm to delete folder and its notes?Delete selected notesConfirm to delete the selected %d notes?Confirm to delete this note?Have moved selected %1$d notes to %2$s folderSD card busy, not available nowExport failed, please check SD cardThe note is not existSorry, can not set clock on empty noteSorry, can not send and empty note to homeExport successfulExport failExport text file (%1$s) to SD (%2$s) directorySyncing notes...Sync is successfulSync is failedSync is canceledSync is successful with account %1$sSync failed, please check network and account settingsSync failed, internal error occursSync is canceledLogging into %1$s...Getting remote note list...Synchronize local notes with Google Task...SettingsSync accountSync notes with google taskLast sync time %1$syyyy-MM-dd hh:mm:ssAdd accountChange sync accountRemove sync accountCancelSync immediatelyCancel syncingCurrent account %1$sAll sync related information will be deleted, which may result in duplicated items sometimeSync notesPlease select a google account. Local notes will be synced with google task.Cannot change the account because sync is in progress%1$s has been set as the sync accountNew note background color randomDeleteCall notesInput nameSearching NotesSearch notesText in your notesNotessetcancel
+ #335b5b5b#FF039BE5#FF01579B#FF40C4FF#FF00B0FF#6600000033sp26sp20sp17sp14sprevokeTipsempty You haven not input anythingread containsetting passworddelete passwordchange passwordchange fontNotesNotes 2x2Notes 4x4No associated note found, click to create associated note.Privacy mode,can not see note content...Add noteDelete reminder successfullySet reminderExpiredyyyyMMddMMMd kk:mmGot itTake a lookCallSend emailBrowse webOpen map/MIUI/notes/notes_%s.txt(%d)New FolderExport textSyncCancel syncingSettingsSearchDeleteMove to folder%d selectedNothing selected, the operation is invalidSelect allDeselect allFont sizeSmallMediumLargeSuperEnter check listLeave check listView folderDelete folderChange folder nameThe folder %1$s exist, please renameShareSend to homeRemind meDelete reminderSelect folderParent folderNote added to homeConfirm to delete folder and its notes?Delete selected notesConfirm to delete the selected %d notes?Confirm to delete this note?Have moved selected %1$d notes to %2$s folderSD card busy, not available nowExport failed, please check SD cardThe note is not existSorry, can not set clock on empty noteSorry, can not send and empty note to homeExport successfulExport failExport text file (%1$s) to SD (%2$s) directorySyncing notes...Sync is successfulSync is failedSync is canceledSync is successful with account %1$sSync failed, please check network and account settingsSync failed, internal error occursSync is canceledLogging into %1$s...Getting remote note list...Synchronize local notes with Google Task...SettingsSync accountSync notes with google taskLast sync time %1$syyyy-MM-dd hh:mm:ssAdd accountChange sync accountRemove sync accountCancelSync immediatelyCancel syncingCurrent account %1$sAll sync related information will be deleted, which may result in duplicated items sometimeSync notesPlease select a google account. Local notes will be synced with google task.Cannot change the account because sync is in progress%1$s has been set as the sync accountNew note background color randomSetTypeSortDeleteCall notesInput nameSearching NotesSearch notesText in your notesNotessetcancel
- %1$s result for \"%2$s\"
- %1$s results for \"%2$s\"
@@ -64,7 +64,7 @@
- 短信
- 邮件
- 便签便签2x2便签4x4没有关联内容,点击新建便签。访客模式下,便签内容不可见...新建便签成功删除提醒创建提醒已过期yyyyMMddMM月dd日 kk:mm知道了查看呼叫电话发送邮件浏览网页打开地图新建文件夹导出文本同步取消同步设置搜索删除移动到文件夹选中了 %d 项没有选中项,操作无效全选取消全选文字大小小正常大超大进入清单模式退出清单模式查看文件夹刪除文件夹修改文件夹名称文件夹 %1$s 已存在,请重新命名分享发送到桌面提醒我删除提醒选择文件夹上一级文件夹已添加到桌面删除确认要删除所选的 %d 条便签吗?确认要删除该条便签吗?确认删除文件夹及所包含的便签吗?已将所选 %1$d 条便签移到 %2$s 文件夹SD卡被占用,不能操作导出文本时发生错误,请检查SD卡要查看的便签不存在不能为空便签设置闹钟提醒不能将空便签发送到桌面导出成功导出失败已将文本文件(%1$s)输出至SD卡(%2$s)目录同步便签...同步成功同步失败同步已取消与%1$s同步成功同步失败,请检查网络和帐号设置同步失败,发生内部错误同步已取消登录%1$s...正在获取服务器便签列表...正在同步本地便签...设置同步账号与google task同步便签记录上次同步于 %1$s添加账号更换账号删除账号取消立即同步取消同步当前帐号 %1$s如更换同步帐号,过去的帐号同步信息将被清空,再次切换的同时可能会造成数据重复同步便签请选择google帐号,便签将与该帐号的google task内容同步。正在同步中,不能修改同步帐号同步帐号已设置为%1$s新建便签背景颜色随机删除通话便签请输入名称正在搜索便签搜索便签便签中的文字便签设置取消
+ 便签便签2x2便签4x4没有关联内容,点击新建便签。访客模式下,便签内容不可见...新建便签成功删除提醒创建提醒已过期yyyyMMddMM月dd日 kk:mm知道了查看呼叫电话发送邮件浏览网页打开地图撤销提示空文本未输入内容新建文件夹导出文本同步取消同步设置搜索删除移动到文件夹选中了 %d 项没有选中项,操作无效全选取消全选文字大小小正常大超大进入清单模式退出清单模式查看文件夹刪除文件夹修改文件夹名称文件夹 %1$s 已存在,请重新命名分享发送到桌面提醒我删除提醒选择文件夹上一级文件夹已添加到桌面删除确认要删除所选的 %d 条便签吗?确认要删除该条便签吗?确认删除文件夹及所包含的便签吗?已将所选 %1$d 条便签移到 %2$s 文件夹SD卡被占用,不能操作导出文本时发生错误,请检查SD卡要查看的便签不存在不能为空便签设置闹钟提醒不能将空便签发送到桌面导出成功导出失败已将文本文件(%1$s)输出至SD卡(%2$s)目录同步便签...同步成功同步失败同步已取消与%1$s同步成功同步失败,请检查网络和帐号设置同步失败,发生内部错误同步已取消登录%1$s...正在获取服务器便签列表...正在同步本地便签...设置同步账号与google task同步便签记录上次同步于 %1$s添加账号更换账号删除账号取消立即同步取消同步当前帐号 %1$s如更换同步帐号,过去的帐号同步信息将被清空,再次切换的同时可能会造成数据重复同步便签请选择google帐号,便签将与该帐号的google task内容同步。正在同步中,不能修改同步帐号同步帐号已设置为%1$s新建便签背景颜色随机删除通话便签请输入名称正在搜索便签搜索便签便签中的文字便签设置取消便签类型便签整理
- %1$s 条符合“%2$s”的搜索结果
- 短信
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/activity_change_password.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/activity_change_password.xml
new file mode 100644
index 00000000..e0f7d0f3
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/activity_change_password.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/activity_delete_password.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/activity_delete_password.xml
new file mode 100644
index 00000000..552853fc
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/activity_delete_password.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/activity_login.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/activity_login.xml
new file mode 100644
index 00000000..a1e68698
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/activity_login.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/activity_set_loginpassword.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/activity_set_loginpassword.xml
new file mode 100644
index 00000000..46bdca9b
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/activity_set_loginpassword.xml
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/note_edit.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/note_edit.xml
index 1b3eca8e..7e310911 100644
--- a/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/note_edit.xml
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/note_edit.xml
@@ -64,6 +64,14 @@
android:layout_marginRight="8dip"
android:textAppearance="@style/TextAppearanceSecondaryItem" />
+
+
+
+
+ android:layout_height="fill_parent">
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt b/src/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt
index 3ff45332..3b2846a1 100644
--- a/src/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt
+++ b/src/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt
@@ -1,12 +1,12 @@
-#Thu Jan 18 09:03:16 CST 2024
-base.0=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\dex\\debug\\mergeExtDexDebug\\classes.dex
-base.1=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\0\\classes.dex
-base.2=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\11\\classes.dex
-base.3=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\12\\classes.dex
-base.4=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\13\\classes.dex
-base.5=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\15\\classes.dex
-base.6=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\4\\classes.dex
-base.7=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\5\\classes.dex
+#Fri Jan 19 03:29:50 CST 2024
+base.0=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\dex\\debug\\mergeExtDexDebug\\classes.dex
+base.1=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\0\\classes.dex
+base.2=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\11\\classes.dex
+base.3=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\12\\classes.dex
+base.4=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\13\\classes.dex
+base.5=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\15\\classes.dex
+base.6=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\4\\classes.dex
+base.7=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\5\\classes.dex
path.0=classes.dex
path.1=0/classes.dex
path.2=11/classes.dex
diff --git a/src/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources b/src/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources
index d8d06c3a..12aebb26 100644
Binary files a/src/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources and b/src/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources differ
diff --git a/src/app/build/intermediates/incremental/processDebugResources/resources-list-for-resources-debug.ap_.txt b/src/app/build/intermediates/incremental/processDebugResources/resources-list-for-resources-debug.ap_.txt
index 4b4741db..300d6f40 100644
--- a/src/app/build/intermediates/incremental/processDebugResources/resources-list-for-resources-debug.ap_.txt
+++ b/src/app/build/intermediates/incremental/processDebugResources/resources-list-for-resources-debug.ap_.txt
@@ -1 +1 @@
-C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\color_primary_text_dark.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\color_secondary_text_dark.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_bg_btn_set_color.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_bg_color_btn_mask.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_call_record.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_clock.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_delete.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_dropdown_icon.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_blue.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_green.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_red.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_title_blue.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_title_green.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_title_red.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_title_white.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_title_yellow.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_white.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_yellow.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_font_large.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_font_normal.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_font_size_selector_bg.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_font_small.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_font_super.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_icon_app.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_icon_app_new.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_background.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_blue_down.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_blue_middle.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_blue_single.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_blue_up.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_folder.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_footer_bg.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_green_down.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_green_middle.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_green_single.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_green_up.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_red_down.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_red_middle.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_red_single.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_red_up.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_white_down.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_white_middle.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_white_single.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_white_up.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_yellow_down.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_yellow_middle.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_yellow_single.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_yellow_up.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_menu_delete.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_menu_move.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_new_note_normal.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_new_note_pressed.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_note_edit_color_selector_panel.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_notification.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_search_result.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_selected.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_splash.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_title_alert.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_title_bar_bg.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_2x_blue.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_2x_green.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_2x_red.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_2x_white.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_2x_yellow.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_4x_blue.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_4x_green.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_4x_red.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_4x_white.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_4x_yellow.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable_new_note.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable_splash.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_account_dialog_title.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_activity_splash.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_add_account_text.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_datetime_picker.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_dialog_edit_text.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_folder_list_item.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_note_edit.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_note_edit_list_item.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_note_item.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_note_list.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_note_list_dropdown_menu.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_note_list_footer.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_settings_header.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_widget_2x.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_widget_4x.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\menu_call_note_edit.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\menu_call_record_folder.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\menu_note_edit.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\menu_note_list.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\menu_note_list_dropdown.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\menu_note_list_options.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\menu_sub_folder.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\raw-zh-rCN_introduction.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\raw_introduction.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-af_values-af.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-am_values-am.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ar_values-ar.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-bg_values-bg.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-bn-rBD_values-bn-rBD.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ca_values-ca.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-cs_values-cs.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-da_values-da.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-de_values-de.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-el_values-el.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-en-rGB_values-en-rGB.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-en-rIN_values-en-rIN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-es-rUS_values-es-rUS.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-es_values-es.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-et-rEE_values-et-rEE.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-eu-rES_values-eu-rES.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-fa_values-fa.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-fi_values-fi.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-fr-rCA_values-fr-rCA.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-fr_values-fr.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-gl-rES_values-gl-rES.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-h720dp-v13_values-h720dp-v13.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-hdpi-v4_values-hdpi-v4.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-hi_values-hi.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-hr_values-hr.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-hu_values-hu.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-hy-rAM_values-hy-rAM.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-in_values-in.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-is-rIS_values-is-rIS.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-it_values-it.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-iw_values-iw.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ja_values-ja.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ka-rGE_values-ka-rGE.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-kk-rKZ_values-kk-rKZ.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-km-rKH_values-km-rKH.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-kn-rIN_values-kn-rIN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ko_values-ko.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ky-rKG_values-ky-rKG.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-land_values-land.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-large-v4_values-large-v4.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-lo-rLA_values-lo-rLA.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-lt_values-lt.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-lv_values-lv.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-mk-rMK_values-mk-rMK.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ml-rIN_values-ml-rIN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-mn-rMN_values-mn-rMN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-mr-rIN_values-mr-rIN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ms-rMY_values-ms-rMY.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-my-rMM_values-my-rMM.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-nb_values-nb.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ne-rNP_values-ne-rNP.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-night-v8_values-night-v8.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-nl_values-nl.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-pl_values-pl.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-port_values-port.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-pt-rPT_values-pt-rPT.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-pt_values-pt.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ro_values-ro.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ru_values-ru.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-si-rLK_values-si-rLK.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-sk_values-sk.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-sl_values-sl.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-sr_values-sr.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-sv_values-sv.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-sw600dp-v13_values-sw600dp-v13.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-sw_values-sw.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ta-rIN_values-ta-rIN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-te-rIN_values-te-rIN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-th_values-th.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-tl_values-tl.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-tr_values-tr.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-uk_values-uk.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ur-rPK_values-ur-rPK.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-uz-rUZ_values-uz-rUZ.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-v11_values-v11.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-v12_values-v12.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-v14_values-v14.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-v17_values-v17.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-v18_values-v18.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-v21_values-v21.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-vi_values-vi.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-w360dp-v13_values-w360dp-v13.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-w480dp-v13_values-w480dp-v13.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-w500dp-v13_values-w500dp-v13.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-w600dp-v13_values-w600dp-v13.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-w720dp-v13_values-w720dp-v13.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-xlarge-land-v4_values-xlarge-land-v4.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-xlarge-v4_values-xlarge-v4.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-zh-rCN_values-zh-rCN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-zh-rHK_values-zh-rHK.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-zh-rTW_values-zh-rTW.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-zu_values-zu.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values_values.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\xml_preferences.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\xml_searchable.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\xml_widget_2x_info.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\xml_widget_4x_info.xml.flat
\ No newline at end of file
+C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\color_primary_text_dark.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\color_secondary_text_dark.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_a.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_abc.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_bg_btn_set_color.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_bg_color_btn_mask.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_call_record.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_clock.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_delete.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_dropdown_icon.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_blue.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_green.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_red.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_title_blue.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_title_green.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_title_red.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_title_white.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_title_yellow.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_white.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_yellow.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_font_large.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_font_normal.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_font_size_selector_bg.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_font_small.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_font_super.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_icon_app.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_icon_app_new.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_background.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_blue_down.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_blue_middle.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_blue_single.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_blue_up.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_folder.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_footer_bg.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_green_down.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_green_middle.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_green_single.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_green_up.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_red_down.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_red_middle.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_red_single.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_red_up.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_white_down.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_white_middle.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_white_single.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_white_up.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_yellow_down.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_yellow_middle.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_yellow_single.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_yellow_up.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_menu_delete.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_menu_move.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_new_note_normal.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_new_note_pressed.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_note_edit_color_selector_panel.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_notification.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_search_result.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_selected.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_splash.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_title_alert.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_title_bar_bg.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_2x_blue.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_2x_green.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_2x_red.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_2x_white.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_2x_yellow.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_4x_blue.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_4x_green.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_4x_red.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_4x_white.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_4x_yellow.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable_new_note.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable_splash.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_account_dialog_title.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_activity_splash.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_add_account_text.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_datetime_picker.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_dialog_edit_text.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_folder_list_item.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_note_edit.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_note_edit_list_item.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_note_item.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_note_list.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_note_list_dropdown_menu.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_note_list_footer.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_settings_header.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_widget_2x.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_widget_4x.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\menu_call_note_edit.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\menu_call_record_folder.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\menu_note_edit.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\menu_note_list.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\menu_note_list_dropdown.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\menu_note_list_options.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\menu_note_type.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\menu_sub_folder.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\raw-zh-rCN_introduction.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\raw_introduction.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-af_values-af.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-am_values-am.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ar_values-ar.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-bg_values-bg.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-bn-rBD_values-bn-rBD.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ca_values-ca.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-cs_values-cs.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-da_values-da.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-de_values-de.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-el_values-el.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-en-rGB_values-en-rGB.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-en-rIN_values-en-rIN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-es-rUS_values-es-rUS.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-es_values-es.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-et-rEE_values-et-rEE.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-eu-rES_values-eu-rES.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-fa_values-fa.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-fi_values-fi.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-fr-rCA_values-fr-rCA.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-fr_values-fr.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-gl-rES_values-gl-rES.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-h720dp-v13_values-h720dp-v13.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-hdpi-v4_values-hdpi-v4.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-hi_values-hi.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-hr_values-hr.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-hu_values-hu.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-hy-rAM_values-hy-rAM.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-in_values-in.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-is-rIS_values-is-rIS.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-it_values-it.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-iw_values-iw.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ja_values-ja.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ka-rGE_values-ka-rGE.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-kk-rKZ_values-kk-rKZ.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-km-rKH_values-km-rKH.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-kn-rIN_values-kn-rIN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ko_values-ko.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ky-rKG_values-ky-rKG.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-land_values-land.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-large-v4_values-large-v4.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-lo-rLA_values-lo-rLA.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-lt_values-lt.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-lv_values-lv.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-mk-rMK_values-mk-rMK.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ml-rIN_values-ml-rIN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-mn-rMN_values-mn-rMN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-mr-rIN_values-mr-rIN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ms-rMY_values-ms-rMY.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-my-rMM_values-my-rMM.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-nb_values-nb.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ne-rNP_values-ne-rNP.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-night-v8_values-night-v8.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-nl_values-nl.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-pl_values-pl.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-port_values-port.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-pt-rPT_values-pt-rPT.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-pt_values-pt.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ro_values-ro.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ru_values-ru.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-si-rLK_values-si-rLK.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-sk_values-sk.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-sl_values-sl.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-sr_values-sr.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-sv_values-sv.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-sw600dp-v13_values-sw600dp-v13.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-sw_values-sw.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ta-rIN_values-ta-rIN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-te-rIN_values-te-rIN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-th_values-th.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-tl_values-tl.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-tr_values-tr.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-uk_values-uk.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ur-rPK_values-ur-rPK.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-uz-rUZ_values-uz-rUZ.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-v11_values-v11.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-v12_values-v12.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-v14_values-v14.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-v17_values-v17.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-v18_values-v18.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-v21_values-v21.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-vi_values-vi.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-w360dp-v13_values-w360dp-v13.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-w480dp-v13_values-w480dp-v13.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-w500dp-v13_values-w500dp-v13.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-w600dp-v13_values-w600dp-v13.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-w720dp-v13_values-w720dp-v13.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-xlarge-land-v4_values-xlarge-land-v4.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-xlarge-v4_values-xlarge-v4.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-zh-rCN_values-zh-rCN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-zh-rHK_values-zh-rHK.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-zh-rTW_values-zh-rTW.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-zu_values-zu.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values_values.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\xml_preferences.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\xml_searchable.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\xml_widget_2x_info.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\xml_widget_4x_info.xml.flat
\ No newline at end of file
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$CallNote.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$CallNote.class
index c3af5563..b76c73a5 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$CallNote.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$CallNote.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$NoteColumns.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$NoteColumns.class
index 36c8d495..ad8737f5 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$NoteColumns.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$NoteColumns.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$TextNote.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$TextNote.class
index 2ab9f61b..2c5fa75a 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$TextNote.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/Notes$TextNote.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/NotesDatabaseHelper.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/NotesDatabaseHelper.class
index 5b2bda47..393caa14 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/NotesDatabaseHelper.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/data/NotesDatabaseHelper.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/ActivityChangePasswordBinding.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/ActivityChangePasswordBinding.class
new file mode 100644
index 00000000..8a8cf346
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/ActivityChangePasswordBinding.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/ActivityDeletePasswordBinding.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/ActivityDeletePasswordBinding.class
new file mode 100644
index 00000000..a4b04c65
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/ActivityDeletePasswordBinding.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/ActivityLoginBinding.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/ActivityLoginBinding.class
new file mode 100644
index 00000000..b58e5861
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/ActivityLoginBinding.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/ActivitySetLoginpasswordBinding.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/ActivitySetLoginpasswordBinding.class
new file mode 100644
index 00000000..3d283dd1
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/ActivitySetLoginpasswordBinding.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteEditBinding.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteEditBinding.class
index 613c0e58..a5d9df49 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteEditBinding.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteEditBinding.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteItemBinding.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteItemBinding.class
index 58d9ffdf..24c0fd86 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteItemBinding.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteItemBinding.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/gtask/data/SqlNote.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/gtask/data/SqlNote.class
index 2783ae32..cbb8125f 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/gtask/data/SqlNote.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/gtask/data/SqlNote.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/Note$NoteData.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/Note$NoteData.class
index 05202b9d..a91b67b1 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/Note$NoteData.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/Note$NoteData.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/Note.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/Note.class
index 3a687440..7493c3f0 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/Note.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/Note.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/WorkingNote.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/WorkingNote.class
index a23580d2..90032fc9 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/WorkingNote.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/model/WorkingNote.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/ChangingPassword$1.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/ChangingPassword$1.class
new file mode 100644
index 00000000..8860324e
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/ChangingPassword$1.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/ChangingPassword.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/ChangingPassword.class
new file mode 100644
index 00000000..65306532
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/ChangingPassword.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/DeletingPassword$1.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/DeletingPassword$1.class
new file mode 100644
index 00000000..06f4f0b2
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/DeletingPassword$1.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/DeletingPassword.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/DeletingPassword.class
new file mode 100644
index 00000000..6100dd63
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/DeletingPassword.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/LoginActivity$1.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/LoginActivity$1.class
new file mode 100644
index 00000000..6d1b2e3e
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/LoginActivity$1.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/LoginActivity.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/LoginActivity.class
new file mode 100644
index 00000000..22b57229
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/LoginActivity.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$1.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$1.class
index 60483a32..7dc0003d 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$1.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$1.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$10.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$10.class
new file mode 100644
index 00000000..79d50433
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$10.class differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$3.class.uniqueId4 b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$11.class
similarity index 53%
rename from src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$3.class.uniqueId4
rename to src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$11.class
index 5674ef3a..00d6edb5 100644
Binary files a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$3.class.uniqueId4 and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$11.class differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$4.class.uniqueId8 b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$12.class
similarity index 61%
rename from src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$4.class.uniqueId8
rename to src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$12.class
index 8d204ce5..c3cec5e6 100644
Binary files a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$4.class.uniqueId8 and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$12.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$2.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$2.class
index 0a3cc561..228040c3 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$2.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$2.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$3.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$3.class
index 5674ef3a..0d7d40a2 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$3.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$3.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$4.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$4.class
index 8d204ce5..361820e9 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$4.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$4.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$5.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$5.class
new file mode 100644
index 00000000..f6dec408
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$5.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$6.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$6.class
new file mode 100644
index 00000000..1a53a8d7
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$6.class differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$2.class.uniqueId2 b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$7.class
similarity index 61%
rename from src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$2.class.uniqueId2
rename to src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$7.class
index 0a3cc561..c3461cd5 100644
Binary files a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$2.class.uniqueId2 and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$7.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$8.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$8.class
new file mode 100644
index 00000000..67fa1db5
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$8.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$9.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$9.class
new file mode 100644
index 00000000..89ac139f
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$9.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$HeadViewHolder.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$HeadViewHolder.class
index 70110697..4c7a3405 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$HeadViewHolder.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$HeadViewHolder.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity.class
index 27851dba..7b5f1b55 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteItemData.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteItemData.class
index 771aa912..bde2c0ff 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteItemData.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteItemData.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$1.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$1.class
index 00800378..0c110ab4 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$1.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$1.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$10.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$10.class
new file mode 100644
index 00000000..01237bdb
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$10.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$2.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$2.class
index b0069b0c..aee33b6e 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$2.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$2.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$3.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$3.class
index 4902bcb9..a4bd5c6d 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$3.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$3.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$4.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$4.class
index a588f420..6e1b9287 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$4.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$4.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$5.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$5.class
index e5ccbce8..3838d79a 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$5.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$5.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$6.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$6.class
index e86fb561..fb026aac 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$6.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$6.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$7.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$7.class
index b8b128bd..5cd7b76c 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$7.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$7.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$8.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$8.class
index 422f8e22..5c0b1f34 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$8.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$8.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$9.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$9.class
index f3f92f74..ee83b203 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$9.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$9.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$BackgroundQueryHandler.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$BackgroundQueryHandler.class
index e8d00387..1cd798e3 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$BackgroundQueryHandler.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$BackgroundQueryHandler.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback$1.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback$1.class
index 7978c300..4d2de7f3 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback$1.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback$1.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback$2.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback$2.class
index a0469f27..e8448a44 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback$2.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback$2.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback.class
index 720b2852..2196ed9b 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$ModeCallback.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$NewNoteOnTouchListener.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$NewNoteOnTouchListener.class
index 57091a78..9f08cc23 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$NewNoteOnTouchListener.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$NewNoteOnTouchListener.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$OnListItemClickListener.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$OnListItemClickListener.class
index 54153aa3..ad0d5059 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$OnListItemClickListener.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity$OnListItemClickListener.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity.class
index bc253a69..a6d77fb0 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListActivity.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListItem.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListItem.class
index 8777b108..98dc64c5 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListItem.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NotesListItem.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/SettingPassword$1.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/SettingPassword$1.class
new file mode 100644
index 00000000..a1d51c9e
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/SettingPassword$1.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/SettingPassword.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/SettingPassword.class
new file mode 100644
index 00000000..9855c5b4
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/SettingPassword.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/SplashActivity$1.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/SplashActivity$1.class
index c848105b..45583f76 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/SplashActivity$1.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/SplashActivity$1.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/SplashActivity.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/SplashActivity.class
index c97b8ed7..fdf69b39 100644
Binary files a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/SplashActivity.class and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/SplashActivity.class differ
diff --git a/src/app/build/intermediates/local_only_symbol_list/debug/R-def.txt b/src/app/build/intermediates/local_only_symbol_list/debug/R-def.txt
index e0c21b7e..ecc5bc74 100644
--- a/src/app/build/intermediates/local_only_symbol_list/debug/R-def.txt
+++ b/src/app/build/intermediates/local_only_symbol_list/debug/R-def.txt
@@ -23,6 +23,7 @@ drawable bg_btn_set_color
drawable bg_color_btn_mask
drawable call_record
drawable clock
+drawable daybackground
drawable delete
drawable dropdown_icon
drawable edit_blue
@@ -70,6 +71,7 @@ drawable menu_move
drawable new_note
drawable new_note_normal
drawable new_note_pressed
+drawable nightbackground
drawable note_edit_color_selector_panel
drawable notification
drawable search_result
@@ -87,10 +89,15 @@ drawable widget_4x_green
drawable widget_4x_red
drawable widget_4x_white
drawable widget_4x_yellow
+id Acknowledged
+id Dt_Acknowledged
id account_dialog_subtitle
id account_dialog_title
+id ack_password
+id acknowledge
id action_select_all
id amPm
+id btn_SetType
id btn_new_note
id btn_set_bg_color
id cb_edit_item
@@ -99,6 +106,7 @@ id delete
id dummy_button
id et_edit_text
id et_foler_name
+id family
id font_size_selector
id fullscreen_content
id fullscreen_content_controls
@@ -118,37 +126,54 @@ id iv_large_select
id iv_medium_select
id iv_small_select
id iv_super_select
+id lg_password
id ll_font_large
id ll_font_normal
id ll_font_small
id ll_font_super
+id login
+id menu_DayMood
+id menu_NightMood
id menu_alert
+id menu_change_font
+id menu_change_password
id menu_delete
+id menu_delete_password
id menu_delete_remind
id menu_export_text
id menu_font_size
id menu_list_mode
+id menu_login
id menu_new_folder
id menu_new_note
+id menu_read_contain
+id menu_revoke
id menu_search
id menu_send_to_desktop
id menu_setting
id menu_share
+id menu_sort
id menu_sync
id minute
id move
id navigation_bar
+id new_password
id note_bg_color_selector
id note_edit_list
id note_edit_view
id note_item
id note_title
id notes_list
+id old_password
+id password
+id password_ack
+id person
id prefenerece_sync_status_textview
id preference_sync_button
id selection_menu
id sv_note_edit
id text_num
+id thepassword
id tv_alert_date
id tv_folder_name
id tv_modified_date
@@ -156,9 +181,15 @@ id tv_name
id tv_time
id tv_title
id tv_title_bar
+id tv_type
id widget_bg_image
id widget_text
+id work
layout account_dialog_title
+layout activity_change_password
+layout activity_delete_password
+layout activity_login
+layout activity_set_loginpassword
layout activity_splash
layout add_account_text
layout datetime_picker
@@ -179,9 +210,11 @@ menu note_edit
menu note_list
menu note_list_dropdown
menu note_list_options
+menu note_type
menu sub_folder
plurals search_results_title
raw introduction
+string SetType
string alert_message_delete_folder
string alert_message_delete_note
string alert_message_delete_notes
@@ -191,6 +224,7 @@ string app_widget2x2
string app_widget4x4
string button_delete
string call_record_folder_name
+string can_not_revoke
string datetime_dialog_cancel
string datetime_dialog_ok
string delete_remind_time_message
@@ -213,11 +247,15 @@ string format_datetime_mdhm
string format_exported_file_location
string format_folder_files_count
string format_move_notes_to_folder
+string have_not_input_anything
string hint_foler_name
string info_note_enter_desktop
string menu_alert
+string menu_change_font
+string menu_change_password
string menu_create_folder
string menu_delete
+string menu_delete_password
string menu_deselect_all
string menu_export_text
string menu_folder_change_name
@@ -229,10 +267,13 @@ string menu_font_size
string menu_font_small
string menu_font_super
string menu_list_mode
+string menu_login
string menu_move
string menu_move_parent_folder
string menu_normal_mode
+string menu_read_contain
string menu_remove_remind
+string menu_revoke
string menu_search
string menu_select_all
string menu_select_none
@@ -240,6 +281,7 @@ string menu_select_title
string menu_send_to_desktop
string menu_setting
string menu_share
+string menu_sort
string menu_sync
string menu_sync_cancel
string menu_title_select_folder
@@ -284,6 +326,7 @@ string ticker_cancel
string ticker_fail
string ticker_success
string ticker_syncing
+string tips_of_revoke
string title_activity_fullscreen
string title_activity_splash
string widget_havenot_content
diff --git a/src/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/src/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt
index 694ef5c5..3d998edf 100644
--- a/src/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt
+++ b/src/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt
@@ -20,262 +20,326 @@
20 android:versionName="0.1" >
21
22 C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:24:5-44
+22-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:24:5-44
23 android:minSdkVersion="21"
-23-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:24:15-41
+23-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:24:15-41
24 android:targetSdkVersion="21" />
-24-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:24:5-44
+24-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:24:5-44
25
26
-26-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:26:5-81
-26-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:26:22-78
+26-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:26:5-81
+26-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:26:22-78
27
-27-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:27:5-88
-27-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:27:22-85
+27-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:27:5-88
+27-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:27:22-85
28
-28-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:28:5-67
-28-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:28:22-64
+28-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:28:5-67
+28-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:28:22-64
29
-29-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:29:5-72
-29-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:29:22-69
+29-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:29:5-72
+29-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:29:22-69
30
-30-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:30:5-74
-30-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:30:22-71
+30-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:30:5-74
+30-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:30:22-71
31
-31-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:31:5-80
-31-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:31:22-77
+31-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:31:5-80
+31-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:31:22-77
32
-32-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:32:5-71
-32-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:32:22-68
+32-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:32:5-71
+32-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:32:22-68
33
-33-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:33:5-74
-33-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:33:22-71
+33-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:33:5-74
+33-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:33:22-71
34
-34-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:34:5-81
-34-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:34:22-78
+34-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:34:5-81
+34-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:34:22-78
35
36 C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:36:5-159:19
+36-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:36:5-192:19
37 android:debuggable="true"
38 android:icon="@drawable/icon_app_new"
-38-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:37:9-46
+38-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:37:9-46
39 android:label="@string/app_name"
-39-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:38:9-41
+39-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:38:9-41
40 android:testOnly="true" >
-41 C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:41:9-51:20
-42 android:name="net.micode.notes.ui.SplashActivity"
-42-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:41:19-52
-43 android:configChanges="orientation|keyboardHidden|screenSize"
-43-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:42:13-74
-44 android:label="@string/title_activity_splash"
-44-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:43:13-58
-45 android:theme="@style/Theme.Code.Fullscreen" >
-45-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:45:13-57
-46
-46-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:47:13-50:29
-47
-47-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:48:17-69
-47-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:48:25-66
-48
-49
-49-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:49:17-77
-49-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:49:27-74
-50
+41
+42
+43 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:40:9-49:20
+44 android:name="net.micode.notes.ui.LoginActivity"
+44-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:41:13-45
+45 android:configChanges="keyboardHidden|orientation|screenSize"
+45-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:42:13-74
+46 android:label="@string/app_name"
+46-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:43:13-45
+47 android:launchMode="singleTop"
+47-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:44:13-43
+48 android:theme="@style/NoteTheme"
+48-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:45:13-45
+49 android:uiOptions="splitActionBarWhenNarrow"
+49-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:47:13-57
+50 android:windowSoftInputMode="adjustPan" >
+50-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:46:13-52
51
52 C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:53:9-61:20
-53 android:name="net.micode.notes.ui.NotesListActivity"
-53-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:54:13-49
+52-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:50:9-57:20
+53 android:name="net.micode.notes.ui.ChangingPassword"
+53-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:51:13-48
54 android:configChanges="keyboardHidden|orientation|screenSize"
-54-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:55:13-74
+54-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:52:13-74
55 android:label="@string/app_name"
-55-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:56:13-45
+55-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:53:13-45
56 android:launchMode="singleTop"
-56-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:57:13-43
+56-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:54:13-43
57 android:theme="@style/NoteTheme"
-57-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:58:13-45
-58 android:uiOptions="splitActionBarWhenNarrow"
-58-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:59:13-57
-59 android:windowSoftInputMode="adjustPan" >
-59-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:60:13-52
-60
-61 C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:64:9-95:20
-62 android:name="net.micode.notes.ui.NoteEditActivity"
-62-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:65:13-48
-63 android:configChanges="keyboardHidden|orientation|screenSize"
-63-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:66:13-74
+57-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:55:13-45
+58 android:windowSoftInputMode="adjustPan" >
+58-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:56:13-52
+59
+60 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:58:9-65:20
+61 android:name="net.micode.notes.ui.SettingPassword"
+61-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:59:13-47
+62 android:configChanges="keyboardHidden|orientation|screenSize"
+62-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:60:13-74
+63 android:label="@string/app_name"
+63-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:61:13-45
64 android:launchMode="singleTop"
-64-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:67:13-43
-65 android:theme="@style/NoteTheme" >
-65-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:68:13-45
-66
-66-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:70:13-77:29
-66-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:70:28-49
-67
-67-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:72:17-69
-67-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:72:25-66
-68
-69
-69-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:73:17-76
-69-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:73:27-73
-70
-71
-71-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:75:17-78
-71-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:75:23-75
-72
-72-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:75:17-78
-72-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:75:23-75
-73
-74
-74-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:79:13-85:29
-75
-75-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:80:17-79
-75-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:80:25-76
-76
-77
-77-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:73:17-76
-77-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:73:27-73
-78
-79
-79-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:75:17-78
-79-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:75:23-75
-80
-80-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:75:17-78
-80-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:75:23-75
-81
-82
-82-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:87:13-90:29
-83
-83-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:88:17-71
-83-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:88:25-68
-84
-85
-85-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:73:17-76
-85-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:73:27-73
-86
-87
-88 C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:92:13-94:54
-89 android:name="android.app.searchable"
-89-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:93:17-54
-90 android:resource="@xml/searchable" />
-90-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:94:17-51
-91
-92
-93 C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:97:9-100:43
-94 android:name="net.micode.notes.data.NotesProvider"
-94-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:98:13-63
-95 android:authorities="micode_notes"
-95-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:99:13-47
-96 android:multiprocess="true" />
-96-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:100:13-40
-97
-98 C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:102:9-114:20
-99 android:name="net.micode.notes.widget.NoteWidgetProvider_2x"
-99-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:103:13-57
-100 android:label="@string/app_widget2x2" >
-100-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:104:13-50
-101
-101-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:105:13-109:29
-102
-102-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:106:17-84
-102-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:106:25-81
-103
-103-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:107:17-85
-103-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:107:25-82
-104
-104-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:108:17-85
-104-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:108:25-82
-105
-106
-107 C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:111:13-113:58
-108 android:name="android.appwidget.provider"
-108-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:112:17-58
-109 android:resource="@xml/widget_2x_info" />
-109-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:113:17-55
-110
-111 C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:115:9-128:20
-112 android:name="net.micode.notes.widget.NoteWidgetProvider_4x"
-112-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:116:13-57
-113 android:label="@string/app_widget4x4" >
-113-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:117:13-50
-114
-114-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:105:13-109:29
-115
-115-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:106:17-84
-115-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:106:25-81
-116
-116-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:107:17-85
-116-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:107:25-82
-117
-117-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:108:17-85
-117-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:108:25-82
-118
+64-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:62:13-43
+65 android:theme="@style/NoteTheme"
+65-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:63:13-45
+66 android:windowSoftInputMode="adjustPan" >
+66-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:64:13-52
+67
+68 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:66:9-73:20
+69 android:name="net.micode.notes.ui.DeletingPassword"
+69-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:67:13-48
+70 android:configChanges="keyboardHidden|orientation|screenSize"
+70-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:68:13-74
+71 android:label="@string/app_name"
+71-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:69:13-45
+72 android:launchMode="singleTop"
+72-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:70:13-43
+73 android:theme="@style/NoteTheme"
+73-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:71:13-45
+74 android:windowSoftInputMode="adjustPan" >
+74-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:72:13-52
+75
+76 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:74:9-84:20
+77 android:name="net.micode.notes.ui.SplashActivity"
+77-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:74:19-52
+78 android:configChanges="orientation|keyboardHidden|screenSize"
+78-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:75:13-74
+79 android:label="@string/title_activity_splash"
+79-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:76:13-58
+80 android:theme="@style/Theme.Code.Fullscreen" >
+80-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:78:13-57
+81
+81-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:80:13-83:29
+82
+82-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:81:17-69
+82-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:81:25-66
+83
+84
+84-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:82:17-77
+84-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:82:27-74
+85
+86
+87 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:86:9-94:20
+88 android:name="net.micode.notes.ui.NotesListActivity"
+88-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:87:13-49
+89 android:configChanges="keyboardHidden|orientation|screenSize"
+89-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:88:13-74
+90 android:label="@string/app_name"
+90-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:89:13-45
+91 android:launchMode="singleTop"
+91-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:90:13-43
+92 android:theme="@style/NoteTheme"
+92-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:91:13-45
+93 android:uiOptions="splitActionBarWhenNarrow"
+93-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:92:13-57
+94 android:windowSoftInputMode="adjustPan" >
+94-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:93:13-52
+95
+96 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:97:9-128:20
+97 android:name="net.micode.notes.ui.NoteEditActivity"
+97-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:98:13-48
+98 android:configChanges="keyboardHidden|orientation|screenSize"
+98-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:99:13-74
+99 android:launchMode="singleTop"
+99-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:100:13-43
+100 android:theme="@style/NoteTheme" >
+100-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:101:13-45
+101
+101-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:103:13-110:29
+101-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:103:28-49
+102
+102-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:105:17-69
+102-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:105:25-66
+103
+104
+104-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:106:17-76
+104-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:106:27-73
+105
+106
+106-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:108:17-78
+106-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:108:23-75
+107
+107-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:108:17-78
+107-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:108:23-75
+108
+109
+109-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:112:13-118:29
+110
+110-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:113:17-79
+110-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:113:25-76
+111
+112
+112-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:106:17-76
+112-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:106:27-73
+113
+114
+114-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:108:17-78
+114-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:108:23-75
+115
+115-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:108:17-78
+115-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:108:23-75
+116
+117
+117-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:120:13-123:29
+118
+118-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:121:17-71
+118-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:121:25-68
119
-120 C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:111:13-113:58
-121 android:name="android.appwidget.provider"
-121-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:112:17-58
-122 android:resource="@xml/widget_4x_info" />
-122-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:113:17-55
-123
-124
-124-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:130:9-134:20
-124-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:130:19-55
-125
-125-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:131:13-133:29
-126
-126-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:132:17-79
-126-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:132:25-76
-127
-128
-129 C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:136:9-138:50
-130 android:name="net.micode.notes.ui.AlarmReceiver"
-130-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:137:13-61
-131 android:process=":remote" />
-131-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:138:13-38
+120
+120-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:106:17-76
+120-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:106:27-73
+121
+122
+123 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:125:13-127:54
+124 android:name="android.app.searchable"
+124-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:126:17-54
+125 android:resource="@xml/searchable" />
+125-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:127:17-51
+126
+127
+128 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:130:9-133:43
+129 android:name="net.micode.notes.data.NotesProvider"
+129-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:131:13-63
+130 android:authorities="micode_notes"
+130-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:132:13-47
+131 android:multiprocess="true" />
+131-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:133:13-40
132
-133 C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:140:9-144:87
-134 android:name="net.micode.notes.ui.AlarmAlertActivity"
-134-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:141:13-50
-135 android:label="@string/app_name"
-135-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:142:13-45
-136 android:launchMode="singleInstance"
-136-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:143:13-48
-137 android:theme="@android:style/Theme.Holo.Wallpaper.NoTitleBar" />
-137-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:144:13-75
-138 C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:146:9-150:72
-139 android:name="net.micode.notes.ui.NotesPreferenceActivity"
-139-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:147:13-71
-140 android:label="@string/preferences_title"
-140-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:148:13-54
-141 android:launchMode="singleTop"
-141-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:149:13-43
-142 android:theme="@android:style/Theme.Holo.Light" />
-142-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:150:13-60
-143
-144 C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:152:9-154:48
-145 android:name="net.micode.notes.gtask.remote.GTaskSyncService"
-145-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:153:13-74
-146 android:exported="false" />
-146-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:154:13-37
-147
-148 C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:156:9-158:52
-149 android:name="android.app.default_searchable"
-149-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:157:13-58
-150 android:value=".ui.NoteEditActivity" />
-150-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:158:13-49
-151
-152
-153
+133 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:135:9-147:20
+134 android:name="net.micode.notes.widget.NoteWidgetProvider_2x"
+134-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:136:13-57
+135 android:label="@string/app_widget2x2" >
+135-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:137:13-50
+136
+136-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:138:13-142:29
+137
+137-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:139:17-84
+137-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:139:25-81
+138
+138-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:140:17-85
+138-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:140:25-82
+139
+139-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:141:17-85
+139-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:141:25-82
+140
+141
+142 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:144:13-146:58
+143 android:name="android.appwidget.provider"
+143-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:145:17-58
+144 android:resource="@xml/widget_2x_info" />
+144-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:146:17-55
+145
+146 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:148:9-161:20
+147 android:name="net.micode.notes.widget.NoteWidgetProvider_4x"
+147-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:149:13-57
+148 android:label="@string/app_widget4x4" >
+148-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:150:13-50
+149
+149-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:138:13-142:29
+150
+150-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:139:17-84
+150-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:139:25-81
+151
+151-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:140:17-85
+151-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:140:25-82
+152
+152-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:141:17-85
+152-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:141:25-82
+153
+154
+155 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:144:13-146:58
+156 android:name="android.appwidget.provider"
+156-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:145:17-58
+157 android:resource="@xml/widget_4x_info" />
+157-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:146:17-55
+158
+159
+159-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:163:9-167:20
+159-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:163:19-55
+160
+160-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:164:13-166:29
+161
+161-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:165:17-79
+161-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:165:25-76
+162
+163
+164 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:169:9-171:50
+165 android:name="net.micode.notes.ui.AlarmReceiver"
+165-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:170:13-61
+166 android:process=":remote" />
+166-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:171:13-38
+167
+168 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:173:9-177:87
+169 android:name="net.micode.notes.ui.AlarmAlertActivity"
+169-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:174:13-50
+170 android:label="@string/app_name"
+170-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:175:13-45
+171 android:launchMode="singleInstance"
+171-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:176:13-48
+172 android:theme="@android:style/Theme.Holo.Wallpaper.NoTitleBar" />
+172-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:177:13-75
+173 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:179:9-183:72
+174 android:name="net.micode.notes.ui.NotesPreferenceActivity"
+174-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:180:13-71
+175 android:label="@string/preferences_title"
+175-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:181:13-54
+176 android:launchMode="singleTop"
+176-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:182:13-43
+177 android:theme="@android:style/Theme.Holo.Light" />
+177-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:183:13-60
+178
+179 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:185:9-187:48
+180 android:name="net.micode.notes.gtask.remote.GTaskSyncService"
+180-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:186:13-74
+181 android:exported="false" />
+181-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:187:13-37
+182
+183 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:189:9-191:52
+184 android:name="android.app.default_searchable"
+184-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:190:13-58
+185 android:value=".ui.NoteEditActivity" />
+185-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:191:13-49
+186
+187
+188
diff --git a/src/app/build/intermediates/merged_manifest/debug/AndroidManifest.xml b/src/app/build/intermediates/merged_manifest/debug/AndroidManifest.xml
index 574606fb..b01cdf4e 100644
--- a/src/app/build/intermediates/merged_manifest/debug/AndroidManifest.xml
+++ b/src/app/build/intermediates/merged_manifest/debug/AndroidManifest.xml
@@ -38,6 +38,41 @@
android:icon="@drawable/icon_app_new"
android:label="@string/app_name"
android:testOnly="true" >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/packaged_res/debug/layout/activity_delete_password.xml b/src/app/build/intermediates/packaged_res/debug/layout/activity_delete_password.xml
new file mode 100644
index 00000000..552853fc
--- /dev/null
+++ b/src/app/build/intermediates/packaged_res/debug/layout/activity_delete_password.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/packaged_res/debug/layout/activity_login.xml b/src/app/build/intermediates/packaged_res/debug/layout/activity_login.xml
new file mode 100644
index 00000000..a1e68698
--- /dev/null
+++ b/src/app/build/intermediates/packaged_res/debug/layout/activity_login.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/packaged_res/debug/layout/activity_set_loginpassword.xml b/src/app/build/intermediates/packaged_res/debug/layout/activity_set_loginpassword.xml
new file mode 100644
index 00000000..46bdca9b
--- /dev/null
+++ b/src/app/build/intermediates/packaged_res/debug/layout/activity_set_loginpassword.xml
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/packaged_res/debug/layout/note_edit.xml b/src/app/build/intermediates/packaged_res/debug/layout/note_edit.xml
index 1b3eca8e..7e310911 100644
--- a/src/app/build/intermediates/packaged_res/debug/layout/note_edit.xml
+++ b/src/app/build/intermediates/packaged_res/debug/layout/note_edit.xml
@@ -64,6 +64,14 @@
android:layout_marginRight="8dip"
android:textAppearance="@style/TextAppearanceSecondaryItem" />
+
+
+
+
+ android:layout_height="fill_parent">
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/packaged_res/debug/menu/note_list.xml b/src/app/build/intermediates/packaged_res/debug/menu/note_list.xml
index 42ea7363..889d8f4b 100644
--- a/src/app/build/intermediates/packaged_res/debug/menu/note_list.xml
+++ b/src/app/build/intermediates/packaged_res/debug/menu/note_list.xml
@@ -36,4 +36,27 @@
+
+
+
+
+
+
+
+
+
diff --git a/src/app/build/intermediates/packaged_res/debug/menu/note_type.xml b/src/app/build/intermediates/packaged_res/debug/menu/note_type.xml
new file mode 100644
index 00000000..1bcc5dea
--- /dev/null
+++ b/src/app/build/intermediates/packaged_res/debug/menu/note_type.xml
@@ -0,0 +1,12 @@
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/packaged_res/debug/values-zh-rCN/values-zh-rCN.xml b/src/app/build/intermediates/packaged_res/debug/values-zh-rCN/values-zh-rCN.xml
index d65e0cce..6c9757b6 100644
--- a/src/app/build/intermediates/packaged_res/debug/values-zh-rCN/values-zh-rCN.xml
+++ b/src/app/build/intermediates/packaged_res/debug/values-zh-rCN/values-zh-rCN.xml
@@ -7,6 +7,7 @@
- %1$s 条符合“%2$s”的搜索结果
+ 便签类型
确认删除文件夹及所包含的便签吗?
确认要删除该条便签吗?
确认要删除所选的 %d 条便签吗?
@@ -16,6 +17,7 @@
便签4x4
删除
通话便签
+ 空文本
取消
设置
成功删除提醒
@@ -33,6 +35,7 @@
MM月dd日 kk:mm
已将文本文件(%1$s)输出至SD卡(%2$s)目录
已将所选 %1$d 条便签移到 %2$s 文件夹
+ 未输入内容
请输入名称
已添加到桌面
提醒我
@@ -53,6 +56,7 @@
上一级文件夹
退出清单模式
删除提醒
+ 撤销
搜索
全选
没有选中项,操作无效
@@ -60,6 +64,7 @@
发送到桌面
设置
分享
+ 便签整理
同步
取消同步
选择文件夹
@@ -103,6 +108,7 @@
同步失败
同步成功
同步便签...
+ 提示
没有关联内容,点击新建便签。
访客模式下,便签内容不可见
\ No newline at end of file
diff --git a/src/app/build/intermediates/packaged_res/debug/values/values.xml b/src/app/build/intermediates/packaged_res/debug/values/values.xml
index 26c1ff9f..f7504e94 100644
--- a/src/app/build/intermediates/packaged_res/debug/values/values.xml
+++ b/src/app/build/intermediates/packaged_res/debug/values/values.xml
@@ -26,6 +26,7 @@
- %1$s results for \"%2$s\"
+ SetType
Confirm to delete folder and its notes?
Confirm to delete this note?
Confirm to delete the selected %d notes?
@@ -35,6 +36,7 @@
Notes 4x4
Delete
Call notes
+ empty
cancel
set
Delete reminder successfully
@@ -57,11 +59,15 @@
Export text file (%1$s) to SD (%2$s) directory
(%d)
Have moved selected %1$d notes to %2$s folder
+ You haven not input anything
Input name
Note added to home
Remind me
+ change font
+ change password
New Folder
Delete
+ delete password
Deselect all
Export text
Change folder name
@@ -73,10 +79,13 @@
Small
Super
Enter check list
+ setting password
Move to folder
Parent folder
Leave check list
+ read contain
Delete reminder
+ revoke
Search
Select all
Nothing selected, the operation is invalid
@@ -84,6 +93,7 @@
Send to home
Settings
Share
+ Sort
Sync
Cancel syncing
Select folder
@@ -128,6 +138,7 @@
Sync is failed
Sync is successful
Syncing notes...
+ Tips
FullscreenActivity
SplashActivity
No associated note found, click to create associated note.
diff --git a/src/app/build/intermediates/processed_res/debug/out/resources-debug.ap_ b/src/app/build/intermediates/processed_res/debug/out/resources-debug.ap_
index f596e567..e7091b57 100644
Binary files a/src/app/build/intermediates/processed_res/debug/out/resources-debug.ap_ and b/src/app/build/intermediates/processed_res/debug/out/resources-debug.ap_ differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/e2d519e5bebf8c32819508c8bbd6c1f9e267b9320ccc8d00128369c68b565546_5.jar b/src/app/build/intermediates/project_dex_archive/debug/out/e2d519e5bebf8c32819508c8bbd6c1f9e267b9320ccc8d00128369c68b565546_5.jar
deleted file mode 100644
index f8a80fc7..00000000
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/e2d519e5bebf8c32819508c8bbd6c1f9e267b9320ccc8d00128369c68b565546_5.jar and /dev/null differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/e2d519e5bebf8c32819508c8bbd6c1f9e267b9320ccc8d00128369c68b565546_0.jar b/src/app/build/intermediates/project_dex_archive/debug/out/e2ebdf669e5a59512db8036474bcd2dbd1821abcacff19f29c47175838c563a6_0.jar
similarity index 100%
rename from src/app/build/intermediates/project_dex_archive/debug/out/e2d519e5bebf8c32819508c8bbd6c1f9e267b9320ccc8d00128369c68b565546_0.jar
rename to src/app/build/intermediates/project_dex_archive/debug/out/e2ebdf669e5a59512db8036474bcd2dbd1821abcacff19f29c47175838c563a6_0.jar
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/e2ebdf669e5a59512db8036474bcd2dbd1821abcacff19f29c47175838c563a6_5.jar b/src/app/build/intermediates/project_dex_archive/debug/out/e2ebdf669e5a59512db8036474bcd2dbd1821abcacff19f29c47175838c563a6_5.jar
new file mode 100644
index 00000000..f4ff65ab
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/e2ebdf669e5a59512db8036474bcd2dbd1821abcacff19f29c47175838c563a6_5.jar differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/e2d519e5bebf8c32819508c8bbd6c1f9e267b9320ccc8d00128369c68b565546_6.jar b/src/app/build/intermediates/project_dex_archive/debug/out/e2ebdf669e5a59512db8036474bcd2dbd1821abcacff19f29c47175838c563a6_6.jar
similarity index 100%
rename from src/app/build/intermediates/project_dex_archive/debug/out/e2d519e5bebf8c32819508c8bbd6c1f9e267b9320ccc8d00128369c68b565546_6.jar
rename to src/app/build/intermediates/project_dex_archive/debug/out/e2ebdf669e5a59512db8036474bcd2dbd1821abcacff19f29c47175838c563a6_6.jar
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$CallNote.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$CallNote.dex
index b845b4e2..d4dd3d9f 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$CallNote.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$CallNote.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$NoteColumns.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$NoteColumns.dex
index 3e6ef4ea..ea662740 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$NoteColumns.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$NoteColumns.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$TextNote.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$TextNote.dex
index 9f409497..f502b250 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$TextNote.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$TextNote.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesDatabaseHelper.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesDatabaseHelper.dex
index 20e87a9e..8e422d77 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesDatabaseHelper.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesDatabaseHelper.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/ActivityChangePasswordBinding.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/ActivityChangePasswordBinding.dex
new file mode 100644
index 00000000..f6ee4fc9
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/ActivityChangePasswordBinding.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/ActivityDeletePasswordBinding.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/ActivityDeletePasswordBinding.dex
new file mode 100644
index 00000000..6fa38ecc
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/ActivityDeletePasswordBinding.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/ActivityLoginBinding.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/ActivityLoginBinding.dex
new file mode 100644
index 00000000..e0f875d3
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/ActivityLoginBinding.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/ActivitySetLoginpasswordBinding.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/ActivitySetLoginpasswordBinding.dex
new file mode 100644
index 00000000..95cb488b
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/ActivitySetLoginpasswordBinding.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteEditBinding.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteEditBinding.dex
index 18363537..acc30a90 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteEditBinding.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteEditBinding.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteItemBinding.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteItemBinding.dex
index 165e57cb..18818250 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteItemBinding.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteItemBinding.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/SqlNote.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/SqlNote.dex
index fa9fd36b..103ab00c 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/SqlNote.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/SqlNote.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/Note$NoteData.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/Note$NoteData.dex
index 61e3ab4e..fb4ff5a8 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/Note$NoteData.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/Note$NoteData.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/Note.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/Note.dex
index abb001b4..02cff21e 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/Note.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/Note.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/WorkingNote.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/WorkingNote.dex
index ab0f2222..fcf0a422 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/WorkingNote.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/WorkingNote.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/ChangingPassword$1.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/ChangingPassword$1.dex
new file mode 100644
index 00000000..3e7f1395
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/ChangingPassword$1.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/ChangingPassword.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/ChangingPassword.dex
new file mode 100644
index 00000000..1407a5b1
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/ChangingPassword.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DeletingPassword$1.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DeletingPassword$1.dex
new file mode 100644
index 00000000..1d33eafc
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DeletingPassword$1.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DeletingPassword.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DeletingPassword.dex
new file mode 100644
index 00000000..541d5778
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DeletingPassword.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/LoginActivity$1.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/LoginActivity$1.dex
new file mode 100644
index 00000000..9a2f05d2
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/LoginActivity$1.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/LoginActivity.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/LoginActivity.dex
new file mode 100644
index 00000000..02dd3f93
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/LoginActivity.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$1.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$1.dex
index 7a221377..527a8323 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$1.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$1.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$10.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$10.dex
new file mode 100644
index 00000000..b7ab50d5
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$10.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$11.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$11.dex
new file mode 100644
index 00000000..32fd38c1
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$11.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$12.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$12.dex
new file mode 100644
index 00000000..1f32d117
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$12.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$2.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$2.dex
index dfe6533b..4c1ab0d2 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$2.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$2.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$3.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$3.dex
index fc051fd8..f5196b3d 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$3.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$3.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$4.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$4.dex
index d3dc5899..37addf6f 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$4.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$4.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$5.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$5.dex
new file mode 100644
index 00000000..8bbf190a
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$5.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$6.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$6.dex
new file mode 100644
index 00000000..b3d42561
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$6.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$7.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$7.dex
new file mode 100644
index 00000000..f0af1203
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$7.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$8.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$8.dex
new file mode 100644
index 00000000..95e54fa8
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$8.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$9.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$9.dex
new file mode 100644
index 00000000..cae0184d
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$9.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$HeadViewHolder.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$HeadViewHolder.dex
index 1d1ec6b0..6f72e409 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$HeadViewHolder.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$HeadViewHolder.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity.dex
index e634bdf5..9c7dee17 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteItemData.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteItemData.dex
index bc0b0bfb..9cc602f9 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteItemData.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteItemData.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$1.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$1.dex
index 90748f7b..6f735913 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$1.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$1.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$10.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$10.dex
new file mode 100644
index 00000000..232088a2
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$10.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$2.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$2.dex
index 81b2e00f..7c1dd20e 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$2.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$2.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$3.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$3.dex
index 2d33925f..eb04e29a 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$3.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$3.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$4.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$4.dex
index b6b9a182..f0fbb452 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$4.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$4.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$5.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$5.dex
index db22c954..37a21376 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$5.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$5.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$6.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$6.dex
index a09fa48e..6e97e0d4 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$6.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$6.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$7.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$7.dex
index ceaca3f1..b1e139ad 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$7.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$7.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$8.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$8.dex
index 93b7a049..51d3bf91 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$8.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$8.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$9.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$9.dex
index 6ed3917c..3b7c5a30 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$9.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$9.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$BackgroundQueryHandler.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$BackgroundQueryHandler.dex
index 7edd2ed9..ddaaae1a 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$BackgroundQueryHandler.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$BackgroundQueryHandler.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback$1.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback$1.dex
index edc9fa7f..75871ce0 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback$1.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback$1.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback$2.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback$2.dex
index e10111f2..134289e3 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback$2.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback$2.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback.dex
index 1ecca762..13fead29 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$NewNoteOnTouchListener.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$NewNoteOnTouchListener.dex
index bb5cdca2..42c6d824 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$NewNoteOnTouchListener.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$NewNoteOnTouchListener.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$OnListItemClickListener.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$OnListItemClickListener.dex
index 903f51ae..d5f611ec 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$OnListItemClickListener.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$OnListItemClickListener.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity.dex
index 7e09bedc..c708d0ac 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListItem.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListItem.dex
index 5641b4dd..9c4754a9 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListItem.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListItem.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/SettingPassword$1.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/SettingPassword$1.dex
new file mode 100644
index 00000000..877bd4f0
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/SettingPassword$1.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/SettingPassword.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/SettingPassword.dex
new file mode 100644
index 00000000..314554e6
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/SettingPassword.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/SplashActivity$1.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/SplashActivity$1.dex
index 1c2ef022..4290badd 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/SplashActivity$1.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/SplashActivity$1.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/SplashActivity.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/SplashActivity.dex
index 56bac024..570d4b01 100644
Binary files a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/SplashActivity.dex and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/SplashActivity.dex differ
diff --git a/src/app/build/intermediates/runtime_symbol_list/debug/R.txt b/src/app/build/intermediates/runtime_symbol_list/debug/R.txt
index c1def01c..0d6e3cfc 100644
--- a/src/app/build/intermediates/runtime_symbol_list/debug/R.txt
+++ b/src/app/build/intermediates/runtime_symbol_list/debug/R.txt
@@ -429,234 +429,261 @@ int drawable bg_btn_set_color 0x7f07003d
int drawable bg_color_btn_mask 0x7f07003e
int drawable call_record 0x7f07003f
int drawable clock 0x7f070040
-int drawable delete 0x7f070041
-int drawable dropdown_icon 0x7f070042
-int drawable edit_blue 0x7f070043
-int drawable edit_green 0x7f070044
-int drawable edit_red 0x7f070045
-int drawable edit_title_blue 0x7f070046
-int drawable edit_title_green 0x7f070047
-int drawable edit_title_red 0x7f070048
-int drawable edit_title_white 0x7f070049
-int drawable edit_title_yellow 0x7f07004a
-int drawable edit_white 0x7f07004b
-int drawable edit_yellow 0x7f07004c
-int drawable font_large 0x7f07004d
-int drawable font_normal 0x7f07004e
-int drawable font_size_selector_bg 0x7f07004f
-int drawable font_small 0x7f070050
-int drawable font_super 0x7f070051
-int drawable icon_app 0x7f070052
-int drawable icon_app_new 0x7f070053
-int drawable list_background 0x7f070054
-int drawable list_blue_down 0x7f070055
-int drawable list_blue_middle 0x7f070056
-int drawable list_blue_single 0x7f070057
-int drawable list_blue_up 0x7f070058
-int drawable list_folder 0x7f070059
-int drawable list_footer_bg 0x7f07005a
-int drawable list_green_down 0x7f07005b
-int drawable list_green_middle 0x7f07005c
-int drawable list_green_single 0x7f07005d
-int drawable list_green_up 0x7f07005e
-int drawable list_red_down 0x7f07005f
-int drawable list_red_middle 0x7f070060
-int drawable list_red_single 0x7f070061
-int drawable list_red_up 0x7f070062
-int drawable list_white_down 0x7f070063
-int drawable list_white_middle 0x7f070064
-int drawable list_white_single 0x7f070065
-int drawable list_white_up 0x7f070066
-int drawable list_yellow_down 0x7f070067
-int drawable list_yellow_middle 0x7f070068
-int drawable list_yellow_single 0x7f070069
-int drawable list_yellow_up 0x7f07006a
-int drawable menu_delete 0x7f07006b
-int drawable menu_move 0x7f07006c
-int drawable new_note 0x7f07006d
-int drawable new_note_normal 0x7f07006e
-int drawable new_note_pressed 0x7f07006f
-int drawable note_edit_color_selector_panel 0x7f070070
-int drawable notification 0x7f070071
-int drawable notification_template_icon_bg 0x7f070072
-int drawable search_result 0x7f070073
-int drawable selected 0x7f070074
-int drawable splash 0x7f070075
-int drawable title_alert 0x7f070076
-int drawable title_bar_bg 0x7f070077
-int drawable widget_2x_blue 0x7f070078
-int drawable widget_2x_green 0x7f070079
-int drawable widget_2x_red 0x7f07007a
-int drawable widget_2x_white 0x7f07007b
-int drawable widget_2x_yellow 0x7f07007c
-int drawable widget_4x_blue 0x7f07007d
-int drawable widget_4x_green 0x7f07007e
-int drawable widget_4x_red 0x7f07007f
-int drawable widget_4x_white 0x7f070080
-int drawable widget_4x_yellow 0x7f070081
-int id account_dialog_subtitle 0x7f080000
-int id account_dialog_title 0x7f080001
-int id action0 0x7f080002
-int id action_bar 0x7f080003
-int id action_bar_activity_content 0x7f080004
-int id action_bar_container 0x7f080005
-int id action_bar_root 0x7f080006
-int id action_bar_spinner 0x7f080007
-int id action_bar_subtitle 0x7f080008
-int id action_bar_title 0x7f080009
-int id action_context_bar 0x7f08000a
-int id action_divider 0x7f08000b
-int id action_menu_divider 0x7f08000c
-int id action_menu_presenter 0x7f08000d
-int id action_mode_bar 0x7f08000e
-int id action_mode_bar_stub 0x7f08000f
-int id action_mode_close_button 0x7f080010
-int id action_select_all 0x7f080011
-int id activity_chooser_view_content 0x7f080012
-int id alertTitle 0x7f080013
-int id always 0x7f080014
-int id amPm 0x7f080015
-int id beginning 0x7f080016
-int id btn_new_note 0x7f080017
-int id btn_set_bg_color 0x7f080018
-int id buttonPanel 0x7f080019
-int id cancel_action 0x7f08001a
-int id cb_edit_item 0x7f08001b
-int id checkbox 0x7f08001c
-int id chronometer 0x7f08001d
-int id collapseActionView 0x7f08001e
-int id contentPanel 0x7f08001f
-int id custom 0x7f080020
-int id customPanel 0x7f080021
-int id date 0x7f080022
-int id decor_content_parent 0x7f080023
-int id default_activity_button 0x7f080024
-int id delete 0x7f080025
-int id dialog 0x7f080026
-int id disableHome 0x7f080027
-int id dropdown 0x7f080028
-int id dummy_button 0x7f080029
-int id edit_query 0x7f08002a
-int id end 0x7f08002b
-int id end_padder 0x7f08002c
-int id et_edit_text 0x7f08002d
-int id et_foler_name 0x7f08002e
-int id expand_activities_button 0x7f08002f
-int id expanded_menu 0x7f080030
-int id font_size_selector 0x7f080031
-int id fullscreen_content 0x7f080032
-int id fullscreen_content_controls 0x7f080033
-int id home 0x7f080034
-int id homeAsUp 0x7f080035
-int id hour 0x7f080036
-int id icon 0x7f080037
-int id ifRoom 0x7f080038
-int id image 0x7f080039
-int id info 0x7f08003a
-int id iv_alert_icon 0x7f08003b
-int id iv_bg_blue 0x7f08003c
-int id iv_bg_blue_select 0x7f08003d
-int id iv_bg_green 0x7f08003e
-int id iv_bg_green_select 0x7f08003f
-int id iv_bg_red 0x7f080040
-int id iv_bg_red_select 0x7f080041
-int id iv_bg_white 0x7f080042
-int id iv_bg_white_select 0x7f080043
-int id iv_bg_yellow 0x7f080044
-int id iv_bg_yellow_select 0x7f080045
-int id iv_large_select 0x7f080046
-int id iv_medium_select 0x7f080047
-int id iv_small_select 0x7f080048
-int id iv_super_select 0x7f080049
-int id line1 0x7f08004a
-int id line3 0x7f08004b
-int id listMode 0x7f08004c
-int id list_item 0x7f08004d
-int id ll_font_large 0x7f08004e
-int id ll_font_normal 0x7f08004f
-int id ll_font_small 0x7f080050
-int id ll_font_super 0x7f080051
-int id media_actions 0x7f080052
-int id menu_alert 0x7f080053
-int id menu_delete 0x7f080054
-int id menu_delete_remind 0x7f080055
-int id menu_export_text 0x7f080056
-int id menu_font_size 0x7f080057
-int id menu_list_mode 0x7f080058
-int id menu_new_folder 0x7f080059
-int id menu_new_note 0x7f08005a
-int id menu_search 0x7f08005b
-int id menu_send_to_desktop 0x7f08005c
-int id menu_setting 0x7f08005d
-int id menu_share 0x7f08005e
-int id menu_sync 0x7f08005f
-int id middle 0x7f080060
-int id minute 0x7f080061
-int id move 0x7f080062
-int id multiply 0x7f080063
-int id navigation_bar 0x7f080064
-int id never 0x7f080065
-int id none 0x7f080066
-int id normal 0x7f080067
-int id note_bg_color_selector 0x7f080068
-int id note_edit_list 0x7f080069
-int id note_edit_view 0x7f08006a
-int id note_item 0x7f08006b
-int id note_title 0x7f08006c
-int id notes_list 0x7f08006d
-int id parentPanel 0x7f08006e
-int id prefenerece_sync_status_textview 0x7f08006f
-int id preference_sync_button 0x7f080070
-int id progress_circular 0x7f080071
-int id progress_horizontal 0x7f080072
-int id radio 0x7f080073
-int id screen 0x7f080074
-int id scrollView 0x7f080075
-int id search_badge 0x7f080076
-int id search_bar 0x7f080077
-int id search_button 0x7f080078
-int id search_close_btn 0x7f080079
-int id search_edit_frame 0x7f08007a
-int id search_go_btn 0x7f08007b
-int id search_mag_icon 0x7f08007c
-int id search_plate 0x7f08007d
-int id search_src_text 0x7f08007e
-int id search_voice_btn 0x7f08007f
-int id select_dialog_listview 0x7f080080
-int id selection_menu 0x7f080081
-int id shortcut 0x7f080082
-int id showCustom 0x7f080083
-int id showHome 0x7f080084
-int id showTitle 0x7f080085
-int id split_action_bar 0x7f080086
-int id src_atop 0x7f080087
-int id src_in 0x7f080088
-int id src_over 0x7f080089
-int id status_bar_latest_event_content 0x7f08008a
-int id submit_area 0x7f08008b
-int id sv_note_edit 0x7f08008c
-int id tabMode 0x7f08008d
-int id text 0x7f08008e
-int id text2 0x7f08008f
-int id textSpacerNoButtons 0x7f080090
-int id text_num 0x7f080091
-int id time 0x7f080092
-int id title 0x7f080093
-int id title_template 0x7f080094
-int id topPanel 0x7f080095
-int id tv_alert_date 0x7f080096
-int id tv_folder_name 0x7f080097
-int id tv_modified_date 0x7f080098
-int id tv_name 0x7f080099
-int id tv_time 0x7f08009a
-int id tv_title 0x7f08009b
-int id tv_title_bar 0x7f08009c
-int id up 0x7f08009d
-int id useLogo 0x7f08009e
-int id widget_bg_image 0x7f08009f
-int id widget_text 0x7f0800a0
-int id withText 0x7f0800a1
-int id wrap_content 0x7f0800a2
+int drawable daybackground 0x7f070041
+int drawable delete 0x7f070042
+int drawable dropdown_icon 0x7f070043
+int drawable edit_blue 0x7f070044
+int drawable edit_green 0x7f070045
+int drawable edit_red 0x7f070046
+int drawable edit_title_blue 0x7f070047
+int drawable edit_title_green 0x7f070048
+int drawable edit_title_red 0x7f070049
+int drawable edit_title_white 0x7f07004a
+int drawable edit_title_yellow 0x7f07004b
+int drawable edit_white 0x7f07004c
+int drawable edit_yellow 0x7f07004d
+int drawable font_large 0x7f07004e
+int drawable font_normal 0x7f07004f
+int drawable font_size_selector_bg 0x7f070050
+int drawable font_small 0x7f070051
+int drawable font_super 0x7f070052
+int drawable icon_app 0x7f070053
+int drawable icon_app_new 0x7f070054
+int drawable list_background 0x7f070055
+int drawable list_blue_down 0x7f070056
+int drawable list_blue_middle 0x7f070057
+int drawable list_blue_single 0x7f070058
+int drawable list_blue_up 0x7f070059
+int drawable list_folder 0x7f07005a
+int drawable list_footer_bg 0x7f07005b
+int drawable list_green_down 0x7f07005c
+int drawable list_green_middle 0x7f07005d
+int drawable list_green_single 0x7f07005e
+int drawable list_green_up 0x7f07005f
+int drawable list_red_down 0x7f070060
+int drawable list_red_middle 0x7f070061
+int drawable list_red_single 0x7f070062
+int drawable list_red_up 0x7f070063
+int drawable list_white_down 0x7f070064
+int drawable list_white_middle 0x7f070065
+int drawable list_white_single 0x7f070066
+int drawable list_white_up 0x7f070067
+int drawable list_yellow_down 0x7f070068
+int drawable list_yellow_middle 0x7f070069
+int drawable list_yellow_single 0x7f07006a
+int drawable list_yellow_up 0x7f07006b
+int drawable menu_delete 0x7f07006c
+int drawable menu_move 0x7f07006d
+int drawable new_note 0x7f07006e
+int drawable new_note_normal 0x7f07006f
+int drawable new_note_pressed 0x7f070070
+int drawable nightbackground 0x7f070071
+int drawable note_edit_color_selector_panel 0x7f070072
+int drawable notification 0x7f070073
+int drawable notification_template_icon_bg 0x7f070074
+int drawable search_result 0x7f070075
+int drawable selected 0x7f070076
+int drawable splash 0x7f070077
+int drawable title_alert 0x7f070078
+int drawable title_bar_bg 0x7f070079
+int drawable widget_2x_blue 0x7f07007a
+int drawable widget_2x_green 0x7f07007b
+int drawable widget_2x_red 0x7f07007c
+int drawable widget_2x_white 0x7f07007d
+int drawable widget_2x_yellow 0x7f07007e
+int drawable widget_4x_blue 0x7f07007f
+int drawable widget_4x_green 0x7f070080
+int drawable widget_4x_red 0x7f070081
+int drawable widget_4x_white 0x7f070082
+int drawable widget_4x_yellow 0x7f070083
+int id Acknowledged 0x7f080000
+int id Dt_Acknowledged 0x7f080001
+int id account_dialog_subtitle 0x7f080002
+int id account_dialog_title 0x7f080003
+int id ack_password 0x7f080004
+int id acknowledge 0x7f080005
+int id action0 0x7f080006
+int id action_bar 0x7f080007
+int id action_bar_activity_content 0x7f080008
+int id action_bar_container 0x7f080009
+int id action_bar_root 0x7f08000a
+int id action_bar_spinner 0x7f08000b
+int id action_bar_subtitle 0x7f08000c
+int id action_bar_title 0x7f08000d
+int id action_context_bar 0x7f08000e
+int id action_divider 0x7f08000f
+int id action_menu_divider 0x7f080010
+int id action_menu_presenter 0x7f080011
+int id action_mode_bar 0x7f080012
+int id action_mode_bar_stub 0x7f080013
+int id action_mode_close_button 0x7f080014
+int id action_select_all 0x7f080015
+int id activity_chooser_view_content 0x7f080016
+int id alertTitle 0x7f080017
+int id always 0x7f080018
+int id amPm 0x7f080019
+int id beginning 0x7f08001a
+int id btn_SetType 0x7f08001b
+int id btn_new_note 0x7f08001c
+int id btn_set_bg_color 0x7f08001d
+int id buttonPanel 0x7f08001e
+int id cancel_action 0x7f08001f
+int id cb_edit_item 0x7f080020
+int id checkbox 0x7f080021
+int id chronometer 0x7f080022
+int id collapseActionView 0x7f080023
+int id contentPanel 0x7f080024
+int id custom 0x7f080025
+int id customPanel 0x7f080026
+int id date 0x7f080027
+int id decor_content_parent 0x7f080028
+int id default_activity_button 0x7f080029
+int id delete 0x7f08002a
+int id dialog 0x7f08002b
+int id disableHome 0x7f08002c
+int id dropdown 0x7f08002d
+int id dummy_button 0x7f08002e
+int id edit_query 0x7f08002f
+int id end 0x7f080030
+int id end_padder 0x7f080031
+int id et_edit_text 0x7f080032
+int id et_foler_name 0x7f080033
+int id expand_activities_button 0x7f080034
+int id expanded_menu 0x7f080035
+int id family 0x7f080036
+int id font_size_selector 0x7f080037
+int id fullscreen_content 0x7f080038
+int id fullscreen_content_controls 0x7f080039
+int id home 0x7f08003a
+int id homeAsUp 0x7f08003b
+int id hour 0x7f08003c
+int id icon 0x7f08003d
+int id ifRoom 0x7f08003e
+int id image 0x7f08003f
+int id info 0x7f080040
+int id iv_alert_icon 0x7f080041
+int id iv_bg_blue 0x7f080042
+int id iv_bg_blue_select 0x7f080043
+int id iv_bg_green 0x7f080044
+int id iv_bg_green_select 0x7f080045
+int id iv_bg_red 0x7f080046
+int id iv_bg_red_select 0x7f080047
+int id iv_bg_white 0x7f080048
+int id iv_bg_white_select 0x7f080049
+int id iv_bg_yellow 0x7f08004a
+int id iv_bg_yellow_select 0x7f08004b
+int id iv_large_select 0x7f08004c
+int id iv_medium_select 0x7f08004d
+int id iv_small_select 0x7f08004e
+int id iv_super_select 0x7f08004f
+int id lg_password 0x7f080050
+int id line1 0x7f080051
+int id line3 0x7f080052
+int id listMode 0x7f080053
+int id list_item 0x7f080054
+int id ll_font_large 0x7f080055
+int id ll_font_normal 0x7f080056
+int id ll_font_small 0x7f080057
+int id ll_font_super 0x7f080058
+int id login 0x7f080059
+int id media_actions 0x7f08005a
+int id menu_DayMood 0x7f08005b
+int id menu_NightMood 0x7f08005c
+int id menu_alert 0x7f08005d
+int id menu_change_font 0x7f08005e
+int id menu_change_password 0x7f08005f
+int id menu_delete 0x7f080060
+int id menu_delete_password 0x7f080061
+int id menu_delete_remind 0x7f080062
+int id menu_export_text 0x7f080063
+int id menu_font_size 0x7f080064
+int id menu_list_mode 0x7f080065
+int id menu_login 0x7f080066
+int id menu_new_folder 0x7f080067
+int id menu_new_note 0x7f080068
+int id menu_read_contain 0x7f080069
+int id menu_revoke 0x7f08006a
+int id menu_search 0x7f08006b
+int id menu_send_to_desktop 0x7f08006c
+int id menu_setting 0x7f08006d
+int id menu_share 0x7f08006e
+int id menu_sort 0x7f08006f
+int id menu_sync 0x7f080070
+int id middle 0x7f080071
+int id minute 0x7f080072
+int id move 0x7f080073
+int id multiply 0x7f080074
+int id navigation_bar 0x7f080075
+int id never 0x7f080076
+int id new_password 0x7f080077
+int id none 0x7f080078
+int id normal 0x7f080079
+int id note_bg_color_selector 0x7f08007a
+int id note_edit_list 0x7f08007b
+int id note_edit_view 0x7f08007c
+int id note_item 0x7f08007d
+int id note_title 0x7f08007e
+int id notes_list 0x7f08007f
+int id old_password 0x7f080080
+int id parentPanel 0x7f080081
+int id password 0x7f080082
+int id password_ack 0x7f080083
+int id person 0x7f080084
+int id prefenerece_sync_status_textview 0x7f080085
+int id preference_sync_button 0x7f080086
+int id progress_circular 0x7f080087
+int id progress_horizontal 0x7f080088
+int id radio 0x7f080089
+int id screen 0x7f08008a
+int id scrollView 0x7f08008b
+int id search_badge 0x7f08008c
+int id search_bar 0x7f08008d
+int id search_button 0x7f08008e
+int id search_close_btn 0x7f08008f
+int id search_edit_frame 0x7f080090
+int id search_go_btn 0x7f080091
+int id search_mag_icon 0x7f080092
+int id search_plate 0x7f080093
+int id search_src_text 0x7f080094
+int id search_voice_btn 0x7f080095
+int id select_dialog_listview 0x7f080096
+int id selection_menu 0x7f080097
+int id shortcut 0x7f080098
+int id showCustom 0x7f080099
+int id showHome 0x7f08009a
+int id showTitle 0x7f08009b
+int id split_action_bar 0x7f08009c
+int id src_atop 0x7f08009d
+int id src_in 0x7f08009e
+int id src_over 0x7f08009f
+int id status_bar_latest_event_content 0x7f0800a0
+int id submit_area 0x7f0800a1
+int id sv_note_edit 0x7f0800a2
+int id tabMode 0x7f0800a3
+int id text 0x7f0800a4
+int id text2 0x7f0800a5
+int id textSpacerNoButtons 0x7f0800a6
+int id text_num 0x7f0800a7
+int id thepassword 0x7f0800a8
+int id time 0x7f0800a9
+int id title 0x7f0800aa
+int id title_template 0x7f0800ab
+int id topPanel 0x7f0800ac
+int id tv_alert_date 0x7f0800ad
+int id tv_folder_name 0x7f0800ae
+int id tv_modified_date 0x7f0800af
+int id tv_name 0x7f0800b0
+int id tv_time 0x7f0800b1
+int id tv_title 0x7f0800b2
+int id tv_title_bar 0x7f0800b3
+int id tv_type 0x7f0800b4
+int id up 0x7f0800b5
+int id useLogo 0x7f0800b6
+int id widget_bg_image 0x7f0800b7
+int id widget_text 0x7f0800b8
+int id withText 0x7f0800b9
+int id work 0x7f0800ba
+int id wrap_content 0x7f0800bb
int integer abc_config_activityDefaultDur 0x7f090000
int integer abc_config_activityShortDur 0x7f090001
int integer abc_max_action_buttons 0x7f090002
@@ -688,165 +715,181 @@ int layout abc_search_view 0x7f0a0016
int layout abc_select_dialog_material 0x7f0a0017
int layout abc_simple_dropdown_hint 0x7f0a0018
int layout account_dialog_title 0x7f0a0019
-int layout activity_splash 0x7f0a001a
-int layout add_account_text 0x7f0a001b
-int layout datetime_picker 0x7f0a001c
-int layout dialog_edit_text 0x7f0a001d
-int layout folder_list_item 0x7f0a001e
-int layout note_edit 0x7f0a001f
-int layout note_edit_list_item 0x7f0a0020
-int layout note_item 0x7f0a0021
-int layout note_list 0x7f0a0022
-int layout note_list_dropdown_menu 0x7f0a0023
-int layout note_list_footer 0x7f0a0024
-int layout notification_media_action 0x7f0a0025
-int layout notification_media_cancel_action 0x7f0a0026
-int layout notification_template_big_media 0x7f0a0027
-int layout notification_template_big_media_narrow 0x7f0a0028
-int layout notification_template_lines 0x7f0a0029
-int layout notification_template_media 0x7f0a002a
-int layout notification_template_part_chronometer 0x7f0a002b
-int layout notification_template_part_time 0x7f0a002c
-int layout select_dialog_item_material 0x7f0a002d
-int layout select_dialog_multichoice_material 0x7f0a002e
-int layout select_dialog_singlechoice_material 0x7f0a002f
-int layout settings_header 0x7f0a0030
-int layout support_simple_spinner_dropdown_item 0x7f0a0031
-int layout widget_2x 0x7f0a0032
-int layout widget_4x 0x7f0a0033
+int layout activity_change_password 0x7f0a001a
+int layout activity_delete_password 0x7f0a001b
+int layout activity_login 0x7f0a001c
+int layout activity_set_loginpassword 0x7f0a001d
+int layout activity_splash 0x7f0a001e
+int layout add_account_text 0x7f0a001f
+int layout datetime_picker 0x7f0a0020
+int layout dialog_edit_text 0x7f0a0021
+int layout folder_list_item 0x7f0a0022
+int layout note_edit 0x7f0a0023
+int layout note_edit_list_item 0x7f0a0024
+int layout note_item 0x7f0a0025
+int layout note_list 0x7f0a0026
+int layout note_list_dropdown_menu 0x7f0a0027
+int layout note_list_footer 0x7f0a0028
+int layout notification_media_action 0x7f0a0029
+int layout notification_media_cancel_action 0x7f0a002a
+int layout notification_template_big_media 0x7f0a002b
+int layout notification_template_big_media_narrow 0x7f0a002c
+int layout notification_template_lines 0x7f0a002d
+int layout notification_template_media 0x7f0a002e
+int layout notification_template_part_chronometer 0x7f0a002f
+int layout notification_template_part_time 0x7f0a0030
+int layout select_dialog_item_material 0x7f0a0031
+int layout select_dialog_multichoice_material 0x7f0a0032
+int layout select_dialog_singlechoice_material 0x7f0a0033
+int layout settings_header 0x7f0a0034
+int layout support_simple_spinner_dropdown_item 0x7f0a0035
+int layout widget_2x 0x7f0a0036
+int layout widget_4x 0x7f0a0037
int menu call_note_edit 0x7f0b0000
int menu call_record_folder 0x7f0b0001
int menu note_edit 0x7f0b0002
int menu note_list 0x7f0b0003
int menu note_list_dropdown 0x7f0b0004
int menu note_list_options 0x7f0b0005
-int menu sub_folder 0x7f0b0006
+int menu note_type 0x7f0b0006
+int menu sub_folder 0x7f0b0007
int plurals search_results_title 0x7f0c0000
int raw introduction 0x7f0d0000
-int string abc_action_bar_home_description 0x7f0e0000
-int string abc_action_bar_home_description_format 0x7f0e0001
-int string abc_action_bar_home_subtitle_description_format 0x7f0e0002
-int string abc_action_bar_up_description 0x7f0e0003
-int string abc_action_menu_overflow_description 0x7f0e0004
-int string abc_action_mode_done 0x7f0e0005
-int string abc_activity_chooser_view_see_all 0x7f0e0006
-int string abc_activitychooserview_choose_application 0x7f0e0007
-int string abc_search_hint 0x7f0e0008
-int string abc_searchview_description_clear 0x7f0e0009
-int string abc_searchview_description_query 0x7f0e000a
-int string abc_searchview_description_search 0x7f0e000b
-int string abc_searchview_description_submit 0x7f0e000c
-int string abc_searchview_description_voice 0x7f0e000d
-int string abc_shareactionprovider_share_with 0x7f0e000e
-int string abc_shareactionprovider_share_with_application 0x7f0e000f
-int string abc_toolbar_collapse_description 0x7f0e0010
-int string alert_message_delete_folder 0x7f0e0011
-int string alert_message_delete_note 0x7f0e0012
-int string alert_message_delete_notes 0x7f0e0013
-int string alert_title_delete 0x7f0e0014
-int string app_name 0x7f0e0015
-int string app_widget2x2 0x7f0e0016
-int string app_widget4x4 0x7f0e0017
-int string button_delete 0x7f0e0018
-int string call_record_folder_name 0x7f0e0019
-int string datetime_dialog_cancel 0x7f0e001a
-int string datetime_dialog_ok 0x7f0e001b
-int string delete_remind_time_message 0x7f0e001c
-int string dummy_button 0x7f0e001d
-int string dummy_content 0x7f0e001e
-int string error_note_empty_for_clock 0x7f0e001f
-int string error_note_empty_for_send_to_desktop 0x7f0e0020
-int string error_note_not_exist 0x7f0e0021
-int string error_sdcard_export 0x7f0e0022
-int string error_sdcard_unmounted 0x7f0e0023
-int string error_sync_cancelled 0x7f0e0024
-int string error_sync_internal 0x7f0e0025
-int string error_sync_network 0x7f0e0026
-int string failed_sdcard_export 0x7f0e0027
-int string file_name_txt_format 0x7f0e0028
-int string file_path 0x7f0e0029
-int string folder_exist 0x7f0e002a
-int string format_date_ymd 0x7f0e002b
-int string format_datetime_mdhm 0x7f0e002c
-int string format_exported_file_location 0x7f0e002d
-int string format_folder_files_count 0x7f0e002e
-int string format_move_notes_to_folder 0x7f0e002f
-int string hint_foler_name 0x7f0e0030
-int string info_note_enter_desktop 0x7f0e0031
-int string menu_alert 0x7f0e0032
-int string menu_create_folder 0x7f0e0033
-int string menu_delete 0x7f0e0034
-int string menu_deselect_all 0x7f0e0035
-int string menu_export_text 0x7f0e0036
-int string menu_folder_change_name 0x7f0e0037
-int string menu_folder_delete 0x7f0e0038
-int string menu_folder_view 0x7f0e0039
-int string menu_font_large 0x7f0e003a
-int string menu_font_normal 0x7f0e003b
-int string menu_font_size 0x7f0e003c
-int string menu_font_small 0x7f0e003d
-int string menu_font_super 0x7f0e003e
-int string menu_list_mode 0x7f0e003f
-int string menu_move 0x7f0e0040
-int string menu_move_parent_folder 0x7f0e0041
-int string menu_normal_mode 0x7f0e0042
-int string menu_remove_remind 0x7f0e0043
-int string menu_search 0x7f0e0044
-int string menu_select_all 0x7f0e0045
-int string menu_select_none 0x7f0e0046
-int string menu_select_title 0x7f0e0047
-int string menu_send_to_desktop 0x7f0e0048
-int string menu_setting 0x7f0e0049
-int string menu_share 0x7f0e004a
-int string menu_sync 0x7f0e004b
-int string menu_sync_cancel 0x7f0e004c
-int string menu_title_select_folder 0x7f0e004d
-int string note_alert_expired 0x7f0e004e
-int string note_link_email 0x7f0e004f
-int string note_link_other 0x7f0e0050
-int string note_link_tel 0x7f0e0051
-int string note_link_web 0x7f0e0052
-int string notealert_enter 0x7f0e0053
-int string notealert_ok 0x7f0e0054
-int string notelist_menu_new 0x7f0e0055
-int string notelist_string_info 0x7f0e0056
-int string preferences_account_summary 0x7f0e0057
-int string preferences_account_title 0x7f0e0058
-int string preferences_add_account 0x7f0e0059
-int string preferences_bg_random_appear_title 0x7f0e005a
-int string preferences_button_sync_cancel 0x7f0e005b
-int string preferences_button_sync_immediately 0x7f0e005c
-int string preferences_dialog_change_account_title 0x7f0e005d
-int string preferences_dialog_change_account_warn_msg 0x7f0e005e
-int string preferences_dialog_select_account_tips 0x7f0e005f
-int string preferences_dialog_select_account_title 0x7f0e0060
-int string preferences_last_sync_time 0x7f0e0061
-int string preferences_last_sync_time_format 0x7f0e0062
-int string preferences_menu_cancel 0x7f0e0063
-int string preferences_menu_change_account 0x7f0e0064
-int string preferences_menu_remove_account 0x7f0e0065
-int string preferences_title 0x7f0e0066
-int string preferences_toast_cannot_change_account 0x7f0e0067
-int string preferences_toast_success_set_accout 0x7f0e0068
-int string search 0x7f0e0069
-int string search_hint 0x7f0e006a
-int string search_label 0x7f0e006b
-int string search_setting_description 0x7f0e006c
-int string set_remind_time_message 0x7f0e006d
-int string status_bar_notification_info_overflow 0x7f0e006e
-int string success_sdcard_export 0x7f0e006f
-int string success_sync_account 0x7f0e0070
-int string sync_progress_init_list 0x7f0e0071
-int string sync_progress_login 0x7f0e0072
-int string sync_progress_syncing 0x7f0e0073
-int string ticker_cancel 0x7f0e0074
-int string ticker_fail 0x7f0e0075
-int string ticker_success 0x7f0e0076
-int string ticker_syncing 0x7f0e0077
-int string title_activity_fullscreen 0x7f0e0078
-int string title_activity_splash 0x7f0e0079
-int string widget_havenot_content 0x7f0e007a
-int string widget_under_visit_mode 0x7f0e007b
+int string SetType 0x7f0e0000
+int string abc_action_bar_home_description 0x7f0e0001
+int string abc_action_bar_home_description_format 0x7f0e0002
+int string abc_action_bar_home_subtitle_description_format 0x7f0e0003
+int string abc_action_bar_up_description 0x7f0e0004
+int string abc_action_menu_overflow_description 0x7f0e0005
+int string abc_action_mode_done 0x7f0e0006
+int string abc_activity_chooser_view_see_all 0x7f0e0007
+int string abc_activitychooserview_choose_application 0x7f0e0008
+int string abc_search_hint 0x7f0e0009
+int string abc_searchview_description_clear 0x7f0e000a
+int string abc_searchview_description_query 0x7f0e000b
+int string abc_searchview_description_search 0x7f0e000c
+int string abc_searchview_description_submit 0x7f0e000d
+int string abc_searchview_description_voice 0x7f0e000e
+int string abc_shareactionprovider_share_with 0x7f0e000f
+int string abc_shareactionprovider_share_with_application 0x7f0e0010
+int string abc_toolbar_collapse_description 0x7f0e0011
+int string alert_message_delete_folder 0x7f0e0012
+int string alert_message_delete_note 0x7f0e0013
+int string alert_message_delete_notes 0x7f0e0014
+int string alert_title_delete 0x7f0e0015
+int string app_name 0x7f0e0016
+int string app_widget2x2 0x7f0e0017
+int string app_widget4x4 0x7f0e0018
+int string button_delete 0x7f0e0019
+int string call_record_folder_name 0x7f0e001a
+int string can_not_revoke 0x7f0e001b
+int string datetime_dialog_cancel 0x7f0e001c
+int string datetime_dialog_ok 0x7f0e001d
+int string delete_remind_time_message 0x7f0e001e
+int string dummy_button 0x7f0e001f
+int string dummy_content 0x7f0e0020
+int string error_note_empty_for_clock 0x7f0e0021
+int string error_note_empty_for_send_to_desktop 0x7f0e0022
+int string error_note_not_exist 0x7f0e0023
+int string error_sdcard_export 0x7f0e0024
+int string error_sdcard_unmounted 0x7f0e0025
+int string error_sync_cancelled 0x7f0e0026
+int string error_sync_internal 0x7f0e0027
+int string error_sync_network 0x7f0e0028
+int string failed_sdcard_export 0x7f0e0029
+int string file_name_txt_format 0x7f0e002a
+int string file_path 0x7f0e002b
+int string folder_exist 0x7f0e002c
+int string format_date_ymd 0x7f0e002d
+int string format_datetime_mdhm 0x7f0e002e
+int string format_exported_file_location 0x7f0e002f
+int string format_folder_files_count 0x7f0e0030
+int string format_move_notes_to_folder 0x7f0e0031
+int string have_not_input_anything 0x7f0e0032
+int string hint_foler_name 0x7f0e0033
+int string info_note_enter_desktop 0x7f0e0034
+int string menu_alert 0x7f0e0035
+int string menu_change_font 0x7f0e0036
+int string menu_change_password 0x7f0e0037
+int string menu_create_folder 0x7f0e0038
+int string menu_delete 0x7f0e0039
+int string menu_delete_password 0x7f0e003a
+int string menu_deselect_all 0x7f0e003b
+int string menu_export_text 0x7f0e003c
+int string menu_folder_change_name 0x7f0e003d
+int string menu_folder_delete 0x7f0e003e
+int string menu_folder_view 0x7f0e003f
+int string menu_font_large 0x7f0e0040
+int string menu_font_normal 0x7f0e0041
+int string menu_font_size 0x7f0e0042
+int string menu_font_small 0x7f0e0043
+int string menu_font_super 0x7f0e0044
+int string menu_list_mode 0x7f0e0045
+int string menu_login 0x7f0e0046
+int string menu_move 0x7f0e0047
+int string menu_move_parent_folder 0x7f0e0048
+int string menu_normal_mode 0x7f0e0049
+int string menu_read_contain 0x7f0e004a
+int string menu_remove_remind 0x7f0e004b
+int string menu_revoke 0x7f0e004c
+int string menu_search 0x7f0e004d
+int string menu_select_all 0x7f0e004e
+int string menu_select_none 0x7f0e004f
+int string menu_select_title 0x7f0e0050
+int string menu_send_to_desktop 0x7f0e0051
+int string menu_setting 0x7f0e0052
+int string menu_share 0x7f0e0053
+int string menu_sort 0x7f0e0054
+int string menu_sync 0x7f0e0055
+int string menu_sync_cancel 0x7f0e0056
+int string menu_title_select_folder 0x7f0e0057
+int string note_alert_expired 0x7f0e0058
+int string note_link_email 0x7f0e0059
+int string note_link_other 0x7f0e005a
+int string note_link_tel 0x7f0e005b
+int string note_link_web 0x7f0e005c
+int string notealert_enter 0x7f0e005d
+int string notealert_ok 0x7f0e005e
+int string notelist_menu_new 0x7f0e005f
+int string notelist_string_info 0x7f0e0060
+int string preferences_account_summary 0x7f0e0061
+int string preferences_account_title 0x7f0e0062
+int string preferences_add_account 0x7f0e0063
+int string preferences_bg_random_appear_title 0x7f0e0064
+int string preferences_button_sync_cancel 0x7f0e0065
+int string preferences_button_sync_immediately 0x7f0e0066
+int string preferences_dialog_change_account_title 0x7f0e0067
+int string preferences_dialog_change_account_warn_msg 0x7f0e0068
+int string preferences_dialog_select_account_tips 0x7f0e0069
+int string preferences_dialog_select_account_title 0x7f0e006a
+int string preferences_last_sync_time 0x7f0e006b
+int string preferences_last_sync_time_format 0x7f0e006c
+int string preferences_menu_cancel 0x7f0e006d
+int string preferences_menu_change_account 0x7f0e006e
+int string preferences_menu_remove_account 0x7f0e006f
+int string preferences_title 0x7f0e0070
+int string preferences_toast_cannot_change_account 0x7f0e0071
+int string preferences_toast_success_set_accout 0x7f0e0072
+int string search 0x7f0e0073
+int string search_hint 0x7f0e0074
+int string search_label 0x7f0e0075
+int string search_setting_description 0x7f0e0076
+int string set_remind_time_message 0x7f0e0077
+int string status_bar_notification_info_overflow 0x7f0e0078
+int string success_sdcard_export 0x7f0e0079
+int string success_sync_account 0x7f0e007a
+int string sync_progress_init_list 0x7f0e007b
+int string sync_progress_login 0x7f0e007c
+int string sync_progress_syncing 0x7f0e007d
+int string ticker_cancel 0x7f0e007e
+int string ticker_fail 0x7f0e007f
+int string ticker_success 0x7f0e0080
+int string ticker_syncing 0x7f0e0081
+int string tips_of_revoke 0x7f0e0082
+int string title_activity_fullscreen 0x7f0e0083
+int string title_activity_splash 0x7f0e0084
+int string widget_havenot_content 0x7f0e0085
+int string widget_under_visit_mode 0x7f0e0086
int style AlertDialog_AppCompat 0x7f0f0000
int style AlertDialog_AppCompat_Light 0x7f0f0001
int style Animation_AppCompat_Dialog 0x7f0f0002
diff --git a/src/app/build/intermediates/source_set_path_map/debugAndroidTest/file-map.txt b/src/app/build/intermediates/source_set_path_map/debugAndroidTest/file-map.txt
index bd14f8c1..a1a1294e 100644
--- a/src/app/build/intermediates/source_set_path_map/debugAndroidTest/file-map.txt
+++ b/src/app/build/intermediates/source_set_path_map/debugAndroidTest/file-map.txt
@@ -1,4 +1,4 @@
-net.micode.notes.test.app-androidTest-0 C:\Users\huigenb\Desktop\Git\ghnb\src\app\build\generated\res\resValues\androidTest\debug
-net.micode.notes.test.app-mergeDebugAndroidTestResources-1 C:\Users\huigenb\Desktop\Git\ghnb\src\app\build\intermediates\incremental\debugAndroidTest\mergeDebugAndroidTestResources\merged.dir
-net.micode.notes.test.app-mergeDebugAndroidTestResources-2 C:\Users\huigenb\Desktop\Git\ghnb\src\app\build\intermediates\incremental\debugAndroidTest\mergeDebugAndroidTestResources\stripped.dir
-net.micode.notes.test.app-merged_res-3 C:\Users\huigenb\Desktop\Git\ghnb\src\app\build\intermediates\merged_res\debugAndroidTest
+net.micode.notes.test.app-androidTest-0 C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\generated\res\resValues\androidTest\debug
+net.micode.notes.test.app-mergeDebugAndroidTestResources-1 C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\incremental\debugAndroidTest\mergeDebugAndroidTestResources\merged.dir
+net.micode.notes.test.app-mergeDebugAndroidTestResources-2 C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\incremental\debugAndroidTest\mergeDebugAndroidTestResources\stripped.dir
+net.micode.notes.test.app-merged_res-3 C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debugAndroidTest
diff --git a/src/app/build/intermediates/stable_resource_ids_file/debug/stableIds.txt b/src/app/build/intermediates/stable_resource_ids_file/debug/stableIds.txt
index a9aad975..e3c1c03f 100644
--- a/src/app/build/intermediates/stable_resource_ids_file/debug/stableIds.txt
+++ b/src/app/build/intermediates/stable_resource_ids_file/debug/stableIds.txt
@@ -15,7 +15,6 @@ net.micode.notes:style/Widget.AppCompat.Toolbar = 0x7f0f0130
net.micode.notes:style/Widget.AppCompat.TextView.SpinnerItem = 0x7f0f012f
net.micode.notes:style/Widget.AppCompat.Spinner.DropDown.ActionBar = 0x7f0f012d
net.micode.notes:style/Widget.AppCompat.Spinner = 0x7f0f012b
-net.micode.notes:style/Widget.AppCompat.SearchView = 0x7f0f0129
net.micode.notes:style/Widget.AppCompat.RatingBar = 0x7f0f0128
net.micode.notes:style/Widget.AppCompat.ProgressBar = 0x7f0f0126
net.micode.notes:style/Widget.AppCompat.PopupWindow = 0x7f0f0125
@@ -52,11 +51,9 @@ net.micode.notes:style/Widget.AppCompat.ActionBar.TabView = 0x7f0f00f5
net.micode.notes:style/Widget.AppCompat.ActionBar.TabBar = 0x7f0f00f3
net.micode.notes:style/Widget.AppCompat.ActionBar.Solid = 0x7f0f00f2
net.micode.notes:style/Widget.AppCompat.ActionBar = 0x7f0f00f1
-net.micode.notes:style/ThemeOverlay.Code.FullscreenContainer = 0x7f0f00f0
net.micode.notes:style/ThemeOverlay.AppCompat.Light = 0x7f0f00ef
net.micode.notes:style/ThemeOverlay.AppCompat.Dark = 0x7f0f00ed
net.micode.notes:style/ThemeOverlay.AppCompat.ActionBar = 0x7f0f00ec
-net.micode.notes:style/Theme.Code = 0x7f0f00e9
net.micode.notes:style/Theme.AppCompat.Light.DialogWhenLarge = 0x7f0f00e6
net.micode.notes:style/Theme.AppCompat.Light.Dialog.MinWidth = 0x7f0f00e5
net.micode.notes:style/Theme.AppCompat.Dialog.MinWidth = 0x7f0f00df
@@ -96,7 +93,6 @@ net.micode.notes:style/TextAppearance.AppCompat.Display1 = 0x7f0f00a7
net.micode.notes:style/TextAppearance.AppCompat.Caption = 0x7f0f00a6
net.micode.notes:style/TextAppearance.AppCompat.Button = 0x7f0f00a5
net.micode.notes:style/TextAppearance.AppCompat.Body2 = 0x7f0f00a4
-net.micode.notes:style/TextAppearance.AppCompat.Body1 = 0x7f0f00a3
net.micode.notes:style/RtlOverlay.Widget.AppCompat.Toolbar.Button.Navigation = 0x7f0f00a1
net.micode.notes:style/RtlOverlay.Widget.AppCompat.SearchView.MagIcon = 0x7f0f00a0
net.micode.notes:style/RtlOverlay.Widget.AppCompat.Search.DropDown.Text = 0x7f0f009f
@@ -194,125 +190,134 @@ net.micode.notes:styleable/SearchView = 0x7f100012
net.micode.notes:style/Base.AlertDialog.AppCompat.Light = 0x7f0f0005
net.micode.notes:style/Base.AlertDialog.AppCompat = 0x7f0f0004
net.micode.notes:style/Animation.AppCompat.DropDownUp = 0x7f0f0003
-net.micode.notes:style/Animation.AppCompat.Dialog = 0x7f0f0002
net.micode.notes:style/AlertDialog.AppCompat.Light = 0x7f0f0001
net.micode.notes:style/Base.Widget.AppCompat.ActionBar.Solid = 0x7f0f0056
net.micode.notes:style/AlertDialog.AppCompat = 0x7f0f0000
-net.micode.notes:string/widget_under_visit_mode = 0x7f0e007b
-net.micode.notes:string/title_activity_fullscreen = 0x7f0e0078
-net.micode.notes:string/ticker_syncing = 0x7f0e0077
-net.micode.notes:string/ticker_fail = 0x7f0e0075
-net.micode.notes:string/ticker_cancel = 0x7f0e0074
-net.micode.notes:string/success_sync_account = 0x7f0e0070
-net.micode.notes:string/success_sdcard_export = 0x7f0e006f
-net.micode.notes:string/status_bar_notification_info_overflow = 0x7f0e006e
+net.micode.notes:string/widget_under_visit_mode = 0x7f0e0086
+net.micode.notes:string/title_activity_fullscreen = 0x7f0e0083
+net.micode.notes:string/ticker_syncing = 0x7f0e0081
+net.micode.notes:string/ticker_fail = 0x7f0e007f
+net.micode.notes:string/ticker_cancel = 0x7f0e007e
+net.micode.notes:string/success_sync_account = 0x7f0e007a
+net.micode.notes:string/success_sdcard_export = 0x7f0e0079
+net.micode.notes:string/status_bar_notification_info_overflow = 0x7f0e0078
net.micode.notes:style/Widget.AppCompat.Spinner.DropDown = 0x7f0f012c
-net.micode.notes:string/set_remind_time_message = 0x7f0e006d
-net.micode.notes:string/search_setting_description = 0x7f0e006c
-net.micode.notes:string/search_label = 0x7f0e006b
-net.micode.notes:string/search_hint = 0x7f0e006a
-net.micode.notes:string/preferences_menu_remove_account = 0x7f0e0065
-net.micode.notes:string/preferences_last_sync_time_format = 0x7f0e0062
-net.micode.notes:string/preferences_dialog_select_account_tips = 0x7f0e005f
-net.micode.notes:string/preferences_button_sync_immediately = 0x7f0e005c
-net.micode.notes:string/preferences_button_sync_cancel = 0x7f0e005b
-net.micode.notes:string/preferences_bg_random_appear_title = 0x7f0e005a
-net.micode.notes:string/preferences_add_account = 0x7f0e0059
+net.micode.notes:string/set_remind_time_message = 0x7f0e0077
+net.micode.notes:string/search_setting_description = 0x7f0e0076
+net.micode.notes:string/search_label = 0x7f0e0075
+net.micode.notes:string/search_hint = 0x7f0e0074
+net.micode.notes:string/preferences_menu_remove_account = 0x7f0e006f
+net.micode.notes:string/preferences_last_sync_time_format = 0x7f0e006c
+net.micode.notes:string/preferences_dialog_select_account_tips = 0x7f0e0069
+net.micode.notes:string/preferences_button_sync_immediately = 0x7f0e0066
+net.micode.notes:string/preferences_button_sync_cancel = 0x7f0e0065
+net.micode.notes:string/preferences_bg_random_appear_title = 0x7f0e0064
+net.micode.notes:string/preferences_add_account = 0x7f0e0063
net.micode.notes:style/Base.Widget.AppCompat.CompoundButton.CheckBox = 0x7f0f0067
-net.micode.notes:string/preferences_account_title = 0x7f0e0058
+net.micode.notes:string/preferences_account_title = 0x7f0e0062
net.micode.notes:style/Base.TextAppearance.AppCompat.Subhead = 0x7f0f0021
-net.micode.notes:string/preferences_account_summary = 0x7f0e0057
+net.micode.notes:string/preferences_account_summary = 0x7f0e0061
net.micode.notes:style/TextAppearancePrimaryItem = 0x7f0f00d7
-net.micode.notes:string/notelist_menu_new = 0x7f0e0055
-net.micode.notes:string/notealert_ok = 0x7f0e0054
-net.micode.notes:string/note_link_tel = 0x7f0e0051
+net.micode.notes:string/notelist_menu_new = 0x7f0e005f
+net.micode.notes:string/notealert_ok = 0x7f0e005e
+net.micode.notes:string/note_link_tel = 0x7f0e005b
net.micode.notes:style/Base.ThemeOverlay.AppCompat.Dark = 0x7f0f0044
-net.micode.notes:string/note_link_other = 0x7f0e0050
+net.micode.notes:string/note_link_other = 0x7f0e005a
net.micode.notes:style/Base.TextAppearance.AppCompat.Body1 = 0x7f0f000b
-net.micode.notes:string/menu_title_select_folder = 0x7f0e004d
-net.micode.notes:string/menu_sync_cancel = 0x7f0e004c
-net.micode.notes:string/menu_sync = 0x7f0e004b
-net.micode.notes:string/menu_share = 0x7f0e004a
-net.micode.notes:string/menu_send_to_desktop = 0x7f0e0048
-net.micode.notes:string/menu_select_none = 0x7f0e0046
-net.micode.notes:attr/drawableSize = 0x7f030054
-net.micode.notes:string/menu_remove_remind = 0x7f0e0043
-net.micode.notes:string/notealert_enter = 0x7f0e0053
-net.micode.notes:string/menu_move = 0x7f0e0040
-net.micode.notes:string/menu_font_size = 0x7f0e003c
-net.micode.notes:attr/actionModeFindDrawable = 0x7f030015
-net.micode.notes:id/search_close_btn = 0x7f080079
-net.micode.notes:string/menu_font_large = 0x7f0e003a
-net.micode.notes:drawable/edit_white = 0x7f07004b
-net.micode.notes:string/menu_deselect_all = 0x7f0e0035
-net.micode.notes:id/beginning = 0x7f080016
-net.micode.notes:string/menu_create_folder = 0x7f0e0033
+net.micode.notes:string/menu_title_select_folder = 0x7f0e0057
+net.micode.notes:string/menu_sync_cancel = 0x7f0e0056
+net.micode.notes:string/menu_sync = 0x7f0e0055
+net.micode.notes:string/menu_share = 0x7f0e0053
+net.micode.notes:string/menu_send_to_desktop = 0x7f0e0051
+net.micode.notes:string/menu_select_title = 0x7f0e0050
+net.micode.notes:string/menu_select_none = 0x7f0e004f
+net.micode.notes:string/menu_select_all = 0x7f0e004e
+net.micode.notes:string/menu_search = 0x7f0e004d
+net.micode.notes:string/menu_revoke = 0x7f0e004c
+net.micode.notes:string/menu_move_parent_folder = 0x7f0e0048
+net.micode.notes:string/notealert_enter = 0x7f0e005d
+net.micode.notes:string/menu_move = 0x7f0e0047
+net.micode.notes:string/menu_login = 0x7f0e0046
+net.micode.notes:string/menu_font_small = 0x7f0e0043
+net.micode.notes:string/menu_font_size = 0x7f0e0042
+net.micode.notes:string/menu_folder_view = 0x7f0e003f
+net.micode.notes:string/menu_folder_delete = 0x7f0e003e
+net.micode.notes:string/menu_folder_change_name = 0x7f0e003d
+net.micode.notes:string/menu_export_text = 0x7f0e003c
+net.micode.notes:string/menu_delete_password = 0x7f0e003a
+net.micode.notes:string/menu_delete = 0x7f0e0039
+net.micode.notes:string/menu_change_password = 0x7f0e0037
+net.micode.notes:string/menu_change_font = 0x7f0e0036
+net.micode.notes:string/info_note_enter_desktop = 0x7f0e0034
+net.micode.notes:string/have_not_input_anything = 0x7f0e0032
+net.micode.notes:string/format_move_notes_to_folder = 0x7f0e0031
net.micode.notes:style/TextAppearance.AppCompat.Small.Inverse = 0x7f0f00b9
-net.micode.notes:string/format_exported_file_location = 0x7f0e002d
-net.micode.notes:drawable/bg_color_btn_mask = 0x7f07003e
-net.micode.notes:string/folder_exist = 0x7f0e002a
-net.micode.notes:string/abc_action_bar_home_description = 0x7f0e0000
-net.micode.notes:string/file_path = 0x7f0e0029
-net.micode.notes:string/file_name_txt_format = 0x7f0e0028
+net.micode.notes:string/format_exported_file_location = 0x7f0e002f
+net.micode.notes:string/format_datetime_mdhm = 0x7f0e002e
+net.micode.notes:string/format_date_ymd = 0x7f0e002d
+net.micode.notes:string/file_name_txt_format = 0x7f0e002a
+net.micode.notes:string/failed_sdcard_export = 0x7f0e0029
+net.micode.notes:string/error_sync_network = 0x7f0e0028
net.micode.notes:style/Base.Widget.AppCompat.AutoCompleteTextView = 0x7f0f005f
-net.micode.notes:string/error_sdcard_unmounted = 0x7f0e0023
-net.micode.notes:string/error_sdcard_export = 0x7f0e0022
-net.micode.notes:string/datetime_dialog_ok = 0x7f0e001b
-net.micode.notes:string/call_record_folder_name = 0x7f0e0019
-net.micode.notes:drawable/list_red_up = 0x7f070062
-net.micode.notes:string/app_widget4x4 = 0x7f0e0017
-net.micode.notes:string/alert_title_delete = 0x7f0e0014
-net.micode.notes:string/abc_shareactionprovider_share_with_application = 0x7f0e000f
-net.micode.notes:string/abc_searchview_description_clear = 0x7f0e0009
+net.micode.notes:string/error_sdcard_unmounted = 0x7f0e0025
+net.micode.notes:string/error_sdcard_export = 0x7f0e0024
+net.micode.notes:string/datetime_dialog_ok = 0x7f0e001d
+net.micode.notes:string/call_record_folder_name = 0x7f0e001a
+net.micode.notes:drawable/list_red_up = 0x7f070063
+net.micode.notes:string/app_widget4x4 = 0x7f0e0018
+net.micode.notes:string/alert_title_delete = 0x7f0e0015
+net.micode.notes:string/abc_shareactionprovider_share_with_application = 0x7f0e0010
+net.micode.notes:string/abc_searchview_description_clear = 0x7f0e000a
net.micode.notes:anim/abc_slide_out_top = 0x7f010009
net.micode.notes:attr/listPreferredItemHeightSmall = 0x7f030073
-net.micode.notes:id/tv_alert_date = 0x7f080096
-net.micode.notes:string/abc_action_bar_home_subtitle_description_format = 0x7f0e0002
-net.micode.notes:string/abc_searchview_description_search = 0x7f0e000b
+net.micode.notes:id/tv_alert_date = 0x7f0800ad
+net.micode.notes:string/abc_action_bar_home_subtitle_description_format = 0x7f0e0003
+net.micode.notes:string/abc_searchview_description_search = 0x7f0e000c
net.micode.notes:style/Base.Widget.AppCompat.Button.Borderless.Colored = 0x7f0f0062
-net.micode.notes:string/abc_action_bar_home_description_format = 0x7f0e0001
-net.micode.notes:string/menu_export_text = 0x7f0e0036
+net.micode.notes:string/abc_action_bar_home_description_format = 0x7f0e0002
net.micode.notes:layout/abc_expanded_menu_layout = 0x7f0a000b
net.micode.notes:plurals/search_results_title = 0x7f0c0000
-net.micode.notes:layout/notification_template_big_media = 0x7f0a0027
-net.micode.notes:menu/sub_folder = 0x7f0b0006
+net.micode.notes:layout/notification_template_big_media = 0x7f0a002b
+net.micode.notes:menu/sub_folder = 0x7f0b0007
+net.micode.notes:style/Widget.AppCompat.SearchView = 0x7f0f0129
+net.micode.notes:menu/note_type = 0x7f0b0006
net.micode.notes:menu/note_list_options = 0x7f0b0005
net.micode.notes:menu/note_list_dropdown = 0x7f0b0004
net.micode.notes:menu/note_list = 0x7f0b0003
net.micode.notes:menu/note_edit = 0x7f0b0002
net.micode.notes:menu/call_record_folder = 0x7f0b0001
-net.micode.notes:layout/settings_header = 0x7f0a0030
+net.micode.notes:layout/settings_header = 0x7f0a0034
net.micode.notes:style/Widget.AppCompat.ButtonBar = 0x7f0f0101
-net.micode.notes:layout/select_dialog_item_material = 0x7f0a002d
-net.micode.notes:layout/notification_template_part_time = 0x7f0a002c
+net.micode.notes:layout/select_dialog_item_material = 0x7f0a0031
+net.micode.notes:layout/notification_template_part_time = 0x7f0a0030
net.micode.notes:attr/actionModeCopyDrawable = 0x7f030013
-net.micode.notes:layout/notification_media_cancel_action = 0x7f0a0026
-net.micode.notes:layout/notification_media_action = 0x7f0a0025
-net.micode.notes:string/preferences_title = 0x7f0e0066
+net.micode.notes:layout/notification_media_cancel_action = 0x7f0a002a
+net.micode.notes:layout/notification_media_action = 0x7f0a0029
+net.micode.notes:string/preferences_title = 0x7f0e0070
net.micode.notes:drawable/abc_textfield_default_mtrl_alpha = 0x7f070039
-net.micode.notes:layout/note_list_footer = 0x7f0a0024
+net.micode.notes:layout/note_list_footer = 0x7f0a0028
net.micode.notes:dimen/disabled_alpha_material_light = 0x7f060041
-net.micode.notes:layout/note_list = 0x7f0a0022
-net.micode.notes:id/src_over = 0x7f080089
-net.micode.notes:id/title = 0x7f080093
-net.micode.notes:layout/note_edit = 0x7f0a001f
-net.micode.notes:layout/folder_list_item = 0x7f0a001e
-net.micode.notes:string/note_link_web = 0x7f0e0052
-net.micode.notes:id/activity_chooser_view_content = 0x7f080012
-net.micode.notes:layout/dialog_edit_text = 0x7f0a001d
+net.micode.notes:layout/note_list = 0x7f0a0026
+net.micode.notes:id/src_over = 0x7f08009f
+net.micode.notes:id/title = 0x7f0800aa
+net.micode.notes:layout/note_edit = 0x7f0a0023
+net.micode.notes:layout/folder_list_item = 0x7f0a0022
+net.micode.notes:string/note_link_web = 0x7f0e005c
+net.micode.notes:id/activity_chooser_view_content = 0x7f080016
+net.micode.notes:layout/dialog_edit_text = 0x7f0a0021
net.micode.notes:style/Widget.AppCompat.Light.PopupMenu = 0x7f0f011b
-net.micode.notes:string/dummy_button = 0x7f0e001d
+net.micode.notes:string/dummy_button = 0x7f0e001f
net.micode.notes:layout/account_dialog_title = 0x7f0a0019
net.micode.notes:attr/colorPrimary = 0x7f030042
net.micode.notes:layout/abc_simple_dropdown_hint = 0x7f0a0018
-net.micode.notes:string/sync_progress_syncing = 0x7f0e0073
+net.micode.notes:string/sync_progress_syncing = 0x7f0e007d
net.micode.notes:layout/abc_search_dropdown_item_icons_2line = 0x7f0a0015
net.micode.notes:drawable/abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f07001b
-net.micode.notes:string/error_note_empty_for_clock = 0x7f0e001f
+net.micode.notes:string/error_note_empty_for_clock = 0x7f0e0021
net.micode.notes:layout/abc_screen_toolbar = 0x7f0a0014
net.micode.notes:attr/listPreferredItemHeightLarge = 0x7f030072
net.micode.notes:layout/abc_screen_simple = 0x7f0a0012
-net.micode.notes:layout/notification_template_big_media_narrow = 0x7f0a0028
+net.micode.notes:layout/notification_template_big_media_narrow = 0x7f0a002c
net.micode.notes:styleable/MenuGroup = 0x7f10000d
net.micode.notes:style/Widget.AppCompat.Button.ButtonBar.AlertDialog = 0x7f0f00ff
net.micode.notes:layout/abc_popup_menu_item_layout = 0x7f0a0010
@@ -321,10 +326,10 @@ net.micode.notes:layout/abc_list_menu_item_icon = 0x7f0a000d
net.micode.notes:style/TextAppearance.AppCompat.Display2 = 0x7f0f00a8
net.micode.notes:attr/panelMenuListTheme = 0x7f030082
net.micode.notes:layout/abc_list_menu_item_checkbox = 0x7f0a000c
-net.micode.notes:id/et_edit_text = 0x7f08002d
+net.micode.notes:id/et_edit_text = 0x7f080032
net.micode.notes:layout/abc_dialog_title_material = 0x7f0a000a
net.micode.notes:layout/abc_alert_dialog_material = 0x7f0a0009
-net.micode.notes:id/search_bar = 0x7f080077
+net.micode.notes:id/search_bar = 0x7f08008d
net.micode.notes:layout/abc_activity_chooser_view = 0x7f0a0007
net.micode.notes:attr/switchPadding = 0x7f0300a5
net.micode.notes:layout/abc_action_mode_close_item_material = 0x7f0a0006
@@ -334,240 +339,270 @@ net.micode.notes:style/Base.TextAppearance.AppCompat.Caption = 0x7f0f000e
net.micode.notes:layout/abc_action_menu_item_layout = 0x7f0a0003
net.micode.notes:integer/cancel_button_image_alpha = 0x7f090003
net.micode.notes:layout/abc_search_view = 0x7f0a0016
-net.micode.notes:integer/abc_config_activityShortDur = 0x7f090001
net.micode.notes:integer/abc_config_activityDefaultDur = 0x7f090000
-net.micode.notes:id/wrap_content = 0x7f0800a2
+net.micode.notes:integer/abc_config_activityShortDur = 0x7f090001
+net.micode.notes:id/wrap_content = 0x7f0800bb
net.micode.notes:attr/thumbTextPadding = 0x7f0300b3
-net.micode.notes:id/withText = 0x7f0800a1
-net.micode.notes:id/widget_bg_image = 0x7f08009f
-net.micode.notes:string/preferences_dialog_select_account_title = 0x7f0e0060
-net.micode.notes:id/text_num = 0x7f080091
+net.micode.notes:id/withText = 0x7f0800b9
+net.micode.notes:id/widget_bg_image = 0x7f0800b7
+net.micode.notes:id/thepassword = 0x7f0800a8
+net.micode.notes:string/preferences_dialog_select_account_title = 0x7f0e006a
+net.micode.notes:id/text_num = 0x7f0800a7
net.micode.notes:attr/fullscreenBackgroundColor = 0x7f03005d
net.micode.notes:drawable/abc_dialog_material_background_dark = 0x7f070012
-net.micode.notes:id/text2 = 0x7f08008f
+net.micode.notes:id/text2 = 0x7f0800a5
net.micode.notes:integer/status_bar_notification_info_maxnum = 0x7f090004
-net.micode.notes:id/text = 0x7f08008e
-net.micode.notes:id/sv_note_edit = 0x7f08008c
-net.micode.notes:id/submit_area = 0x7f08008b
+net.micode.notes:id/text = 0x7f0800a4
+net.micode.notes:id/sv_note_edit = 0x7f0800a2
+net.micode.notes:id/submit_area = 0x7f0800a1
net.micode.notes:dimen/notification_large_icon_height = 0x7f060042
-net.micode.notes:id/shortcut = 0x7f080082
+net.micode.notes:id/shortcut = 0x7f080098
net.micode.notes:drawable/abc_switch_track_mtrl_alpha = 0x7f070034
-net.micode.notes:id/select_dialog_listview = 0x7f080080
-net.micode.notes:style/TextAppearance.StatusBar.EventContent.Time = 0x7f0f00cf
-net.micode.notes:drawable/abc_btn_check_material = 0x7f070004
-net.micode.notes:string/menu_font_super = 0x7f0e003e
-net.micode.notes:id/search_plate = 0x7f08007d
+net.micode.notes:id/select_dialog_listview = 0x7f080096
+net.micode.notes:id/search_plate = 0x7f080093
net.micode.notes:attr/textAppearanceLargePopupMenu = 0x7f0300a9
-net.micode.notes:id/search_go_btn = 0x7f08007b
-net.micode.notes:id/search_edit_frame = 0x7f08007a
-net.micode.notes:id/search_badge = 0x7f080076
-net.micode.notes:id/dummy_button = 0x7f080029
-net.micode.notes:id/scrollView = 0x7f080075
-net.micode.notes:id/screen = 0x7f080074
-net.micode.notes:id/progress_horizontal = 0x7f080072
+net.micode.notes:id/search_go_btn = 0x7f080091
+net.micode.notes:id/search_edit_frame = 0x7f080090
+net.micode.notes:id/search_badge = 0x7f08008c
+net.micode.notes:id/dummy_button = 0x7f08002e
+net.micode.notes:id/scrollView = 0x7f08008b
+net.micode.notes:layout/activity_login = 0x7f0a001c
+net.micode.notes:id/screen = 0x7f08008a
+net.micode.notes:id/progress_horizontal = 0x7f080088
net.micode.notes:style/Base.Widget.AppCompat.Light.PopupMenu = 0x7f0f0074
-net.micode.notes:id/progress_circular = 0x7f080071
-net.micode.notes:string/abc_search_hint = 0x7f0e0008
-net.micode.notes:id/search_mag_icon = 0x7f08007c
+net.micode.notes:id/progress_circular = 0x7f080087
+net.micode.notes:string/abc_search_hint = 0x7f0e0009
+net.micode.notes:id/search_mag_icon = 0x7f080092
net.micode.notes:attr/closeItemLayout = 0x7f030039
-net.micode.notes:id/preference_sync_button = 0x7f080070
+net.micode.notes:id/preference_sync_button = 0x7f080086
+net.micode.notes:id/person = 0x7f080084
net.micode.notes:style/RtlOverlay.Widget.AppCompat.Search.DropDown = 0x7f0f009b
-net.micode.notes:string/abc_action_menu_overflow_description = 0x7f0e0004
-net.micode.notes:id/notes_list = 0x7f08006d
-net.micode.notes:id/note_title = 0x7f08006c
-net.micode.notes:id/note_item = 0x7f08006b
-net.micode.notes:string/format_date_ymd = 0x7f0e002b
-net.micode.notes:layout/notification_template_lines = 0x7f0a0029
-net.micode.notes:id/note_edit_list = 0x7f080069
-net.micode.notes:id/src_in = 0x7f080088
-net.micode.notes:id/normal = 0x7f080067
-net.micode.notes:id/never = 0x7f080065
-net.micode.notes:id/navigation_bar = 0x7f080064
+net.micode.notes:string/abc_action_menu_overflow_description = 0x7f0e0005
+net.micode.notes:id/notes_list = 0x7f08007f
+net.micode.notes:id/note_title = 0x7f08007e
+net.micode.notes:id/note_item = 0x7f08007d
+net.micode.notes:layout/notification_template_lines = 0x7f0a002d
+net.micode.notes:id/note_edit_list = 0x7f08007b
+net.micode.notes:id/src_in = 0x7f08009e
+net.micode.notes:drawable/daybackground = 0x7f070041
+net.micode.notes:id/normal = 0x7f080079
+net.micode.notes:id/new_password = 0x7f080077
+net.micode.notes:id/never = 0x7f080076
+net.micode.notes:layout/activity_set_loginpassword = 0x7f0a001d
+net.micode.notes:id/navigation_bar = 0x7f080075
net.micode.notes:attr/windowActionBar = 0x7f0300c1
-net.micode.notes:id/multiply = 0x7f080063
-net.micode.notes:layout/widget_4x = 0x7f0a0033
-net.micode.notes:string/menu_setting = 0x7f0e0049
-net.micode.notes:id/move = 0x7f080062
+net.micode.notes:id/multiply = 0x7f080074
+net.micode.notes:layout/widget_4x = 0x7f0a0037
+net.micode.notes:string/menu_setting = 0x7f0e0052
+net.micode.notes:id/move = 0x7f080073
net.micode.notes:style/Base.Widget.AppCompat.Light.PopupMenu.Overflow = 0x7f0f0075
-net.micode.notes:id/middle = 0x7f080060
+net.micode.notes:id/middle = 0x7f080071
net.micode.notes:drawable/abc_ic_go_search_api_mtrl_alpha = 0x7f070018
-net.micode.notes:drawable/icon_app_new = 0x7f070053
-net.micode.notes:id/list_item = 0x7f08004d
-net.micode.notes:id/menu_sync = 0x7f08005f
-net.micode.notes:id/menu_share = 0x7f08005e
-net.micode.notes:id/menu_send_to_desktop = 0x7f08005c
-net.micode.notes:id/menu_search = 0x7f08005b
+net.micode.notes:drawable/icon_app_new = 0x7f070054
+net.micode.notes:id/list_item = 0x7f080054
+net.micode.notes:id/menu_sync = 0x7f080070
+net.micode.notes:id/menu_sort = 0x7f08006f
+net.micode.notes:id/menu_share = 0x7f08006e
+net.micode.notes:id/menu_send_to_desktop = 0x7f08006c
+net.micode.notes:id/menu_search = 0x7f08006b
+net.micode.notes:style/Base.TextAppearance.AppCompat.Menu = 0x7f0f001b
+net.micode.notes:string/title_activity_splash = 0x7f0e0084
+net.micode.notes:drawable/a = 0x7f070000
+net.micode.notes:id/menu_revoke = 0x7f08006a
net.micode.notes:style/Base.TextAppearance.AppCompat.Large.Inverse = 0x7f0f0016
-net.micode.notes:drawable/dropdown_icon = 0x7f070042
+net.micode.notes:drawable/dropdown_icon = 0x7f070043
net.micode.notes:layout/abc_screen_content_include = 0x7f0a0011
-net.micode.notes:id/menu_new_note = 0x7f08005a
-net.micode.notes:id/menu_list_mode = 0x7f080058
-net.micode.notes:id/menu_font_size = 0x7f080057
-net.micode.notes:id/menu_export_text = 0x7f080056
+net.micode.notes:id/menu_new_note = 0x7f080068
+net.micode.notes:id/menu_login = 0x7f080066
+net.micode.notes:id/menu_list_mode = 0x7f080065
+net.micode.notes:id/menu_font_size = 0x7f080064
+net.micode.notes:id/menu_export_text = 0x7f080063
+net.micode.notes:style/ThemeOverlay.Code.FullscreenContainer = 0x7f0f00f0
+net.micode.notes:id/menu_change_password = 0x7f08005f
+net.micode.notes:id/menu_change_font = 0x7f08005e
net.micode.notes:attr/listPreferredItemHeight = 0x7f030071
net.micode.notes:color/highlighted_text_material_light = 0x7f050021
-net.micode.notes:id/menu_alert = 0x7f080053
+net.micode.notes:id/menu_alert = 0x7f08005d
net.micode.notes:style/Base.Widget.AppCompat.ListView.Menu = 0x7f0f0079
net.micode.notes:color/secondary_text_disabled_material_light = 0x7f05003e
-net.micode.notes:id/note_bg_color_selector = 0x7f080068
+net.micode.notes:id/note_bg_color_selector = 0x7f08007a
net.micode.notes:attr/windowFixedWidthMinor = 0x7f0300c7
-net.micode.notes:id/media_actions = 0x7f080052
-net.micode.notes:id/ll_font_super = 0x7f080051
+net.micode.notes:id/media_actions = 0x7f08005a
+net.micode.notes:id/ll_font_super = 0x7f080058
net.micode.notes:attr/listChoiceBackgroundIndicator = 0x7f03006c
-net.micode.notes:id/ll_font_normal = 0x7f08004f
-net.micode.notes:id/ll_font_small = 0x7f080050
-net.micode.notes:drawable/font_large = 0x7f07004d
-net.micode.notes:id/search_button = 0x7f080078
-net.micode.notes:id/line1 = 0x7f08004a
-net.micode.notes:id/iv_small_select = 0x7f080048
-net.micode.notes:id/iv_medium_select = 0x7f080047
-net.micode.notes:id/iv_large_select = 0x7f080046
+net.micode.notes:id/ll_font_normal = 0x7f080056
+net.micode.notes:id/ll_font_small = 0x7f080057
+net.micode.notes:drawable/font_large = 0x7f07004e
+net.micode.notes:id/search_button = 0x7f08008e
+net.micode.notes:id/line1 = 0x7f080051
+net.micode.notes:id/lg_password = 0x7f080050
+net.micode.notes:id/iv_small_select = 0x7f08004e
+net.micode.notes:id/iv_medium_select = 0x7f08004d
+net.micode.notes:id/iv_large_select = 0x7f08004c
net.micode.notes:dimen/abc_text_size_display_3_material = 0x7f060031
-net.micode.notes:id/iv_bg_yellow_select = 0x7f080045
+net.micode.notes:id/iv_bg_yellow_select = 0x7f08004b
net.micode.notes:styleable/FullscreenAttrs = 0x7f100009
-net.micode.notes:id/iv_bg_yellow = 0x7f080044
-net.micode.notes:id/iv_bg_red_select = 0x7f080041
-net.micode.notes:id/iv_bg_red = 0x7f080040
-net.micode.notes:id/iv_bg_green_select = 0x7f08003f
+net.micode.notes:id/iv_bg_yellow = 0x7f08004a
+net.micode.notes:id/iv_bg_red_select = 0x7f080047
+net.micode.notes:id/iv_bg_red = 0x7f080046
+net.micode.notes:id/iv_bg_green_select = 0x7f080045
net.micode.notes:style/ThemeOverlay.AppCompat = 0x7f0f00eb
-net.micode.notes:string/app_widget2x2 = 0x7f0e0016
+net.micode.notes:string/app_widget2x2 = 0x7f0e0017
net.micode.notes:color/material_deep_teal_500 = 0x7f05002e
-net.micode.notes:id/image = 0x7f080039
-net.micode.notes:id/ifRoom = 0x7f080038
+net.micode.notes:id/image = 0x7f08003f
+net.micode.notes:id/ifRoom = 0x7f08003e
net.micode.notes:styleable/ActionMenuView = 0x7f100003
-net.micode.notes:string/menu_list_mode = 0x7f0e003f
-net.micode.notes:id/hour = 0x7f080036
+net.micode.notes:string/menu_list_mode = 0x7f0e0045
+net.micode.notes:id/hour = 0x7f08003c
net.micode.notes:attr/colorControlHighlight = 0x7f030040
-net.micode.notes:id/homeAsUp = 0x7f080035
+net.micode.notes:id/homeAsUp = 0x7f08003b
net.micode.notes:style/Base.Widget.AppCompat.Button.ButtonBar.AlertDialog = 0x7f0f0063
net.micode.notes:attr/autoCompleteTextViewStyle = 0x7f030026
-net.micode.notes:id/fullscreen_content = 0x7f080032
-net.micode.notes:id/font_size_selector = 0x7f080031
-net.micode.notes:id/time = 0x7f080092
-net.micode.notes:id/end_padder = 0x7f08002c
-net.micode.notes:string/preferences_last_sync_time = 0x7f0e0061
-net.micode.notes:id/end = 0x7f08002b
-net.micode.notes:id/dialog = 0x7f080026
+net.micode.notes:id/fullscreen_content = 0x7f080038
+net.micode.notes:id/font_size_selector = 0x7f080037
+net.micode.notes:id/time = 0x7f0800a9
+net.micode.notes:id/end_padder = 0x7f080031
+net.micode.notes:string/preferences_last_sync_time = 0x7f0e006b
+net.micode.notes:id/menu_delete_password = 0x7f080061
+net.micode.notes:id/end = 0x7f080030
+net.micode.notes:id/dialog = 0x7f08002b
net.micode.notes:styleable/AlertDialog = 0x7f100006
-net.micode.notes:id/delete = 0x7f080025
-net.micode.notes:id/decor_content_parent = 0x7f080023
+net.micode.notes:id/delete = 0x7f08002a
+net.micode.notes:id/decor_content_parent = 0x7f080028
net.micode.notes:attr/searchIcon = 0x7f030091
-net.micode.notes:id/date = 0x7f080022
-net.micode.notes:id/custom = 0x7f080020
+net.micode.notes:id/date = 0x7f080027
+net.micode.notes:id/custom = 0x7f080025
net.micode.notes:style/TextAppearance.AppCompat.Inverse = 0x7f0f00ac
-net.micode.notes:id/chronometer = 0x7f08001d
+net.micode.notes:id/chronometer = 0x7f080022
net.micode.notes:style/Widget.AppCompat.Light.ActionButton.CloseMode = 0x7f0f0113
-net.micode.notes:id/cancel_action = 0x7f08001a
-net.micode.notes:id/btn_set_bg_color = 0x7f080018
-net.micode.notes:layout/activity_splash = 0x7f0a001a
+net.micode.notes:id/cancel_action = 0x7f08001f
+net.micode.notes:id/btn_set_bg_color = 0x7f08001d
+net.micode.notes:string/menu_create_folder = 0x7f0e0038
+net.micode.notes:id/beginning = 0x7f08001a
+net.micode.notes:layout/activity_splash = 0x7f0a001e
net.micode.notes:style/TextAppearance.AppCompat.Subhead = 0x7f0f00ba
-net.micode.notes:drawable/new_note_normal = 0x7f07006e
-net.micode.notes:id/amPm = 0x7f080015
+net.micode.notes:drawable/new_note_normal = 0x7f07006f
+net.micode.notes:id/amPm = 0x7f080019
net.micode.notes:attr/spinnerStyle = 0x7f03009c
-net.micode.notes:id/action_mode_close_button = 0x7f080010
-net.micode.notes:id/action_menu_presenter = 0x7f08000d
+net.micode.notes:id/action_mode_close_button = 0x7f080014
+net.micode.notes:id/action_menu_presenter = 0x7f080011
+net.micode.notes:id/login = 0x7f080059
net.micode.notes:color/abc_primary_text_disable_only_material_dark = 0x7f050003
-net.micode.notes:id/iv_super_select = 0x7f080049
-net.micode.notes:id/action_context_bar = 0x7f08000a
+net.micode.notes:id/iv_super_select = 0x7f08004f
+net.micode.notes:id/action_context_bar = 0x7f08000e
net.micode.notes:style/NoteActionBarStyle = 0x7f0f008a
-net.micode.notes:id/action_bar_title = 0x7f080009
-net.micode.notes:id/action_bar_container = 0x7f080005
-net.micode.notes:id/action_bar_activity_content = 0x7f080004
+net.micode.notes:id/action_bar_title = 0x7f08000d
+net.micode.notes:id/action_bar_container = 0x7f080009
+net.micode.notes:style/Animation.AppCompat.Dialog = 0x7f0f0002
+net.micode.notes:id/acknowledge = 0x7f080005
+net.micode.notes:id/password_ack = 0x7f080083
+net.micode.notes:id/action_bar_activity_content = 0x7f080008
net.micode.notes:xml/preferences = 0x7f110000
-net.micode.notes:id/action_bar = 0x7f080003
-net.micode.notes:id/tv_title = 0x7f08009b
+net.micode.notes:id/action_bar = 0x7f080007
+net.micode.notes:id/tv_title = 0x7f0800b2
net.micode.notes:style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar = 0x7f0f011e
-net.micode.notes:id/action0 = 0x7f080002
-net.micode.notes:drawable/edit_green = 0x7f070044
-net.micode.notes:id/account_dialog_subtitle = 0x7f080000
-net.micode.notes:drawable/widget_4x_green = 0x7f07007e
-net.micode.notes:drawable/widget_4x_white = 0x7f070080
-net.micode.notes:string/menu_folder_change_name = 0x7f0e0037
+net.micode.notes:id/action0 = 0x7f080006
+net.micode.notes:style/TextAppearance.AppCompat.Body1 = 0x7f0f00a3
+net.micode.notes:id/ack_password = 0x7f080004
+net.micode.notes:drawable/edit_green = 0x7f070045
+net.micode.notes:id/account_dialog_subtitle = 0x7f080002
+net.micode.notes:id/Dt_Acknowledged = 0x7f080001
+net.micode.notes:drawable/widget_4x_green = 0x7f070080
+net.micode.notes:drawable/widget_4x_white = 0x7f070082
net.micode.notes:style/Theme.AppCompat.Dialog.Alert = 0x7f0f00de
-net.micode.notes:drawable/widget_4x_red = 0x7f07007f
+net.micode.notes:drawable/widget_4x_red = 0x7f070081
net.micode.notes:style/Base.V7.Theme.AppCompat = 0x7f0f004f
-net.micode.notes:drawable/widget_4x_blue = 0x7f07007d
+net.micode.notes:drawable/widget_4x_blue = 0x7f07007f
net.micode.notes:style/Base.V12.Widget.AppCompat.EditText = 0x7f0f004a
-net.micode.notes:drawable/widget_2x_red = 0x7f07007a
-net.micode.notes:drawable/widget_2x_blue = 0x7f070078
+net.micode.notes:drawable/widget_2x_red = 0x7f07007c
+net.micode.notes:drawable/widget_2x_blue = 0x7f07007a
net.micode.notes:style/Base.Widget.AppCompat.ActionBar.TabView = 0x7f0f0059
-net.micode.notes:drawable/splash = 0x7f070075
-net.micode.notes:drawable/search_result = 0x7f070073
+net.micode.notes:drawable/splash = 0x7f070077
+net.micode.notes:drawable/search_result = 0x7f070075
net.micode.notes:style/Widget.AppCompat.CompoundButton.Switch = 0x7f0f0105
-net.micode.notes:drawable/new_note_pressed = 0x7f07006f
-net.micode.notes:drawable/selected = 0x7f070074
-net.micode.notes:drawable/new_note = 0x7f07006d
-net.micode.notes:drawable/menu_move = 0x7f07006c
-net.micode.notes:drawable/menu_delete = 0x7f07006b
-net.micode.notes:string/delete_remind_time_message = 0x7f0e001c
-net.micode.notes:drawable/list_white_middle = 0x7f070064
-net.micode.notes:string/abc_searchview_description_voice = 0x7f0e000d
+net.micode.notes:drawable/new_note_pressed = 0x7f070070
+net.micode.notes:drawable/selected = 0x7f070076
+net.micode.notes:drawable/new_note = 0x7f07006e
+net.micode.notes:drawable/menu_move = 0x7f07006d
+net.micode.notes:drawable/menu_delete = 0x7f07006c
+net.micode.notes:style/Theme.Code = 0x7f0f00e9
+net.micode.notes:id/menu_NightMood = 0x7f08005c
+net.micode.notes:string/delete_remind_time_message = 0x7f0e001e
+net.micode.notes:drawable/list_white_middle = 0x7f070065
+net.micode.notes:string/abc_searchview_description_voice = 0x7f0e000e
net.micode.notes:style/Widget.AppCompat.Light.ActionButton = 0x7f0f0112
net.micode.notes:color/switch_thumb_material_light = 0x7f050042
net.micode.notes:drawable/clock = 0x7f070040
-net.micode.notes:drawable/list_white_down = 0x7f070063
-net.micode.notes:drawable/list_red_middle = 0x7f070060
+net.micode.notes:drawable/list_white_down = 0x7f070064
+net.micode.notes:drawable/list_red_middle = 0x7f070061
net.micode.notes:style/TextAppearance.AppCompat.Widget.ActionBar.Menu = 0x7f0f00be
net.micode.notes:attr/actionBarTabBarStyle = 0x7f030006
-net.micode.notes:drawable/list_green_up = 0x7f07005e
+net.micode.notes:drawable/list_green_up = 0x7f07005f
+net.micode.notes:layout/activity_delete_password = 0x7f0a001b
net.micode.notes:attr/title = 0x7f0300b4
-net.micode.notes:drawable/list_yellow_down = 0x7f070067
-net.micode.notes:drawable/list_green_single = 0x7f07005d
+net.micode.notes:drawable/list_yellow_down = 0x7f070068
+net.micode.notes:drawable/list_green_single = 0x7f07005e
net.micode.notes:attr/queryHint = 0x7f03008d
-net.micode.notes:drawable/list_green_down = 0x7f07005b
-net.micode.notes:drawable/list_blue_single = 0x7f070057
+net.micode.notes:drawable/list_green_down = 0x7f07005c
+net.micode.notes:drawable/list_blue_single = 0x7f070058
net.micode.notes:style/Widget.AppCompat.PopupMenu.Overflow = 0x7f0f0124
-net.micode.notes:id/split_action_bar = 0x7f080086
+net.micode.notes:id/split_action_bar = 0x7f08009c
net.micode.notes:dimen/abc_floating_window_z = 0x7f060025
-net.micode.notes:id/showHome = 0x7f080084
-net.micode.notes:drawable/list_blue_middle = 0x7f070056
+net.micode.notes:id/showHome = 0x7f08009a
+net.micode.notes:id/btn_SetType = 0x7f08001b
+net.micode.notes:drawable/list_blue_middle = 0x7f070057
net.micode.notes:attr/windowMinWidthMajor = 0x7f0300c8
-net.micode.notes:id/none = 0x7f080066
+net.micode.notes:id/none = 0x7f080078
net.micode.notes:drawable/abc_spinner_textfield_background_material = 0x7f070032
net.micode.notes:attr/displayOptions = 0x7f03004f
-net.micode.notes:drawable/list_background = 0x7f070054
-net.micode.notes:drawable/icon_app = 0x7f070052
-net.micode.notes:drawable/font_super = 0x7f070051
+net.micode.notes:drawable/list_background = 0x7f070055
+net.micode.notes:drawable/icon_app = 0x7f070053
+net.micode.notes:drawable/font_super = 0x7f070052
net.micode.notes:style/Platform.V14.AppCompat.Light = 0x7f0f0093
-net.micode.notes:drawable/font_small = 0x7f070050
-net.micode.notes:id/iv_alert_icon = 0x7f08003b
+net.micode.notes:drawable/font_small = 0x7f070051
+net.micode.notes:id/iv_alert_icon = 0x7f080041
net.micode.notes:style/Base.Theme.AppCompat.Dialog.MinWidth = 0x7f0f0039
-net.micode.notes:drawable/font_size_selector_bg = 0x7f07004f
+net.micode.notes:drawable/font_size_selector_bg = 0x7f070050
net.micode.notes:style/Base.V7.Widget.AppCompat.EditText = 0x7f0f0054
-net.micode.notes:drawable/font_normal = 0x7f07004e
+net.micode.notes:drawable/font_normal = 0x7f07004f
net.micode.notes:style/Base.TextAppearance.AppCompat.Display2 = 0x7f0f0010
-net.micode.notes:drawable/edit_yellow = 0x7f07004c
+net.micode.notes:drawable/edit_yellow = 0x7f07004d
net.micode.notes:menu/call_note_edit = 0x7f0b0000
-net.micode.notes:layout/datetime_picker = 0x7f0a001c
+net.micode.notes:string/menu_deselect_all = 0x7f0e003b
+net.micode.notes:drawable/edit_white = 0x7f07004c
+net.micode.notes:layout/datetime_picker = 0x7f0a0020
net.micode.notes:bool/abc_action_bar_embed_tabs_pre_jb = 0x7f040001
-net.micode.notes:drawable/widget_2x_white = 0x7f07007b
+net.micode.notes:drawable/widget_2x_white = 0x7f07007d
net.micode.notes:color/user_query_highlight = 0x7f050045
net.micode.notes:attr/colorAccent = 0x7f03003d
-net.micode.notes:drawable/edit_title_white = 0x7f070049
+net.micode.notes:drawable/edit_title_white = 0x7f07004a
net.micode.notes:attr/listLayout = 0x7f03006f
-net.micode.notes:drawable/edit_title_red = 0x7f070048
+net.micode.notes:drawable/edit_title_red = 0x7f070049
net.micode.notes:style/TextAppearance.Widget.AppCompat.ExpandedMenu.Item = 0x7f0f00d1
-net.micode.notes:drawable/edit_title_green = 0x7f070047
-net.micode.notes:string/dummy_content = 0x7f0e001e
-net.micode.notes:drawable/edit_title_blue = 0x7f070046
-net.micode.notes:drawable/edit_blue = 0x7f070043
-net.micode.notes:string/menu_move_parent_folder = 0x7f0e0041
-net.micode.notes:drawable/delete = 0x7f070041
-net.micode.notes:drawable/notification = 0x7f070071
+net.micode.notes:drawable/edit_title_green = 0x7f070048
+net.micode.notes:string/dummy_content = 0x7f0e0020
+net.micode.notes:drawable/edit_title_blue = 0x7f070047
+net.micode.notes:drawable/edit_blue = 0x7f070044
+net.micode.notes:id/old_password = 0x7f080080
+net.micode.notes:drawable/delete = 0x7f070042
+net.micode.notes:drawable/notification = 0x7f070073
net.micode.notes:drawable/call_record = 0x7f07003f
-net.micode.notes:id/menu_new_folder = 0x7f080059
-net.micode.notes:id/collapseActionView = 0x7f08001e
+net.micode.notes:id/password = 0x7f080082
+net.micode.notes:string/folder_exist = 0x7f0e002c
+net.micode.notes:drawable/bg_color_btn_mask = 0x7f07003e
+net.micode.notes:id/menu_new_folder = 0x7f080067
+net.micode.notes:id/collapseActionView = 0x7f080023
net.micode.notes:drawable/bg_btn_set_color = 0x7f07003d
-net.micode.notes:string/format_datetime_mdhm = 0x7f0e002c
-net.micode.notes:id/menu_delete_remind = 0x7f080055
+net.micode.notes:id/menu_delete_remind = 0x7f080062
net.micode.notes:drawable/abc_textfield_search_material = 0x7f07003c
-net.micode.notes:drawable/title_bar_bg = 0x7f070077
+net.micode.notes:drawable/title_bar_bg = 0x7f070079
net.micode.notes:drawable/abc_textfield_search_activated_mtrl_alpha = 0x7f07003a
+net.micode.notes:id/work = 0x7f0800ba
net.micode.notes:style/Theme.AppCompat.NoActionBar = 0x7f0f00e8
net.micode.notes:drawable/abc_textfield_activated_mtrl_alpha = 0x7f070038
net.micode.notes:attr/initialActivityCount = 0x7f030068
-net.micode.notes:layout/select_dialog_multichoice_material = 0x7f0a002e
-net.micode.notes:id/iv_bg_white_select = 0x7f080043
+net.micode.notes:layout/select_dialog_multichoice_material = 0x7f0a0032
+net.micode.notes:id/iv_bg_white_select = 0x7f080049
net.micode.notes:style/Base.Animation.AppCompat.Dialog = 0x7f0f0006
net.micode.notes:drawable/abc_tab_indicator_mtrl_alpha = 0x7f070036
net.micode.notes:drawable/abc_tab_indicator_material = 0x7f070035
@@ -579,27 +614,30 @@ net.micode.notes:drawable/abc_spinner_mtrl_am_alpha = 0x7f070031
net.micode.notes:attr/actionBarSize = 0x7f030003
net.micode.notes:attr/iconifiedByDefault = 0x7f030066
net.micode.notes:drawable/abc_ratingbar_full_material = 0x7f070030
-net.micode.notes:id/disableHome = 0x7f080027
+net.micode.notes:id/disableHome = 0x7f08002c
net.micode.notes:drawable/abc_popup_background_mtrl_mult = 0x7f07002f
+net.micode.notes:attr/titleTextAppearance = 0x7f0300ba
+net.micode.notes:dimen/abc_switch_padding = 0x7f06002a
+net.micode.notes:id/tv_type = 0x7f0800b4
net.micode.notes:drawable/abc_list_selector_holo_light = 0x7f07002d
net.micode.notes:drawable/abc_list_selector_holo_dark = 0x7f07002c
-net.micode.notes:string/error_note_not_exist = 0x7f0e0021
+net.micode.notes:string/error_note_not_exist = 0x7f0e0023
net.micode.notes:dimen/abc_button_padding_vertical_material = 0x7f060013
net.micode.notes:attr/alertDialogTheme = 0x7f030025
net.micode.notes:drawable/abc_list_selector_disabled_holo_dark = 0x7f07002a
-net.micode.notes:string/preferences_dialog_change_account_title = 0x7f0e005d
-net.micode.notes:string/format_folder_files_count = 0x7f0e002e
+net.micode.notes:string/preferences_dialog_change_account_title = 0x7f0e0067
+net.micode.notes:string/format_folder_files_count = 0x7f0e0030
net.micode.notes:drawable/abc_list_selector_background_transition_holo_light = 0x7f070029
net.micode.notes:drawable/abc_item_background_holo_light = 0x7f070022
net.micode.notes:attr/navigationMode = 0x7f03007d
net.micode.notes:drawable/abc_item_background_holo_dark = 0x7f070021
net.micode.notes:color/primary_text_default_material_dark = 0x7f050034
net.micode.notes:drawable/abc_ic_menu_paste_mtrl_am_alpha = 0x7f07001c
-net.micode.notes:string/preferences_toast_success_set_accout = 0x7f0e0068
-net.micode.notes:layout/note_edit_list_item = 0x7f0a0020
-net.micode.notes:drawable/widget_2x_yellow = 0x7f07007c
+net.micode.notes:string/preferences_toast_success_set_accout = 0x7f0e0072
+net.micode.notes:layout/note_edit_list_item = 0x7f0a0024
+net.micode.notes:drawable/widget_2x_yellow = 0x7f07007e
net.micode.notes:style/Base.Widget.AppCompat.RatingBar = 0x7f0f007f
-net.micode.notes:string/sync_progress_init_list = 0x7f0e0071
+net.micode.notes:string/sync_progress_init_list = 0x7f0e007b
net.micode.notes:drawable/abc_ic_commit_search_api_mtrl_alpha = 0x7f070017
net.micode.notes:style/Base.V12.Widget.AppCompat.AutoCompleteTextView = 0x7f0f0049
net.micode.notes:attr/itemPadding = 0x7f03006a
@@ -616,10 +654,8 @@ net.micode.notes:drawable/abc_cab_background_top_material = 0x7f070010
net.micode.notes:attr/textAppearanceListItemSmall = 0x7f0300ab
net.micode.notes:color/bright_foreground_disabled_material_light = 0x7f050015
net.micode.notes:drawable/abc_cab_background_internal_bg = 0x7f07000f
-net.micode.notes:id/tv_modified_date = 0x7f080098
-net.micode.notes:string/hint_foler_name = 0x7f0e0030
net.micode.notes:style/Base.Widget.AppCompat.PopupMenu.Overflow = 0x7f0f007b
-net.micode.notes:id/parentPanel = 0x7f08006e
+net.micode.notes:id/parentPanel = 0x7f080081
net.micode.notes:bool/abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f040006
net.micode.notes:drawable/abc_btn_rating_star_off_mtrl_alpha = 0x7f07000b
net.micode.notes:layout/abc_list_menu_item_layout = 0x7f0a000e
@@ -628,7 +664,7 @@ net.micode.notes:drawable/abc_btn_radio_to_on_mtrl_015 = 0x7f07000a
net.micode.notes:drawable/abc_ic_menu_share_mtrl_alpha = 0x7f07001e
net.micode.notes:style/Base.TextAppearance.AppCompat.Medium = 0x7f0f0019
net.micode.notes:drawable/abc_btn_radio_material = 0x7f070008
-net.micode.notes:drawable/widget_4x_yellow = 0x7f070081
+net.micode.notes:drawable/widget_4x_yellow = 0x7f070083
net.micode.notes:attr/backgroundSplit = 0x7f030028
net.micode.notes:bool/abc_config_allowActionMenuItemTextWithIcon = 0x7f040004
net.micode.notes:drawable/abc_btn_check_to_on_mtrl_000 = 0x7f070005
@@ -639,38 +675,32 @@ net.micode.notes:drawable/abc_btn_borderless_material = 0x7f070003
net.micode.notes:attr/commitIcon = 0x7f030045
net.micode.notes:style/Base.Theme.AppCompat.Dialog.FixedSize = 0x7f0f0038
net.micode.notes:color/secondary_text_dark = 0x7f05003a
-net.micode.notes:attr/backgroundStacked = 0x7f030029
net.micode.notes:drawable/abc = 0x7f070001
-net.micode.notes:style/Base.TextAppearance.AppCompat.Menu = 0x7f0f001b
-net.micode.notes:string/title_activity_splash = 0x7f0e0079
-net.micode.notes:drawable/a = 0x7f070000
+net.micode.notes:attr/backgroundStacked = 0x7f030029
net.micode.notes:dimen/abc_text_size_title_material_toolbar = 0x7f06003b
net.micode.notes:dimen/notification_subtext_size = 0x7f060044
-net.micode.notes:id/tv_folder_name = 0x7f080097
-net.micode.notes:id/action_divider = 0x7f08000b
+net.micode.notes:id/tv_folder_name = 0x7f0800ae
+net.micode.notes:id/action_divider = 0x7f08000f
net.micode.notes:attr/textAppearanceListItem = 0x7f0300aa
net.micode.notes:styleable/Toolbar = 0x7f100017
net.micode.notes:dimen/disabled_alpha_material_dark = 0x7f060040
-net.micode.notes:id/action_bar_subtitle = 0x7f080008
-net.micode.notes:id/minute = 0x7f080061
+net.micode.notes:id/action_bar_subtitle = 0x7f08000c
+net.micode.notes:id/minute = 0x7f080072
net.micode.notes:dimen/dialog_fixed_width_minor = 0x7f06003f
net.micode.notes:dimen/dialog_fixed_width_major = 0x7f06003e
net.micode.notes:style/Base.TextAppearance.Widget.AppCompat.ExpandedMenu.Item = 0x7f0f0031
net.micode.notes:dimen/dialog_fixed_height_major = 0x7f06003c
-net.micode.notes:string/menu_select_all = 0x7f0e0045
net.micode.notes:attr/showAsAction = 0x7f030095
net.micode.notes:dimen/abc_text_size_menu_material = 0x7f060036
-net.micode.notes:layout/notification_template_part_chronometer = 0x7f0a002b
+net.micode.notes:layout/notification_template_part_chronometer = 0x7f0a002f
net.micode.notes:dimen/abc_text_size_headline_material = 0x7f060033
net.micode.notes:attr/actionModeWebSearchDrawable = 0x7f03001c
-net.micode.notes:attr/titleTextAppearance = 0x7f0300ba
-net.micode.notes:dimen/abc_switch_padding = 0x7f06002a
net.micode.notes:attr/buttonStyleSmall = 0x7f030035
net.micode.notes:dimen/abc_panel_menu_list_width = 0x7f060027
net.micode.notes:style/Widget.AppCompat.Light.ActionBar.TabView = 0x7f0f0110
net.micode.notes:dimen/abc_text_size_small_material = 0x7f060037
net.micode.notes:color/primary_material_light = 0x7f050032
-net.micode.notes:drawable/list_yellow_single = 0x7f070069
+net.micode.notes:drawable/list_yellow_single = 0x7f07006a
net.micode.notes:dimen/abc_edit_text_inset_top_material = 0x7f060024
net.micode.notes:dimen/abc_edit_text_inset_horizontal_material = 0x7f060023
net.micode.notes:color/black_overlay = 0x7f050013
@@ -678,22 +708,23 @@ net.micode.notes:dimen/abc_dropdownitem_text_padding_right = 0x7f060021
net.micode.notes:dimen/abc_dropdownitem_icon_width = 0x7f06001f
net.micode.notes:dimen/abc_dialog_padding_top_material = 0x7f06001c
net.micode.notes:dimen/abc_text_size_medium_material = 0x7f060035
-net.micode.notes:id/widget_text = 0x7f0800a0
+net.micode.notes:id/widget_text = 0x7f0800b8
net.micode.notes:style/HighlightTextAppearancePrimary = 0x7f0f0088
net.micode.notes:color/button_material_light = 0x7f05001b
net.micode.notes:dimen/abc_dialog_min_width_minor = 0x7f06001a
-net.micode.notes:drawable/edit_title_yellow = 0x7f07004a
+net.micode.notes:drawable/edit_title_yellow = 0x7f07004b
net.micode.notes:color/bright_foreground_inverse_material_light = 0x7f050017
net.micode.notes:dimen/abc_config_prefDialogWidth = 0x7f060014
+net.micode.notes:string/SetType = 0x7f0e0000
net.micode.notes:attr/dividerHorizontal = 0x7f030051
net.micode.notes:style/Theme.AppCompat.CompactMenu = 0x7f0f00dc
net.micode.notes:style/TextAppearance.AppCompat.Widget.ActionBar.Subtitle = 0x7f0f00bf
net.micode.notes:dimen/abc_button_padding_horizontal_material = 0x7f060012
net.micode.notes:dimen/abc_button_inset_horizontal_material = 0x7f060010
net.micode.notes:style/Theme.AppCompat.Light.Dialog.Alert = 0x7f0f00e4
-net.micode.notes:string/abc_shareactionprovider_share_with = 0x7f0e000e
-net.micode.notes:drawable/edit_red = 0x7f070045
-net.micode.notes:string/sync_progress_login = 0x7f0e0072
+net.micode.notes:string/abc_shareactionprovider_share_with = 0x7f0e000f
+net.micode.notes:drawable/edit_red = 0x7f070046
+net.micode.notes:string/sync_progress_login = 0x7f0e007c
net.micode.notes:dimen/abc_control_corner_material = 0x7f060015
net.micode.notes:dimen/abc_action_button_min_width_material = 0x7f06000d
net.micode.notes:style/Widget.AppCompat.ActionBar.TabText = 0x7f0f00f4
@@ -701,14 +732,14 @@ net.micode.notes:style/ThemeOverlay.AppCompat.Dark.ActionBar = 0x7f0f00ee
net.micode.notes:dimen/abc_search_view_text_min_width = 0x7f060029
net.micode.notes:dimen/abc_action_button_min_height_material = 0x7f06000c
net.micode.notes:attr/suggestionRowLayout = 0x7f0300a3
-net.micode.notes:drawable/list_red_down = 0x7f07005f
+net.micode.notes:drawable/list_red_down = 0x7f070060
net.micode.notes:style/Widget.AppCompat.CompoundButton.RadioButton = 0x7f0f0104
-net.micode.notes:string/app_name = 0x7f0e0015
+net.micode.notes:string/app_name = 0x7f0e0016
net.micode.notes:attr/actionOverflowMenuStyle = 0x7f03001e
net.micode.notes:style/TextAppearance.AppCompat.Widget.ActionMode.Title.Inverse = 0x7f0f00c6
net.micode.notes:style/TextAppearance.AppCompat.Large.Inverse = 0x7f0f00ae
net.micode.notes:dimen/abc_dialog_min_width_major = 0x7f060019
-net.micode.notes:id/et_foler_name = 0x7f08002e
+net.micode.notes:id/et_foler_name = 0x7f080033
net.micode.notes:styleable/DrawerArrowToggle = 0x7f100008
net.micode.notes:attr/paddingStart = 0x7f030080
net.micode.notes:dimen/abc_action_bar_subtitle_bottom_margin_material = 0x7f06000a
@@ -718,36 +749,38 @@ net.micode.notes:style/Base.ThemeOverlay.AppCompat.ActionBar = 0x7f0f0043
net.micode.notes:dimen/abc_action_bar_stacked_max_height = 0x7f060008
net.micode.notes:style/Widget.AppCompat.Button.Borderless.Colored = 0x7f0f00fe
net.micode.notes:attr/background = 0x7f030027
-net.micode.notes:id/checkbox = 0x7f08001c
+net.micode.notes:id/checkbox = 0x7f080021
net.micode.notes:dimen/abc_action_bar_overflow_padding_end_material = 0x7f060005
net.micode.notes:attr/layout = 0x7f03006b
net.micode.notes:dimen/abc_action_bar_navigation_padding_start_material = 0x7f060004
-net.micode.notes:string/menu_search = 0x7f0e0044
net.micode.notes:dimen/abc_action_bar_icon_vertical_padding_material = 0x7f060003
-net.micode.notes:id/prefenerece_sync_status_textview = 0x7f08006f
+net.micode.notes:id/prefenerece_sync_status_textview = 0x7f080085
net.micode.notes:dimen/abc_action_bar_content_inset_material = 0x7f060000
net.micode.notes:attr/popupPromptView = 0x7f030085
net.micode.notes:color/switch_thumb_normal_material_light = 0x7f050044
-net.micode.notes:id/contentPanel = 0x7f08001f
-net.micode.notes:string/error_sync_internal = 0x7f0e0025
+net.micode.notes:id/contentPanel = 0x7f080024
+net.micode.notes:string/error_sync_internal = 0x7f0e0027
net.micode.notes:color/switch_thumb_normal_material_dark = 0x7f050043
net.micode.notes:xml/searchable = 0x7f110001
net.micode.notes:style/Base.Widget.AppCompat.Toolbar.Button.Navigation = 0x7f0f0087
net.micode.notes:style/Base.Theme.AppCompat.Light.DarkActionBar = 0x7f0f003c
-net.micode.notes:id/tv_name = 0x7f080099
+net.micode.notes:id/tv_name = 0x7f0800b0
net.micode.notes:dimen/abc_dialog_list_padding_vertical_material = 0x7f060018
net.micode.notes:attr/switchTextAppearance = 0x7f0300a7
-net.micode.notes:id/menu_setting = 0x7f08005d
+net.micode.notes:id/menu_setting = 0x7f08006d
+net.micode.notes:id/family = 0x7f080036
net.micode.notes:drawable/abc_list_pressed_holo_light = 0x7f070027
net.micode.notes:drawable/abc_ic_menu_cut_mtrl_alpha = 0x7f07001a
net.micode.notes:color/material_blue_grey_800 = 0x7f05002a
net.micode.notes:color/switch_thumb_material_dark = 0x7f050041
-net.micode.notes:id/showCustom = 0x7f080083
-net.micode.notes:id/iv_bg_blue_select = 0x7f08003d
+net.micode.notes:id/showCustom = 0x7f080099
+net.micode.notes:id/iv_bg_blue_select = 0x7f080043
net.micode.notes:anim/abc_slide_out_bottom = 0x7f010008
net.micode.notes:drawable/abc_dialog_material_background_light = 0x7f070013
net.micode.notes:color/switch_thumb_disabled_material_dark = 0x7f05003f
net.micode.notes:color/secondary_text_default_material_dark = 0x7f05003b
+net.micode.notes:string/hint_foler_name = 0x7f0e0033
+net.micode.notes:id/tv_modified_date = 0x7f0800af
net.micode.notes:attr/theme = 0x7f0300b1
net.micode.notes:dimen/abc_control_padding_material = 0x7f060017
net.micode.notes:drawable/abc_ic_menu_copy_mtrl_am_alpha = 0x7f070019
@@ -759,15 +792,15 @@ net.micode.notes:color/ripple_material_dark = 0x7f050038
net.micode.notes:color/primary_text_disabled_material_light = 0x7f050037
net.micode.notes:style/TextAppearance.AppCompat.Display3 = 0x7f0f00a9
net.micode.notes:attr/collapseContentDescription = 0x7f03003a
-net.micode.notes:id/menu_delete = 0x7f080054
-net.micode.notes:string/button_delete = 0x7f0e0018
+net.micode.notes:id/menu_delete = 0x7f080060
+net.micode.notes:string/button_delete = 0x7f0e0019
net.micode.notes:color/primary_text_default_material_light = 0x7f050035
-net.micode.notes:string/preferences_dialog_change_account_warn_msg = 0x7f0e005e
+net.micode.notes:string/preferences_dialog_change_account_warn_msg = 0x7f0e0068
net.micode.notes:attr/fullscreenTextColor = 0x7f03005e
-net.micode.notes:id/customPanel = 0x7f080021
-net.micode.notes:string/abc_activitychooserview_choose_application = 0x7f0e0007
+net.micode.notes:id/customPanel = 0x7f080026
+net.micode.notes:string/abc_activitychooserview_choose_application = 0x7f0e0008
net.micode.notes:attr/toolbarNavigationButtonStyle = 0x7f0300bc
-net.micode.notes:id/action_mode_bar = 0x7f08000e
+net.micode.notes:id/action_mode_bar = 0x7f080012
net.micode.notes:drawable/abc_btn_switch_to_on_mtrl_00012 = 0x7f07000e
net.micode.notes:dimen/abc_text_size_display_2_material = 0x7f060030
net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem = 0x7f0f0030
@@ -776,8 +809,11 @@ net.micode.notes:style/Base.V7.Widget.AppCompat.AutoCompleteTextView = 0x7f0f005
net.micode.notes:dimen/abc_control_inset_material = 0x7f060016
net.micode.notes:attr/windowActionBarOverlay = 0x7f0300c2
net.micode.notes:color/primary_text_dark = 0x7f050033
-net.micode.notes:string/abc_activity_chooser_view_see_all = 0x7f0e0006
+net.micode.notes:string/abc_activity_chooser_view_see_all = 0x7f0e0007
net.micode.notes:color/primary_material_dark = 0x7f050031
+net.micode.notes:style/TextAppearance.StatusBar.EventContent.Time = 0x7f0f00cf
+net.micode.notes:string/menu_font_super = 0x7f0e0044
+net.micode.notes:drawable/abc_btn_check_material = 0x7f070004
net.micode.notes:style/TextAppearanceSuper = 0x7f0f00d9
net.micode.notes:color/material_blue_grey_950 = 0x7f05002c
net.micode.notes:color/link_text_material_dark = 0x7f050028
@@ -786,17 +822,17 @@ net.micode.notes:attr/searchHintIcon = 0x7f030090
net.micode.notes:attr/actionModeCloseButtonStyle = 0x7f030011
net.micode.notes:attr/state_above_anchor = 0x7f03009e
net.micode.notes:attr/colorButtonNormal = 0x7f03003e
-net.micode.notes:string/menu_normal_mode = 0x7f0e0042
+net.micode.notes:string/menu_normal_mode = 0x7f0e0049
net.micode.notes:color/bright_foreground_inverse_material_dark = 0x7f050016
net.micode.notes:color/light_blue_A400 = 0x7f050027
net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.Switch = 0x7f0f002f
-net.micode.notes:id/tv_title_bar = 0x7f08009c
+net.micode.notes:id/tv_title_bar = 0x7f0800b3
net.micode.notes:color/light_blue_600 = 0x7f050024
-net.micode.notes:string/datetime_dialog_cancel = 0x7f0e001a
-net.micode.notes:string/abc_searchview_description_submit = 0x7f0e000c
+net.micode.notes:string/datetime_dialog_cancel = 0x7f0e001c
+net.micode.notes:string/abc_searchview_description_submit = 0x7f0e000d
net.micode.notes:dimen/abc_button_inset_vertical_material = 0x7f060011
net.micode.notes:style/Base.TextAppearance.AppCompat.Display4 = 0x7f0f0012
-net.micode.notes:id/search_voice_btn = 0x7f08007f
+net.micode.notes:id/search_voice_btn = 0x7f080095
net.micode.notes:attr/listPopupWindowStyle = 0x7f030070
net.micode.notes:style/NoteTheme = 0x7f0f008b
net.micode.notes:attr/listDividerAlertDialog = 0x7f03006d
@@ -812,96 +848,98 @@ net.micode.notes:style/TextAppearance.AppCompat.Light.SearchResult.Subtitle = 0x
net.micode.notes:color/material_deep_teal_200 = 0x7f05002d
net.micode.notes:color/dim_foreground_material_dark = 0x7f05001e
net.micode.notes:color/dim_foreground_disabled_material_light = 0x7f05001d
-net.micode.notes:id/iv_bg_blue = 0x7f08003c
+net.micode.notes:id/iv_bg_blue = 0x7f080042
net.micode.notes:attr/buttonBarStyle = 0x7f030032
net.micode.notes:color/switch_thumb_disabled_material_light = 0x7f050040
net.micode.notes:color/dim_foreground_disabled_material_dark = 0x7f05001c
-net.micode.notes:drawable/notification_template_icon_bg = 0x7f070072
+net.micode.notes:drawable/notification_template_icon_bg = 0x7f070074
net.micode.notes:drawable/abc_btn_radio_to_on_mtrl_000 = 0x7f070009
-net.micode.notes:id/listMode = 0x7f08004c
+net.micode.notes:id/listMode = 0x7f080053
+net.micode.notes:string/menu_font_large = 0x7f0e0040
+net.micode.notes:attr/actionModeFindDrawable = 0x7f030015
+net.micode.notes:id/search_close_btn = 0x7f08008f
net.micode.notes:attr/dialogPreferredPadding = 0x7f03004c
-net.micode.notes:id/action_select_all = 0x7f080011
-net.micode.notes:string/alert_message_delete_note = 0x7f0e0012
+net.micode.notes:id/action_select_all = 0x7f080015
+net.micode.notes:string/alert_message_delete_note = 0x7f0e0013
net.micode.notes:color/bright_foreground_disabled_material_dark = 0x7f050014
net.micode.notes:style/Platform.AppCompat.Light = 0x7f0f008d
net.micode.notes:layout/abc_activity_chooser_view_list_item = 0x7f0a0008
net.micode.notes:style/Base.V21.Theme.AppCompat = 0x7f0f004b
net.micode.notes:color/accent_material_dark = 0x7f05000d
-net.micode.notes:string/info_note_enter_desktop = 0x7f0e0031
net.micode.notes:color/abc_secondary_text_material_dark = 0x7f05000b
net.micode.notes:style/Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse = 0x7f0f0072
-net.micode.notes:id/btn_new_note = 0x7f080017
+net.micode.notes:id/btn_new_note = 0x7f08001c
net.micode.notes:drawable/abc_btn_rating_star_on_mtrl_alpha = 0x7f07000c
-net.micode.notes:layout/select_dialog_singlechoice_material = 0x7f0a002f
+net.micode.notes:layout/select_dialog_singlechoice_material = 0x7f0a0033
net.micode.notes:color/abc_search_url_text_pressed = 0x7f050009
net.micode.notes:array/menu_share_ways = 0x7f020001
net.micode.notes:attr/subtitleTextAppearance = 0x7f0300a1
-net.micode.notes:id/iv_bg_white = 0x7f080042
+net.micode.notes:id/iv_bg_white = 0x7f080048
net.micode.notes:attr/actionButtonStyle = 0x7f03000b
net.micode.notes:attr/actionBarStyle = 0x7f030005
net.micode.notes:dimen/notification_large_icon_width = 0x7f060043
-net.micode.notes:string/menu_font_small = 0x7f0e003d
net.micode.notes:dimen/abc_text_size_large_material = 0x7f060034
net.micode.notes:drawable/abc_textfield_search_default_mtrl_alpha = 0x7f07003b
net.micode.notes:attr/textAppearanceSearchResultSubtitle = 0x7f0300ac
+net.micode.notes:string/menu_font_normal = 0x7f0e0041
net.micode.notes:attr/textAllCaps = 0x7f0300a8
-net.micode.notes:id/action_menu_divider = 0x7f08000c
-net.micode.notes:string/menu_font_normal = 0x7f0e003b
-net.micode.notes:id/always = 0x7f080014
+net.micode.notes:id/action_menu_divider = 0x7f080010
+net.micode.notes:id/always = 0x7f080018
net.micode.notes:bool/abc_config_actionMenuItemAllCaps = 0x7f040003
net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.PopupMenu.Small = 0x7f0f002e
net.micode.notes:dimen/abc_disabled_alpha_material_dark = 0x7f06001d
-net.micode.notes:id/action_mode_bar_stub = 0x7f08000f
+net.micode.notes:id/action_mode_bar_stub = 0x7f080013
net.micode.notes:bool/abc_action_bar_expanded_action_views_exclusive = 0x7f040002
-net.micode.notes:id/icon = 0x7f080037
+net.micode.notes:id/icon = 0x7f08003d
net.micode.notes:attr/colorSwitchThumbNormal = 0x7f030044
-net.micode.notes:id/topPanel = 0x7f080095
-net.micode.notes:id/note_edit_view = 0x7f08006a
+net.micode.notes:id/topPanel = 0x7f0800ac
+net.micode.notes:id/note_edit_view = 0x7f08007c
net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Title = 0x7f0f0028
-net.micode.notes:drawable/title_alert = 0x7f070076
-net.micode.notes:drawable/list_red_single = 0x7f070061
+net.micode.notes:drawable/title_alert = 0x7f070078
+net.micode.notes:drawable/list_red_single = 0x7f070062
net.micode.notes:attr/selectableItemBackground = 0x7f030093
net.micode.notes:attr/windowMinWidthMinor = 0x7f0300c9
net.micode.notes:attr/disableChildrenWhenDisabled = 0x7f03004e
net.micode.notes:color/abc_search_url_text = 0x7f050007
-net.micode.notes:layout/widget_2x = 0x7f0a0032
+net.micode.notes:layout/widget_2x = 0x7f0a0036
net.micode.notes:color/button_material_dark = 0x7f05001a
-net.micode.notes:id/cb_edit_item = 0x7f08001b
+net.micode.notes:id/cb_edit_item = 0x7f080020
net.micode.notes:style/Widget.AppCompat.Button = 0x7f0f00fc
net.micode.notes:style/Base.TextAppearance.AppCompat.Small.Inverse = 0x7f0f0020
-net.micode.notes:drawable/list_blue_down = 0x7f070055
+net.micode.notes:drawable/list_blue_down = 0x7f070056
net.micode.notes:attr/windowFixedHeightMinor = 0x7f0300c5
+net.micode.notes:string/menu_remove_remind = 0x7f0e004b
+net.micode.notes:attr/drawableSize = 0x7f030054
net.micode.notes:attr/windowActionModeOverlay = 0x7f0300c3
-net.micode.notes:drawable/list_blue_up = 0x7f070058
+net.micode.notes:drawable/list_blue_up = 0x7f070059
net.micode.notes:attr/backgroundTint = 0x7f03002a
net.micode.notes:attr/homeAsUpIndicator = 0x7f030063
net.micode.notes:style/Widget.AppCompat.DrawerArrowToggle = 0x7f0f0106
net.micode.notes:dimen/abc_action_bar_progress_bar_size = 0x7f060007
net.micode.notes:dimen/abc_text_size_body_1_material = 0x7f06002b
net.micode.notes:attr/popupWindowStyle = 0x7f030087
-net.micode.notes:id/line3 = 0x7f08004b
+net.micode.notes:id/line3 = 0x7f080052
net.micode.notes:layout/abc_select_dialog_material = 0x7f0a0017
net.micode.notes:attr/listPreferredItemPaddingLeft = 0x7f030074
net.micode.notes:drawable/abc_list_longpressed_holo = 0x7f070025
net.micode.notes:attr/textAppearanceSearchResultTitle = 0x7f0300ad
net.micode.notes:drawable/abc_cab_background_top_mtrl_alpha = 0x7f070011
net.micode.notes:attr/voiceIcon = 0x7f0300c0
-net.micode.notes:id/expand_activities_button = 0x7f08002f
+net.micode.notes:id/expand_activities_button = 0x7f080034
net.micode.notes:dimen/abc_action_bar_overflow_padding_start_material = 0x7f060006
net.micode.notes:style/Base.TextAppearance.AppCompat.Button = 0x7f0f000d
net.micode.notes:attr/actionModePopupWindowStyle = 0x7f030017
net.micode.notes:color/material_blue_grey_900 = 0x7f05002b
-net.micode.notes:id/edit_query = 0x7f08002a
+net.micode.notes:id/edit_query = 0x7f08002f
net.micode.notes:color/abc_primary_text_disable_only_material_light = 0x7f050004
net.micode.notes:attr/track = 0x7f0300bf
net.micode.notes:attr/topBottomBarArrowSize = 0x7f0300be
net.micode.notes:attr/buttonBarPositiveButtonStyle = 0x7f030031
net.micode.notes:attr/titleTextStyle = 0x7f0300bb
-net.micode.notes:string/menu_folder_delete = 0x7f0e0038
net.micode.notes:attr/titleMargins = 0x7f0300b9
-net.micode.notes:id/info = 0x7f08003a
-net.micode.notes:layout/note_item = 0x7f0a0021
-net.micode.notes:id/account_dialog_title = 0x7f080001
+net.micode.notes:id/info = 0x7f080040
+net.micode.notes:layout/note_item = 0x7f0a0025
+net.micode.notes:id/account_dialog_title = 0x7f080003
net.micode.notes:anim/abc_fade_in = 0x7f010000
net.micode.notes:style/Base.Widget.AppCompat.Light.ActionBar.TabBar = 0x7f0f0070
net.micode.notes:attr/icon = 0x7f030065
@@ -910,21 +948,22 @@ net.micode.notes:attr/titleMarginStart = 0x7f0300b7
net.micode.notes:attr/windowFixedWidthMajor = 0x7f0300c6
net.micode.notes:attr/actionBarDivider = 0x7f030000
net.micode.notes:integer/abc_max_action_buttons = 0x7f090002
-net.micode.notes:drawable/list_folder = 0x7f070059
+net.micode.notes:drawable/list_folder = 0x7f07005a
net.micode.notes:drawable/abc_menu_hardkey_panel_mtrl_mult = 0x7f07002e
net.micode.notes:attr/isLightTheme = 0x7f030069
net.micode.notes:attr/thickness = 0x7f0300b2
-net.micode.notes:string/preferences_menu_change_account = 0x7f0e0064
-net.micode.notes:id/textSpacerNoButtons = 0x7f080090
+net.micode.notes:layout/activity_change_password = 0x7f0a001a
+net.micode.notes:string/preferences_menu_change_account = 0x7f0e006e
+net.micode.notes:id/textSpacerNoButtons = 0x7f0800a6
net.micode.notes:style/Widget.AppCompat.Light.ActionBar.Solid.Inverse = 0x7f0f010b
net.micode.notes:style/Base.Theme.AppCompat.Dialog.Alert = 0x7f0f0037
net.micode.notes:attr/buttonStyle = 0x7f030034
-net.micode.notes:string/abc_action_mode_done = 0x7f0e0005
+net.micode.notes:string/abc_action_mode_done = 0x7f0e0006
net.micode.notes:style/Widget.AppCompat.SearchView.ActionBar = 0x7f0f012a
net.micode.notes:attr/textColorAlertDialogListItem = 0x7f0300af
net.micode.notes:attr/titleMarginEnd = 0x7f0300b6
-net.micode.notes:string/alert_message_delete_notes = 0x7f0e0013
-net.micode.notes:id/buttonPanel = 0x7f080019
+net.micode.notes:string/alert_message_delete_notes = 0x7f0e0014
+net.micode.notes:id/buttonPanel = 0x7f08001e
net.micode.notes:attr/backgroundTintMode = 0x7f03002b
net.micode.notes:style/TextAppearance.AppCompat.Title = 0x7f0f00bc
net.micode.notes:anim/abc_popup_enter = 0x7f010003
@@ -941,43 +980,46 @@ net.micode.notes:style/TextAppearanceMedium = 0x7f0f00d5
net.micode.notes:attr/buttonBarButtonStyle = 0x7f03002e
net.micode.notes:dimen/abc_text_size_display_4_material = 0x7f060032
net.micode.notes:color/bright_foreground_material_light = 0x7f050019
+net.micode.notes:id/Acknowledged = 0x7f080000
net.micode.notes:style/Base.Widget.AppCompat.Spinner.DropDown.ActionBar = 0x7f0f0083
-net.micode.notes:id/radio = 0x7f080073
+net.micode.notes:id/radio = 0x7f080089
net.micode.notes:attr/subtitle = 0x7f0300a0
net.micode.notes:color/abc_background_cache_hint_selector_material_light = 0x7f050001
-net.micode.notes:string/preferences_toast_cannot_change_account = 0x7f0e0067
+net.micode.notes:string/preferences_toast_cannot_change_account = 0x7f0e0071
+net.micode.notes:string/menu_sort = 0x7f0e0054
net.micode.notes:attr/spinBars = 0x7f030099
-net.micode.notes:id/expanded_menu = 0x7f080030
+net.micode.notes:id/expanded_menu = 0x7f080035
net.micode.notes:attr/selectableItemBackgroundBorderless = 0x7f030094
net.micode.notes:anim/abc_fade_out = 0x7f010001
net.micode.notes:color/abc_input_method_navigation_guard = 0x7f050002
net.micode.notes:attr/actionViewClass = 0x7f030020
net.micode.notes:attr/titleMarginBottom = 0x7f0300b5
-net.micode.notes:drawable/note_edit_color_selector_panel = 0x7f070070
+net.micode.notes:drawable/note_edit_color_selector_panel = 0x7f070072
+net.micode.notes:drawable/nightbackground = 0x7f070071
net.micode.notes:attr/searchViewStyle = 0x7f030092
-net.micode.notes:id/tabMode = 0x7f08008d
-net.micode.notes:string/search = 0x7f0e0069
+net.micode.notes:id/tabMode = 0x7f0800a3
+net.micode.notes:string/search = 0x7f0e0073
net.micode.notes:attr/ratingBarStyle = 0x7f03008f
net.micode.notes:attr/drawerArrowStyle = 0x7f030055
-net.micode.notes:drawable/list_green_middle = 0x7f07005c
+net.micode.notes:drawable/list_green_middle = 0x7f07005d
net.micode.notes:attr/queryBackground = 0x7f03008c
net.micode.notes:style/Widget.AppCompat.Button.Borderless = 0x7f0f00fd
net.micode.notes:dimen/dialog_fixed_height_minor = 0x7f06003d
net.micode.notes:dimen/abc_text_size_display_1_material = 0x7f06002f
net.micode.notes:attr/progressBarStyle = 0x7f03008a
net.micode.notes:style/Theme.AppCompat.Light.DarkActionBar = 0x7f0f00e2
-net.micode.notes:id/status_bar_latest_event_content = 0x7f08008a
+net.micode.notes:id/status_bar_latest_event_content = 0x7f0800a0
net.micode.notes:color/primary_dark_material_dark = 0x7f05002f
net.micode.notes:layout/abc_action_bar_up_container = 0x7f0a0001
net.micode.notes:style/Base.TextAppearance.AppCompat.Small = 0x7f0f001f
net.micode.notes:attr/progressBarPadding = 0x7f030089
-net.micode.notes:string/note_alert_expired = 0x7f0e004e
+net.micode.notes:string/note_alert_expired = 0x7f0e0058
net.micode.notes:attr/popupMenuStyle = 0x7f030084
-net.micode.notes:string/abc_action_bar_up_description = 0x7f0e0003
+net.micode.notes:string/abc_action_bar_up_description = 0x7f0e0004
net.micode.notes:drawable/abc_ic_menu_selectall_mtrl_alpha = 0x7f07001d
net.micode.notes:style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large = 0x7f0f00b1
net.micode.notes:dimen/abc_alert_dialog_button_bar_height = 0x7f06000f
-net.micode.notes:id/up = 0x7f08009d
+net.micode.notes:id/up = 0x7f0800b5
net.micode.notes:attr/panelMenuListWidth = 0x7f030083
net.micode.notes:attr/showText = 0x7f030097
net.micode.notes:attr/prompt = 0x7f03008b
@@ -990,7 +1032,7 @@ net.micode.notes:anim/abc_slide_in_top = 0x7f010007
net.micode.notes:attr/dividerPadding = 0x7f030052
net.micode.notes:dimen/abc_text_size_button_material = 0x7f06002d
net.micode.notes:attr/overlapAnchor = 0x7f03007e
-net.micode.notes:layout/notification_template_media = 0x7f0a002a
+net.micode.notes:layout/notification_template_media = 0x7f0a002e
net.micode.notes:attr/navigationIcon = 0x7f03007c
net.micode.notes:style/HighlightTextAppearanceSecondary = 0x7f0f0089
net.micode.notes:attr/navigationContentDescription = 0x7f03007b
@@ -1001,18 +1043,16 @@ net.micode.notes:attr/actionOverflowButtonStyle = 0x7f03001d
net.micode.notes:drawable/abc_btn_default_mtrl_shape = 0x7f070007
net.micode.notes:style/Platform.ThemeOverlay.AppCompat.Light = 0x7f0f008f
net.micode.notes:color/primary_text_disabled_material_dark = 0x7f050036
-net.micode.notes:layout/note_list_dropdown_menu = 0x7f0a0023
+net.micode.notes:layout/note_list_dropdown_menu = 0x7f0a0027
net.micode.notes:style/Base.TextAppearance.AppCompat.SearchResult.Title = 0x7f0f001e
+net.micode.notes:string/menu_read_contain = 0x7f0e004a
net.micode.notes:attr/textColorSearchUrl = 0x7f0300b0
net.micode.notes:dimen/abc_action_bar_default_padding_material = 0x7f060002
-net.micode.notes:id/fullscreen_content_controls = 0x7f080033
+net.micode.notes:id/fullscreen_content_controls = 0x7f080039
net.micode.notes:styleable/ActivityChooserView = 0x7f100005
net.micode.notes:layout/abc_screen_simple_overlay_action_mode = 0x7f0a0013
net.micode.notes:attr/actionDropDownStyle = 0x7f03000c
net.micode.notes:attr/contentInsetStart = 0x7f030049
-net.micode.notes:style/Base.Widget.AppCompat.Spinner.Underlined = 0x7f0f0084
-net.micode.notes:array/format_for_exported_note = 0x7f020000
-net.micode.notes:string/menu_alert = 0x7f0e0032
net.micode.notes:attr/actionModeSplitBackground = 0x7f03001a
net.micode.notes:drawable/abc_list_divider_mtrl_alpha = 0x7f070023
net.micode.notes:style/Base.Theme.AppCompat = 0x7f0f0034
@@ -1021,36 +1061,36 @@ net.micode.notes:style/Base.Widget.AppCompat.ListView = 0x7f0f0077
net.micode.notes:attr/submitBackground = 0x7f03009f
net.micode.notes:attr/expandActivityOverflowButtonDrawable = 0x7f03005c
net.micode.notes:style/Base.Widget.AppCompat.Spinner = 0x7f0f0082
-net.micode.notes:id/tv_time = 0x7f08009a
+net.micode.notes:id/tv_time = 0x7f0800b1
net.micode.notes:attr/windowFixedHeightMajor = 0x7f0300c4
net.micode.notes:attr/alertDialogButtonGroupStyle = 0x7f030022
net.micode.notes:attr/editTextStyle = 0x7f03005a
net.micode.notes:drawable/abc_ic_search_api_mtrl_alpha = 0x7f07001f
net.micode.notes:attr/homeLayout = 0x7f030064
-net.micode.notes:string/menu_delete = 0x7f0e0034
net.micode.notes:anim/abc_popup_exit = 0x7f010004
net.micode.notes:attr/hideOnContentScroll = 0x7f030062
net.micode.notes:attr/color = 0x7f03003c
net.micode.notes:attr/goIcon = 0x7f030060
net.micode.notes:color/accent_material_light = 0x7f05000e
-net.micode.notes:string/abc_toolbar_collapse_description = 0x7f0e0010
+net.micode.notes:string/abc_toolbar_collapse_description = 0x7f0e0011
net.micode.notes:color/hint_foreground_material_dark = 0x7f050022
-net.micode.notes:drawable/widget_2x_green = 0x7f070079
+net.micode.notes:drawable/widget_2x_green = 0x7f07007b
net.micode.notes:dimen/abc_dialog_padding_material = 0x7f06001b
net.micode.notes:attr/elevation = 0x7f03005b
net.micode.notes:attr/editTextColor = 0x7f030059
+net.micode.notes:string/tips_of_revoke = 0x7f0e0082
net.micode.notes:color/abc_primary_text_material_dark = 0x7f050005
net.micode.notes:attr/editTextBackground = 0x7f030058
net.micode.notes:attr/dropdownListPreferredItemHeight = 0x7f030057
net.micode.notes:drawable/abc_list_pressed_holo_dark = 0x7f070026
net.micode.notes:attr/dropDownListViewStyle = 0x7f030056
-net.micode.notes:id/useLogo = 0x7f08009e
-net.micode.notes:id/dropdown = 0x7f080028
+net.micode.notes:id/useLogo = 0x7f0800b6
+net.micode.notes:id/dropdown = 0x7f08002d
net.micode.notes:attr/alertDialogStyle = 0x7f030024
net.micode.notes:attr/defaultQueryHint = 0x7f03004b
-net.micode.notes:id/home = 0x7f080034
+net.micode.notes:id/home = 0x7f08003a
net.micode.notes:attr/multiChoiceItemLayout = 0x7f03007a
-net.micode.notes:layout/support_simple_spinner_dropdown_item = 0x7f0a0031
+net.micode.notes:layout/support_simple_spinner_dropdown_item = 0x7f0a0035
net.micode.notes:drawable/abc_text_cursor_mtrl_alpha = 0x7f070037
net.micode.notes:drawable/abc_ab_share_pack_mtrl_alpha = 0x7f070002
net.micode.notes:style/TextAppearance.StatusBar.EventContent = 0x7f0f00cc
@@ -1065,9 +1105,10 @@ net.micode.notes:attr/colorPrimaryDark = 0x7f030043
net.micode.notes:dimen/text_font_size_normal = 0x7f060047
net.micode.notes:attr/spinnerDropDownItemStyle = 0x7f03009a
net.micode.notes:attr/logo = 0x7f030076
+net.micode.notes:attr/barSize = 0x7f03002c
+net.micode.notes:string/can_not_revoke = 0x7f0e001b
net.micode.notes:color/abc_search_url_text_normal = 0x7f050008
net.micode.notes:anim/abc_grow_fade_in_from_bottom = 0x7f010002
-net.micode.notes:string/menu_folder_view = 0x7f0e0039
net.micode.notes:attr/panelBackground = 0x7f030081
net.micode.notes:attr/colorControlActivated = 0x7f03003f
net.micode.notes:attr/titleMarginTop = 0x7f0300b8
@@ -1079,41 +1120,38 @@ net.micode.notes:attr/closeIcon = 0x7f030038
net.micode.notes:drawable/abc_list_focused_holo = 0x7f070024
net.micode.notes:style/Base.Theme.AppCompat.DialogWhenLarge = 0x7f0f003a
net.micode.notes:attr/paddingEnd = 0x7f03007f
-net.micode.notes:id/action_bar_spinner = 0x7f080007
-net.micode.notes:string/abc_searchview_description_query = 0x7f0e000a
+net.micode.notes:id/action_bar_spinner = 0x7f08000b
+net.micode.notes:string/abc_searchview_description_query = 0x7f0e000b
net.micode.notes:drawable/abc_btn_check_to_on_mtrl_015 = 0x7f070006
net.micode.notes:style/TextAppearanceNormal = 0x7f0f00d6
net.micode.notes:attr/dividerVertical = 0x7f030053
net.micode.notes:attr/checkboxStyle = 0x7f030036
-net.micode.notes:string/menu_select_title = 0x7f0e0047
net.micode.notes:drawable/abc_ic_clear_mtrl_alpha = 0x7f070016
net.micode.notes:color/abc_primary_text_material_light = 0x7f050006
net.micode.notes:attr/listItemLayout = 0x7f03006e
net.micode.notes:attr/buttonPanelSideLayout = 0x7f030033
-net.micode.notes:string/error_sync_network = 0x7f0e0026
net.micode.notes:attr/actionModeBackground = 0x7f030010
-net.micode.notes:string/note_link_email = 0x7f0e004f
+net.micode.notes:string/note_link_email = 0x7f0e0059
net.micode.notes:attr/radioButtonStyle = 0x7f03008e
net.micode.notes:style/Theme.AppCompat.Light = 0x7f0f00e1
net.micode.notes:attr/actionModeCutDrawable = 0x7f030014
net.micode.notes:color/bright_foreground_material_dark = 0x7f050018
net.micode.notes:style/Base.TextAppearance.AppCompat.Inverse = 0x7f0f0014
net.micode.notes:color/dim_foreground_material_light = 0x7f05001f
-net.micode.notes:string/ticker_success = 0x7f0e0076
+net.micode.notes:string/ticker_success = 0x7f0e0080
net.micode.notes:dimen/abc_action_button_min_width_overflow_material = 0x7f06000e
-net.micode.notes:attr/barSize = 0x7f03002c
-net.micode.notes:id/iv_bg_green = 0x7f08003e
+net.micode.notes:id/iv_bg_green = 0x7f080044
net.micode.notes:attr/actionMenuTextAppearance = 0x7f03000e
-net.micode.notes:drawable/list_yellow_up = 0x7f07006a
+net.micode.notes:drawable/list_yellow_up = 0x7f07006b
net.micode.notes:color/background_material_light = 0x7f050012
net.micode.notes:layout/abc_action_bar_title_item = 0x7f0a0000
net.micode.notes:attr/toolbarStyle = 0x7f0300bd
-net.micode.notes:string/error_note_empty_for_send_to_desktop = 0x7f0e0020
+net.micode.notes:string/error_note_empty_for_send_to_desktop = 0x7f0e0022
net.micode.notes:attr/customNavigationLayout = 0x7f03004a
net.micode.notes:dimen/abc_disabled_alpha_material_light = 0x7f06001e
net.micode.notes:attr/listPreferredItemPaddingRight = 0x7f030075
-net.micode.notes:id/search_src_text = 0x7f08007e
-net.micode.notes:drawable/list_white_up = 0x7f070066
+net.micode.notes:id/search_src_text = 0x7f080094
+net.micode.notes:drawable/list_white_up = 0x7f070067
net.micode.notes:attr/alertDialogCenterButtons = 0x7f030023
net.micode.notes:style/Base.ThemeOverlay.AppCompat.Dark.ActionBar = 0x7f0f0045
net.micode.notes:color/light_blue_A200 = 0x7f050026
@@ -1122,66 +1160,71 @@ net.micode.notes:attr/actionModeStyle = 0x7f03001b
net.micode.notes:dimen/abc_text_size_caption_material = 0x7f06002e
net.micode.notes:attr/actionProviderClass = 0x7f03001f
net.micode.notes:drawable/abc_list_selector_disabled_holo_light = 0x7f07002b
-net.micode.notes:id/alertTitle = 0x7f080013
-net.micode.notes:id/selection_menu = 0x7f080081
+net.micode.notes:id/alertTitle = 0x7f080017
+net.micode.notes:id/selection_menu = 0x7f080097
net.micode.notes:dimen/text_font_size_medium = 0x7f060046
net.micode.notes:attr/actionBarTabStyle = 0x7f030007
-net.micode.notes:string/error_sync_cancelled = 0x7f0e0024
+net.micode.notes:string/error_sync_cancelled = 0x7f0e0026
net.micode.notes:color/background_floating_material_dark = 0x7f05000f
-net.micode.notes:string/widget_havenot_content = 0x7f0e007a
+net.micode.notes:string/widget_havenot_content = 0x7f0e0085
net.micode.notes:attr/actionBarItemBackground = 0x7f030001
net.micode.notes:style/Theme.AppCompat.Light.Dialog = 0x7f0f00e3
net.micode.notes:attr/actionMenuTextColor = 0x7f03000f
-net.micode.notes:id/action_bar_root = 0x7f080006
+net.micode.notes:id/action_bar_root = 0x7f08000a
net.micode.notes:attr/actionBarTabTextStyle = 0x7f030008
net.micode.notes:style/Base.Animation.AppCompat.DropDownUp = 0x7f0f0007
-net.micode.notes:drawable/list_yellow_middle = 0x7f070068
-net.micode.notes:string/notelist_string_info = 0x7f0e0056
+net.micode.notes:drawable/list_yellow_middle = 0x7f070069
+net.micode.notes:string/notelist_string_info = 0x7f0e0060
net.micode.notes:attr/actionLayout = 0x7f03000d
net.micode.notes:attr/splitTrack = 0x7f03009d
-net.micode.notes:id/src_atop = 0x7f080087
+net.micode.notes:id/src_atop = 0x7f08009d
+net.micode.notes:id/menu_DayMood = 0x7f08005b
net.micode.notes:attr/contentInsetRight = 0x7f030048
net.micode.notes:drawable/abc_list_selector_background_transition_holo_dark = 0x7f070028
net.micode.notes:attr/buttonBarNegativeButtonStyle = 0x7f03002f
-net.micode.notes:id/title_template = 0x7f080094
+net.micode.notes:id/title_template = 0x7f0800ab
net.micode.notes:attr/singleChoiceItemLayout = 0x7f030098
-net.micode.notes:string/failed_sdcard_export = 0x7f0e0027
net.micode.notes:style/TextAppearance.AppCompat = 0x7f0f00a2
net.micode.notes:dimen/abc_list_item_padding_horizontal_material = 0x7f060026
+net.micode.notes:string/file_path = 0x7f0e002b
+net.micode.notes:string/abc_action_bar_home_description = 0x7f0e0001
net.micode.notes:style/TextAppearanceSecondaryItem = 0x7f0f00d8
net.micode.notes:attr/preserveIconSpacing = 0x7f030088
net.micode.notes:color/abc_search_url_text_selected = 0x7f05000a
net.micode.notes:attr/measureWithLargestChild = 0x7f030078
net.micode.notes:dimen/abc_text_size_title_material = 0x7f06003a
-net.micode.notes:id/showTitle = 0x7f080085
+net.micode.notes:style/Base.Widget.AppCompat.Spinner.Underlined = 0x7f0f0084
+net.micode.notes:string/menu_alert = 0x7f0e0035
+net.micode.notes:array/format_for_exported_note = 0x7f020000
+net.micode.notes:id/showTitle = 0x7f08009b
net.micode.notes:attr/actionBarSplitStyle = 0x7f030004
net.micode.notes:anim/abc_slide_in_bottom = 0x7f010006
net.micode.notes:style/Platform.V14.AppCompat = 0x7f0f0092
net.micode.notes:attr/divider = 0x7f030050
-net.micode.notes:string/preferences_menu_cancel = 0x7f0e0063
-net.micode.notes:drawable/list_white_single = 0x7f070065
-net.micode.notes:string/alert_message_delete_folder = 0x7f0e0011
+net.micode.notes:string/preferences_menu_cancel = 0x7f0e006d
+net.micode.notes:drawable/list_white_single = 0x7f070066
+net.micode.notes:string/alert_message_delete_folder = 0x7f0e0012
net.micode.notes:style/Base.Widget.AppCompat.EditText = 0x7f0f006d
net.micode.notes:attr/actionBarPopupTheme = 0x7f030002
net.micode.notes:bool/abc_action_bar_embed_tabs = 0x7f040000
net.micode.notes:style/TextAppearance.AppCompat.Widget.PopupMenu.Small = 0x7f0f00c9
net.micode.notes:dimen/text_font_size_large = 0x7f060045
net.micode.notes:attr/showDividers = 0x7f030096
-net.micode.notes:drawable/list_footer_bg = 0x7f07005a
+net.micode.notes:drawable/list_footer_bg = 0x7f07005b
net.micode.notes:attr/spinnerMode = 0x7f03009b
-net.micode.notes:id/default_activity_button = 0x7f080024
+net.micode.notes:id/default_activity_button = 0x7f080029
net.micode.notes:color/light_blue_900 = 0x7f050025
-net.micode.notes:id/ll_font_large = 0x7f08004e
+net.micode.notes:id/ll_font_large = 0x7f080055
net.micode.notes:styleable/SwitchCompat = 0x7f100014
net.micode.notes:attr/contentInsetEnd = 0x7f030046
net.micode.notes:attr/actionModeSelectAllDrawable = 0x7f030018
net.micode.notes:color/background_material_dark = 0x7f050011
net.micode.notes:style/Base.Theme.AppCompat.Light.Dialog.Alert = 0x7f0f003e
net.micode.notes:attr/checkedTextViewStyle = 0x7f030037
-net.micode.notes:layout/add_account_text = 0x7f0a001b
+net.micode.notes:layout/add_account_text = 0x7f0a001f
net.micode.notes:dimen/abc_action_bar_default_height_material = 0x7f060001
-net.micode.notes:string/format_move_notes_to_folder = 0x7f0e002f
net.micode.notes:dimen/abc_text_size_body_2_material = 0x7f06002c
+net.micode.notes:id/menu_read_contain = 0x7f080069
net.micode.notes:attr/collapseIcon = 0x7f03003b
net.micode.notes:attr/dialogTheme = 0x7f03004d
net.micode.notes:attr/actionBarTheme = 0x7f030009
diff --git a/src/app/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt b/src/app/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt
index 2c6aeaad..654e8bd6 100644
--- a/src/app/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt
+++ b/src/app/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt
@@ -430,6 +430,7 @@ drawable bg_btn_set_color
drawable bg_color_btn_mask
drawable call_record
drawable clock
+drawable daybackground
drawable delete
drawable dropdown_icon
drawable edit_blue
@@ -477,6 +478,7 @@ drawable menu_move
drawable new_note
drawable new_note_normal
drawable new_note_pressed
+drawable nightbackground
drawable note_edit_color_selector_panel
drawable notification
drawable notification_template_icon_bg
@@ -495,8 +497,12 @@ drawable widget_4x_green
drawable widget_4x_red
drawable widget_4x_white
drawable widget_4x_yellow
+id Acknowledged
+id Dt_Acknowledged
id account_dialog_subtitle
id account_dialog_title
+id ack_password
+id acknowledge
id action0
id action_bar
id action_bar_activity_content
@@ -518,6 +524,7 @@ id alertTitle
id always
id amPm
id beginning
+id btn_SetType
id btn_new_note
id btn_set_bg_color
id buttonPanel
@@ -544,6 +551,7 @@ id et_edit_text
id et_foler_name
id expand_activities_button
id expanded_menu
+id family
id font_size_selector
id fullscreen_content
id fullscreen_content_controls
@@ -569,6 +577,7 @@ id iv_large_select
id iv_medium_select
id iv_small_select
id iv_super_select
+id lg_password
id line1
id line3
id listMode
@@ -577,19 +586,29 @@ id ll_font_large
id ll_font_normal
id ll_font_small
id ll_font_super
+id login
id media_actions
+id menu_DayMood
+id menu_NightMood
id menu_alert
+id menu_change_font
+id menu_change_password
id menu_delete
+id menu_delete_password
id menu_delete_remind
id menu_export_text
id menu_font_size
id menu_list_mode
+id menu_login
id menu_new_folder
id menu_new_note
+id menu_read_contain
+id menu_revoke
id menu_search
id menu_send_to_desktop
id menu_setting
id menu_share
+id menu_sort
id menu_sync
id middle
id minute
@@ -597,6 +616,7 @@ id move
id multiply
id navigation_bar
id never
+id new_password
id none
id normal
id note_bg_color_selector
@@ -605,7 +625,11 @@ id note_edit_view
id note_item
id note_title
id notes_list
+id old_password
id parentPanel
+id password
+id password_ack
+id person
id prefenerece_sync_status_textview
id preference_sync_button
id progress_circular
@@ -641,6 +665,7 @@ id text
id text2
id textSpacerNoButtons
id text_num
+id thepassword
id time
id title
id title_template
@@ -652,11 +677,13 @@ id tv_name
id tv_time
id tv_title
id tv_title_bar
+id tv_type
id up
id useLogo
id widget_bg_image
id widget_text
id withText
+id work
id wrap_content
integer abc_config_activityDefaultDur
integer abc_config_activityShortDur
@@ -689,6 +716,10 @@ layout abc_search_view
layout abc_select_dialog_material
layout abc_simple_dropdown_hint
layout account_dialog_title
+layout activity_change_password
+layout activity_delete_password
+layout activity_login
+layout activity_set_loginpassword
layout activity_splash
layout add_account_text
layout datetime_picker
@@ -721,9 +752,11 @@ menu note_edit
menu note_list
menu note_list_dropdown
menu note_list_options
+menu note_type
menu sub_folder
plurals search_results_title
raw introduction
+string SetType
string abc_action_bar_home_description
string abc_action_bar_home_description_format
string abc_action_bar_home_subtitle_description_format
@@ -750,6 +783,7 @@ string app_widget2x2
string app_widget4x4
string button_delete
string call_record_folder_name
+string can_not_revoke
string datetime_dialog_cancel
string datetime_dialog_ok
string delete_remind_time_message
@@ -772,11 +806,15 @@ string format_datetime_mdhm
string format_exported_file_location
string format_folder_files_count
string format_move_notes_to_folder
+string have_not_input_anything
string hint_foler_name
string info_note_enter_desktop
string menu_alert
+string menu_change_font
+string menu_change_password
string menu_create_folder
string menu_delete
+string menu_delete_password
string menu_deselect_all
string menu_export_text
string menu_folder_change_name
@@ -788,10 +826,13 @@ string menu_font_size
string menu_font_small
string menu_font_super
string menu_list_mode
+string menu_login
string menu_move
string menu_move_parent_folder
string menu_normal_mode
+string menu_read_contain
string menu_remove_remind
+string menu_revoke
string menu_search
string menu_select_all
string menu_select_none
@@ -799,6 +840,7 @@ string menu_select_title
string menu_send_to_desktop
string menu_setting
string menu_share
+string menu_sort
string menu_sync
string menu_sync_cancel
string menu_title_select_folder
@@ -844,6 +886,7 @@ string ticker_cancel
string ticker_fail
string ticker_success
string ticker_syncing
+string tips_of_revoke
string title_activity_fullscreen
string title_activity_splash
string widget_havenot_content
diff --git a/src/app/build/outputs/logs/manifest-merger-debug-report.txt b/src/app/build/outputs/logs/manifest-merger-debug-report.txt
index b4013391..dd08cac8 100644
--- a/src/app/build/outputs/logs/manifest-merger-debug-report.txt
+++ b/src/app/build/outputs/logs/manifest-merger-debug-report.txt
@@ -1,264 +1,322 @@
-- Merging decision tree log ---
manifest
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:18:1-160:12
-INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:18:1-160:12
-INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:18:1-160:12
-INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:18:1-160:12
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:18:1-193:12
+INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:18:1-193:12
+INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:18:1-193:12
+INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:18:1-193:12
MERGED from [com.android.databinding:viewbinding:8.0.1] C:\Users\huigenb\.gradle\caches\transforms-3\6b6488381df90380ebf186219d84078c\transformed\viewbinding-8.0.1\AndroidManifest.xml:2:1-7:12
MERGED from [com.android.support:appcompat-v7:22.2.1] C:\Users\huigenb\.gradle\caches\transforms-3\1dbc0f7261c89eb9b9e5c125a3979522\transformed\appcompat-v7-22.2.1\AndroidManifest.xml:17:1-24:12
MERGED from [com.android.support:support-v4:22.2.1] C:\Users\huigenb\.gradle\caches\transforms-3\3a2b693effadcdf4bb2c42aea3dedf15\transformed\support-v4-22.2.1\AndroidManifest.xml:17:1-24:12
-INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:18:1-160:12
-INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:18:1-160:12
-INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:18:1-160:12
+INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:18:1-193:12
+INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:18:1-193:12
+INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:18:1-193:12
package
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:20:5-31
- INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml
- INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:20:5-31
+ INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml
+ INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml
android:versionName
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:22:5-30
- INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml
- INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:22:5-30
+ INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml
+ INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml
xmlns:tools
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:19:5-51
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:19:5-51
xmlns:android
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:18:11-69
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:18:11-69
android:versionCode
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:21:5-28
- INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml
- INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:21:5-28
+ INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml
+ INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml
uses-sdk
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:24:5-44
-INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:24:5-44
-INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:24:5-44
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:24:5-44
+INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:24:5-44
+INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:24:5-44
MERGED from [com.android.databinding:viewbinding:8.0.1] C:\Users\huigenb\.gradle\caches\transforms-3\6b6488381df90380ebf186219d84078c\transformed\viewbinding-8.0.1\AndroidManifest.xml:5:5-44
MERGED from [com.android.databinding:viewbinding:8.0.1] C:\Users\huigenb\.gradle\caches\transforms-3\6b6488381df90380ebf186219d84078c\transformed\viewbinding-8.0.1\AndroidManifest.xml:5:5-44
MERGED from [com.android.support:appcompat-v7:22.2.1] C:\Users\huigenb\.gradle\caches\transforms-3\1dbc0f7261c89eb9b9e5c125a3979522\transformed\appcompat-v7-22.2.1\AndroidManifest.xml:20:5-43
MERGED from [com.android.support:appcompat-v7:22.2.1] C:\Users\huigenb\.gradle\caches\transforms-3\1dbc0f7261c89eb9b9e5c125a3979522\transformed\appcompat-v7-22.2.1\AndroidManifest.xml:20:5-43
MERGED from [com.android.support:support-v4:22.2.1] C:\Users\huigenb\.gradle\caches\transforms-3\3a2b693effadcdf4bb2c42aea3dedf15\transformed\support-v4-22.2.1\AndroidManifest.xml:20:5-43
MERGED from [com.android.support:support-v4:22.2.1] C:\Users\huigenb\.gradle\caches\transforms-3\3a2b693effadcdf4bb2c42aea3dedf15\transformed\support-v4-22.2.1\AndroidManifest.xml:20:5-43
-INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:24:5-44
-INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:24:5-44
+INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:24:5-44
+INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:24:5-44
android:targetSdkVersion
- INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:24:5-44
- INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml
+ INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:24:5-44
+ INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml
android:minSdkVersion
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:24:15-41
- INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml
- INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:24:15-41
+ INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml
+ INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml
uses-permission#android.permission.WRITE_EXTERNAL_STORAGE
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:26:5-81
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:26:5-81
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:26:22-78
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:26:22-78
uses-permission#com.android.launcher.permission.INSTALL_SHORTCUT
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:27:5-88
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:27:5-88
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:27:22-85
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:27:22-85
uses-permission#android.permission.INTERNET
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:28:5-67
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:28:5-67
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:28:22-64
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:28:22-64
uses-permission#android.permission.READ_CONTACTS
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:29:5-72
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:29:5-72
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:29:22-69
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:29:22-69
uses-permission#android.permission.MANAGE_ACCOUNTS
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:30:5-74
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:30:5-74
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:30:22-71
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:30:22-71
uses-permission#android.permission.AUTHENTICATE_ACCOUNTS
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:31:5-80
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:31:5-80
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:31:22-77
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:31:22-77
uses-permission#android.permission.GET_ACCOUNTS
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:32:5-71
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:32:5-71
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:32:22-68
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:32:22-68
uses-permission#android.permission.USE_CREDENTIALS
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:33:5-74
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:33:5-74
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:33:22-71
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:33:22-71
uses-permission#android.permission.RECEIVE_BOOT_COMPLETED
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:34:5-81
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:34:5-81
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:34:22-78
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:34:22-78
application
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:36:5-159:19
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:36:5-192:19
MERGED from [com.android.support:appcompat-v7:22.2.1] C:\Users\huigenb\.gradle\caches\transforms-3\1dbc0f7261c89eb9b9e5c125a3979522\transformed\appcompat-v7-22.2.1\AndroidManifest.xml:22:5-20
MERGED from [com.android.support:appcompat-v7:22.2.1] C:\Users\huigenb\.gradle\caches\transforms-3\1dbc0f7261c89eb9b9e5c125a3979522\transformed\appcompat-v7-22.2.1\AndroidManifest.xml:22:5-20
MERGED from [com.android.support:support-v4:22.2.1] C:\Users\huigenb\.gradle\caches\transforms-3\3a2b693effadcdf4bb2c42aea3dedf15\transformed\support-v4-22.2.1\AndroidManifest.xml:22:5-20
MERGED from [com.android.support:support-v4:22.2.1] C:\Users\huigenb\.gradle\caches\transforms-3\3a2b693effadcdf4bb2c42aea3dedf15\transformed\support-v4-22.2.1\AndroidManifest.xml:22:5-20
android:label
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:38:9-41
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:38:9-41
android:icon
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:37:9-46
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:37:9-46
+activity#net.micode.notes.ui.LoginActivity
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:40:9-49:20
+ android:label
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:43:13-45
+ android:launchMode
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:44:13-43
+ android:windowSoftInputMode
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:46:13-52
+ android:uiOptions
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:47:13-57
+ android:configChanges
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:42:13-74
+ android:theme
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:45:13-45
+ android:name
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:41:13-45
+activity#net.micode.notes.ui.ChangingPassword
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:50:9-57:20
+ android:label
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:53:13-45
+ android:launchMode
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:54:13-43
+ android:windowSoftInputMode
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:56:13-52
+ android:configChanges
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:52:13-74
+ android:theme
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:55:13-45
+ android:name
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:51:13-48
+activity#net.micode.notes.ui.SettingPassword
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:58:9-65:20
+ android:label
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:61:13-45
+ android:launchMode
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:62:13-43
+ android:windowSoftInputMode
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:64:13-52
+ android:configChanges
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:60:13-74
+ android:theme
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:63:13-45
+ android:name
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:59:13-47
+activity#net.micode.notes.ui.DeletingPassword
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:66:9-73:20
+ android:label
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:69:13-45
+ android:launchMode
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:70:13-43
+ android:windowSoftInputMode
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:72:13-52
+ android:configChanges
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:68:13-74
+ android:theme
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:71:13-45
+ android:name
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:67:13-48
activity#net.micode.notes.ui.SplashActivity
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:41:9-51:20
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:74:9-84:20
android:label
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:43:13-58
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:76:13-58
android:configChanges
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:42:13-74
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:75:13-74
android:theme
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:45:13-57
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:78:13-57
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:41:19-52
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:74:19-52
intent-filter#action:name:android.intent.action.MAIN+category:name:android.intent.category.LAUNCHER
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:47:13-50:29
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:80:13-83:29
action#android.intent.action.MAIN
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:48:17-69
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:81:17-69
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:48:25-66
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:81:25-66
category#android.intent.category.LAUNCHER
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:49:17-77
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:82:17-77
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:49:27-74
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:82:27-74
activity#net.micode.notes.ui.NotesListActivity
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:53:9-61:20
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:86:9-94:20
android:label
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:56:13-45
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:89:13-45
android:launchMode
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:57:13-43
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:90:13-43
android:windowSoftInputMode
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:60:13-52
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:93:13-52
android:uiOptions
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:59:13-57
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:92:13-57
android:configChanges
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:55:13-74
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:88:13-74
android:theme
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:58:13-45
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:91:13-45
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:54:13-49
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:87:13-49
activity#net.micode.notes.ui.NoteEditActivity
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:64:9-95:20
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:97:9-128:20
android:launchMode
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:67:13-43
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:100:13-43
android:configChanges
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:66:13-74
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:99:13-74
android:theme
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:68:13-45
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:101:13-45
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:65:13-48
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:98:13-48
intent-filter#action:name:android.intent.action.VIEW+category:name:android.intent.category.DEFAULT+data:mimeType:vnd.android.cursor.item/call_note+data:mimeType:vnd.android.cursor.item/text_note
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:70:13-77:29
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:103:13-110:29
android:scheme
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:70:28-49
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:103:28-49
tools:ignore
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:71:17-47
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:104:17-47
action#android.intent.action.VIEW
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:72:17-69
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:105:17-69
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:72:25-66
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:105:25-66
category#android.intent.category.DEFAULT
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:73:17-76
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:106:17-76
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:73:27-73
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:106:27-73
data
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:75:17-78
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:108:17-78
android:mimeType
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:75:23-75
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:108:23-75
intent-filter#action:name:android.intent.action.INSERT_OR_EDIT+category:name:android.intent.category.DEFAULT+data:mimeType:vnd.android.cursor.item/call_note+data:mimeType:vnd.android.cursor.item/text_note
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:79:13-85:29
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:112:13-118:29
action#android.intent.action.INSERT_OR_EDIT
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:80:17-79
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:113:17-79
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:80:25-76
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:113:25-76
intent-filter#action:name:android.intent.action.SEARCH+category:name:android.intent.category.DEFAULT
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:87:13-90:29
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:120:13-123:29
action#android.intent.action.SEARCH
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:88:17-71
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:121:17-71
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:88:25-68
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:121:25-68
meta-data#android.app.searchable
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:92:13-94:54
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:125:13-127:54
android:resource
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:94:17-51
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:127:17-51
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:93:17-54
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:126:17-54
provider#net.micode.notes.data.NotesProvider
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:97:9-100:43
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:130:9-133:43
android:authorities
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:99:13-47
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:132:13-47
android:multiprocess
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:100:13-40
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:133:13-40
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:98:13-63
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:131:13-63
receiver#net.micode.notes.widget.NoteWidgetProvider_2x
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:102:9-114:20
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:135:9-147:20
android:label
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:104:13-50
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:137:13-50
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:103:13-57
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:136:13-57
intent-filter#action:name:android.appwidget.action.APPWIDGET_DELETED+action:name:android.appwidget.action.APPWIDGET_UPDATE+action:name:android.intent.action.PRIVACY_MODE_CHANGED
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:105:13-109:29
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:138:13-142:29
action#android.appwidget.action.APPWIDGET_UPDATE
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:106:17-84
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:139:17-84
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:106:25-81
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:139:25-81
action#android.appwidget.action.APPWIDGET_DELETED
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:107:17-85
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:140:17-85
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:107:25-82
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:140:25-82
action#android.intent.action.PRIVACY_MODE_CHANGED
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:108:17-85
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:141:17-85
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:108:25-82
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:141:25-82
meta-data#android.appwidget.provider
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:111:13-113:58
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:144:13-146:58
android:resource
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:113:17-55
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:146:17-55
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:112:17-58
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:145:17-58
receiver#net.micode.notes.widget.NoteWidgetProvider_4x
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:115:9-128:20
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:148:9-161:20
android:label
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:117:13-50
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:150:13-50
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:116:13-57
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:149:13-57
receiver#net.micode.notes.ui.AlarmInitReceiver
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:130:9-134:20
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:163:9-167:20
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:130:19-55
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:163:19-55
intent-filter#action:name:android.intent.action.BOOT_COMPLETED
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:131:13-133:29
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:164:13-166:29
action#android.intent.action.BOOT_COMPLETED
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:132:17-79
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:165:17-79
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:132:25-76
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:165:25-76
receiver#net.micode.notes.ui.AlarmReceiver
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:136:9-138:50
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:169:9-171:50
android:process
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:138:13-38
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:171:13-38
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:137:13-61
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:170:13-61
activity#net.micode.notes.ui.AlarmAlertActivity
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:140:9-144:87
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:173:9-177:87
android:label
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:142:13-45
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:175:13-45
android:launchMode
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:143:13-48
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:176:13-48
android:theme
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:144:13-75
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:177:13-75
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:141:13-50
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:174:13-50
activity#net.micode.notes.ui.NotesPreferenceActivity
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:146:9-150:72
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:179:9-183:72
android:label
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:148:13-54
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:181:13-54
android:launchMode
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:149:13-43
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:182:13-43
android:theme
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:150:13-60
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:183:13-60
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:147:13-71
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:180:13-71
service#net.micode.notes.gtask.remote.GTaskSyncService
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:152:9-154:48
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:185:9-187:48
android:exported
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:154:13-37
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:187:13-37
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:153:13-74
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:186:13-74
meta-data#android.app.default_searchable
-ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:156:9-158:52
+ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:189:9-191:52
android:value
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:158:13-49
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:191:13-49
android:name
- ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:157:13-58
+ ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:190:13-58
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/AccountDialogTitleBinding.class.uniqueId25 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/AccountDialogTitleBinding.class.uniqueId25
new file mode 100644
index 00000000..3a9390ab
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/AccountDialogTitleBinding.class.uniqueId25 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivityChangePasswordBinding.class.uniqueId54 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivityChangePasswordBinding.class.uniqueId54
new file mode 100644
index 00000000..8a8cf346
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivityChangePasswordBinding.class.uniqueId54 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivityDeletePasswordBinding.class.uniqueId26 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivityDeletePasswordBinding.class.uniqueId26
new file mode 100644
index 00000000..a4b04c65
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivityDeletePasswordBinding.class.uniqueId26 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivityLoginBinding.class.uniqueId73 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivityLoginBinding.class.uniqueId73
new file mode 100644
index 00000000..b58e5861
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivityLoginBinding.class.uniqueId73 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivitySetLoginpasswordBinding.class.uniqueId38 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivitySetLoginpasswordBinding.class.uniqueId38
new file mode 100644
index 00000000..3d283dd1
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivitySetLoginpasswordBinding.class.uniqueId38 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivitySplashBinding.class.uniqueId44 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivitySplashBinding.class.uniqueId44
new file mode 100644
index 00000000..08a81628
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ActivitySplashBinding.class.uniqueId44 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/AlarmAlertActivity.class.uniqueId57 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/AlarmAlertActivity.class.uniqueId57
new file mode 100644
index 00000000..efad661a
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/AlarmAlertActivity.class.uniqueId57 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ChangingPassword$1.class.uniqueId67 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ChangingPassword$1.class.uniqueId67
new file mode 100644
index 00000000..8860324e
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ChangingPassword$1.class.uniqueId67 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ChangingPassword.class.uniqueId69 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ChangingPassword.class.uniqueId69
new file mode 100644
index 00000000..65306532
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ChangingPassword.class.uniqueId69 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DateTimePicker$1.class.uniqueId36 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DateTimePicker$1.class.uniqueId36
new file mode 100644
index 00000000..4a67c153
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DateTimePicker$1.class.uniqueId36 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DateTimePicker$2.class.uniqueId31 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DateTimePicker$2.class.uniqueId31
new file mode 100644
index 00000000..4c2abf29
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DateTimePicker$2.class.uniqueId31 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DateTimePicker$3.class.uniqueId9 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DateTimePicker$3.class.uniqueId9
new file mode 100644
index 00000000..7dc20f6e
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DateTimePicker$3.class.uniqueId9 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DateTimePicker$4.class.uniqueId45 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DateTimePicker$4.class.uniqueId45
new file mode 100644
index 00000000..816e05c7
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DateTimePicker$4.class.uniqueId45 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DateTimePicker$OnDateTimeChangedListener.class.uniqueId21 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DateTimePicker$OnDateTimeChangedListener.class.uniqueId21
new file mode 100644
index 00000000..255a4e6a
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DateTimePicker$OnDateTimeChangedListener.class.uniqueId21 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DateTimePicker.class.uniqueId2 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DateTimePicker.class.uniqueId2
new file mode 100644
index 00000000..cfc7a651
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DateTimePicker.class.uniqueId2 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DatetimePickerBinding.class.uniqueId50 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DatetimePickerBinding.class.uniqueId50
new file mode 100644
index 00000000..36c50e15
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DatetimePickerBinding.class.uniqueId50 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DeletingPassword$1.class.uniqueId33 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DeletingPassword$1.class.uniqueId33
new file mode 100644
index 00000000..06f4f0b2
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DeletingPassword$1.class.uniqueId33 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DeletingPassword.class.uniqueId7 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DeletingPassword.class.uniqueId7
new file mode 100644
index 00000000..6100dd63
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DeletingPassword.class.uniqueId7 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DropdownMenu$1.class.uniqueId9 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DropdownMenu$1.class.uniqueId9
deleted file mode 100644
index 7c0d343e..00000000
Binary files a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DropdownMenu$1.class.uniqueId9 and /dev/null differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DropdownMenu.class.uniqueId0 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DropdownMenu.class.uniqueId0
deleted file mode 100644
index c7e37cda..00000000
Binary files a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DropdownMenu.class.uniqueId0 and /dev/null differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FolderListItemBinding.class.uniqueId49 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FolderListItemBinding.class.uniqueId49
new file mode 100644
index 00000000..68add32e
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FolderListItemBinding.class.uniqueId49 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FoldersListAdapter$FolderListItem.class.uniqueId5 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FoldersListAdapter$FolderListItem.class.uniqueId5
new file mode 100644
index 00000000..fad34429
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FoldersListAdapter$FolderListItem.class.uniqueId5 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FoldersListAdapter.class.uniqueId76 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FoldersListAdapter.class.uniqueId76
new file mode 100644
index 00000000..023f716f
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/FoldersListAdapter.class.uniqueId76 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GTaskASyncTask$1.class.uniqueId10 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GTaskASyncTask$1.class.uniqueId10
deleted file mode 100644
index 520d1dad..00000000
Binary files a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GTaskASyncTask$1.class.uniqueId10 and /dev/null differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GTaskASyncTask$OnCompleteListener.class.uniqueId7 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GTaskASyncTask$OnCompleteListener.class.uniqueId7
deleted file mode 100644
index f73069cb..00000000
Binary files a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GTaskASyncTask$OnCompleteListener.class.uniqueId7 and /dev/null differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GTaskASyncTask.class.uniqueId11 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GTaskASyncTask.class.uniqueId11
deleted file mode 100644
index dea216da..00000000
Binary files a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GTaskASyncTask.class.uniqueId11 and /dev/null differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/LoginActivity$1.class.uniqueId10 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/LoginActivity$1.class.uniqueId10
new file mode 100644
index 00000000..6d1b2e3e
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/LoginActivity$1.class.uniqueId10 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/LoginActivity.class.uniqueId11 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/LoginActivity.class.uniqueId11
new file mode 100644
index 00000000..22b57229
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/LoginActivity.class.uniqueId11 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$1.class.uniqueId3 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$1.class.uniqueId15
similarity index 85%
rename from src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$1.class.uniqueId3
rename to src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$1.class.uniqueId15
index 60483a32..7dc0003d 100644
Binary files a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$1.class.uniqueId3 and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$1.class.uniqueId15 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$10.class.uniqueId71 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$10.class.uniqueId71
new file mode 100644
index 00000000..8386c47f
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$10.class.uniqueId71 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$11.class.uniqueId6 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$11.class.uniqueId6
new file mode 100644
index 00000000..2f997ae4
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$11.class.uniqueId6 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$12.class.uniqueId29 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$12.class.uniqueId29
new file mode 100644
index 00000000..2b609339
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$12.class.uniqueId29 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$2.class.uniqueId13 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$2.class.uniqueId13
new file mode 100644
index 00000000..228040c3
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$2.class.uniqueId13 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$3.class.uniqueId65 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$3.class.uniqueId65
new file mode 100644
index 00000000..0d7d40a2
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$3.class.uniqueId65 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$4.class.uniqueId46 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$4.class.uniqueId46
new file mode 100644
index 00000000..361820e9
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$4.class.uniqueId46 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$5.class.uniqueId8 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$5.class.uniqueId8
new file mode 100644
index 00000000..f6dec408
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$5.class.uniqueId8 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$6.class.uniqueId75 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$6.class.uniqueId75
new file mode 100644
index 00000000..1a53a8d7
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$6.class.uniqueId75 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$7.class.uniqueId39 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$7.class.uniqueId39
new file mode 100644
index 00000000..c3461cd5
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$7.class.uniqueId39 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$8.class.uniqueId16 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$8.class.uniqueId16
new file mode 100644
index 00000000..611d2120
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$8.class.uniqueId16 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$9.class.uniqueId4 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$9.class.uniqueId4
new file mode 100644
index 00000000..52008006
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$9.class.uniqueId4 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$HeadViewHolder.class.uniqueId16 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$HeadViewHolder.class.uniqueId37
similarity index 84%
rename from src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$HeadViewHolder.class.uniqueId16
rename to src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$HeadViewHolder.class.uniqueId37
index 70110697..4c7a3405 100644
Binary files a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$HeadViewHolder.class.uniqueId16 and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$HeadViewHolder.class.uniqueId37 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity.class.uniqueId14 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity.class.uniqueId14
deleted file mode 100644
index 27851dba..00000000
Binary files a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity.class.uniqueId14 and /dev/null differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity.class.uniqueId17 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity.class.uniqueId17
new file mode 100644
index 00000000..94c3ea25
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity.class.uniqueId17 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditBinding.class.uniqueId20 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditBinding.class.uniqueId20
new file mode 100644
index 00000000..a5d9df49
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditBinding.class.uniqueId20 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditListItemBinding.class.uniqueId62 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditListItemBinding.class.uniqueId62
new file mode 100644
index 00000000..c59db931
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditListItemBinding.class.uniqueId62 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteItemBinding.class.uniqueId52 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteItemBinding.class.uniqueId52
new file mode 100644
index 00000000..24c0fd86
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteItemBinding.class.uniqueId52 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteItemData.class.uniqueId51 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteItemData.class.uniqueId51
new file mode 100644
index 00000000..bde2c0ff
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteItemData.class.uniqueId51 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteListBinding.class.uniqueId35 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteListBinding.class.uniqueId35
new file mode 100644
index 00000000..503e5dff
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteListBinding.class.uniqueId35 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteListDropdownMenuBinding.class.uniqueId55 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteListDropdownMenuBinding.class.uniqueId55
new file mode 100644
index 00000000..7a54cca2
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteListDropdownMenuBinding.class.uniqueId55 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteWidgetProvider.class.uniqueId24 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteWidgetProvider.class.uniqueId24
new file mode 100644
index 00000000..a00281f2
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteWidgetProvider.class.uniqueId24 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$1.class.uniqueId3 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$1.class.uniqueId3
new file mode 100644
index 00000000..0c110ab4
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$1.class.uniqueId3 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$10.class.uniqueId59 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$10.class.uniqueId59
new file mode 100644
index 00000000..01237bdb
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$10.class.uniqueId59 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$2.class.uniqueId58 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$2.class.uniqueId58
new file mode 100644
index 00000000..aee33b6e
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$2.class.uniqueId58 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$3.class.uniqueId40 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$3.class.uniqueId40
new file mode 100644
index 00000000..a4bd5c6d
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$3.class.uniqueId40 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$4.class.uniqueId12 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$4.class.uniqueId12
new file mode 100644
index 00000000..6e1b9287
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$4.class.uniqueId12 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$5.class.uniqueId72 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$5.class.uniqueId72
new file mode 100644
index 00000000..3838d79a
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$5.class.uniqueId72 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$6.class.uniqueId47 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$6.class.uniqueId47
new file mode 100644
index 00000000..fb026aac
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$6.class.uniqueId47 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$7.class.uniqueId19 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$7.class.uniqueId19
new file mode 100644
index 00000000..5cd7b76c
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$7.class.uniqueId19 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$8.class.uniqueId77 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$8.class.uniqueId77
new file mode 100644
index 00000000..5c0b1f34
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$8.class.uniqueId77 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$9.class.uniqueId22 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$9.class.uniqueId22
new file mode 100644
index 00000000..ee83b203
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$9.class.uniqueId22 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$BackgroundQueryHandler.class.uniqueId48 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$BackgroundQueryHandler.class.uniqueId48
new file mode 100644
index 00000000..1cd798e3
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$BackgroundQueryHandler.class.uniqueId48 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$ListEditState.class.uniqueId0 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$ListEditState.class.uniqueId0
new file mode 100644
index 00000000..2edab7b3
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$ListEditState.class.uniqueId0 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$ModeCallback$1.class.uniqueId53 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$ModeCallback$1.class.uniqueId53
new file mode 100644
index 00000000..4d2de7f3
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$ModeCallback$1.class.uniqueId53 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$ModeCallback$2.class.uniqueId74 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$ModeCallback$2.class.uniqueId74
new file mode 100644
index 00000000..e8448a44
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$ModeCallback$2.class.uniqueId74 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$ModeCallback.class.uniqueId60 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$ModeCallback.class.uniqueId60
new file mode 100644
index 00000000..2196ed9b
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$ModeCallback.class.uniqueId60 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$NewNoteOnTouchListener.class.uniqueId41 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$NewNoteOnTouchListener.class.uniqueId41
new file mode 100644
index 00000000..9f08cc23
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$NewNoteOnTouchListener.class.uniqueId41 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$OnListItemClickListener.class.uniqueId70 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$OnListItemClickListener.class.uniqueId70
new file mode 100644
index 00000000..ad0d5059
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity$OnListItemClickListener.class.uniqueId70 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity.class.uniqueId18 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity.class.uniqueId18
new file mode 100644
index 00000000..a6d77fb0
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListActivity.class.uniqueId18 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListItem.class.uniqueId17 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListItem.class.uniqueId17
deleted file mode 100644
index 8777b108..00000000
Binary files a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListItem.class.uniqueId17 and /dev/null differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListItem.class.uniqueId23 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListItem.class.uniqueId23
new file mode 100644
index 00000000..98dc64c5
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListItem.class.uniqueId23 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$1.class.uniqueId61 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$1.class.uniqueId61
new file mode 100644
index 00000000..046edf1b
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$1.class.uniqueId61 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$2.class.uniqueId43 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$2.class.uniqueId43
new file mode 100644
index 00000000..d0e88bba
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$2.class.uniqueId43 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$3.class.uniqueId14 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$3.class.uniqueId14
new file mode 100644
index 00000000..15153eb8
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$3.class.uniqueId14 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$4.class.uniqueId68 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$4.class.uniqueId68
new file mode 100644
index 00000000..3439eb90
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$4.class.uniqueId68 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$5.class.uniqueId42 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$5.class.uniqueId42
new file mode 100644
index 00000000..de07b650
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$5.class.uniqueId42 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$6.class.uniqueId27 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$6.class.uniqueId27
new file mode 100644
index 00000000..55f86ace
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$6.class.uniqueId27 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$7.class.uniqueId1 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$7.class.uniqueId1
new file mode 100644
index 00000000..959e2f99
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$7.class.uniqueId1 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$8.class.uniqueId56 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$8.class.uniqueId56
new file mode 100644
index 00000000..9809acc5
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$8.class.uniqueId56 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$GTaskReceiver.class.uniqueId30 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$GTaskReceiver.class.uniqueId30
new file mode 100644
index 00000000..ce7d2739
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity$GTaskReceiver.class.uniqueId30 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity.class.uniqueId34 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity.class.uniqueId34
new file mode 100644
index 00000000..a31b31cb
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesPreferenceActivity.class.uniqueId34 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesProvider.class.uniqueId1 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesProvider.class.uniqueId1
deleted file mode 100644
index 9103adc4..00000000
Binary files a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesProvider.class.uniqueId1 and /dev/null differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$NoteBgResources.class.uniqueId12 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$NoteBgResources.class.uniqueId12
deleted file mode 100644
index 84e57a4f..00000000
Binary files a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$NoteBgResources.class.uniqueId12 and /dev/null differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$NoteItemBgResources.class.uniqueId13 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$NoteItemBgResources.class.uniqueId13
deleted file mode 100644
index 8805a063..00000000
Binary files a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$NoteItemBgResources.class.uniqueId13 and /dev/null differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$TextAppearanceResources.class.uniqueId6 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$TextAppearanceResources.class.uniqueId6
deleted file mode 100644
index 7f2eb75f..00000000
Binary files a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$TextAppearanceResources.class.uniqueId6 and /dev/null differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$WidgetBgResources.class.uniqueId5 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$WidgetBgResources.class.uniqueId5
deleted file mode 100644
index b4ec3bab..00000000
Binary files a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$WidgetBgResources.class.uniqueId5 and /dev/null differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser.class.uniqueId15 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser.class.uniqueId15
deleted file mode 100644
index f2e1b626..00000000
Binary files a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser.class.uniqueId15 and /dev/null differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/SettingPassword$1.class.uniqueId64 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/SettingPassword$1.class.uniqueId64
new file mode 100644
index 00000000..a1d51c9e
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/SettingPassword$1.class.uniqueId64 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/SettingPassword.class.uniqueId28 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/SettingPassword.class.uniqueId28
new file mode 100644
index 00000000..9855c5b4
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/SettingPassword.class.uniqueId28 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/SettingsHeaderBinding.class.uniqueId66 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/SettingsHeaderBinding.class.uniqueId66
new file mode 100644
index 00000000..5f3f0193
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/SettingsHeaderBinding.class.uniqueId66 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/Widget2xBinding.class.uniqueId32 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/Widget2xBinding.class.uniqueId32
new file mode 100644
index 00000000..4b019c30
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/Widget2xBinding.class.uniqueId32 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/Widget4xBinding.class.uniqueId63 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/Widget4xBinding.class.uniqueId63
new file mode 100644
index 00000000..b3a2901d
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/Widget4xBinding.class.uniqueId63 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/src/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin
index a812275b..68037cb7 100644
Binary files a/src/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin and b/src/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ
diff --git a/src/app/src/main/AndroidManifest.xml b/src/app/src/main/AndroidManifest.xml
index 91cdd8e7..562dcf3e 100644
--- a/src/app/src/main/AndroidManifest.xml
+++ b/src/app/src/main/AndroidManifest.xml
@@ -36,8 +36,41 @@
+
+
-
+
+
+
+
+
+
+
0 ? true : false);
}
diff --git a/src/app/src/main/java/net/micode/notes/ui/ChangingPassword.java b/src/app/src/main/java/net/micode/notes/ui/ChangingPassword.java
new file mode 100644
index 00000000..06ec2571
--- /dev/null
+++ b/src/app/src/main/java/net/micode/notes/ui/ChangingPassword.java
@@ -0,0 +1,77 @@
+/*gaoheng*/
+package net.micode.notes.ui;
+
+import android.app.Activity;
+import android.content.Intent;
+import android.content.SharedPreferences;
+import android.os.Bundle;
+import android.view.View;
+import android.view.WindowManager;
+import android.widget.Button;
+import android.widget.EditText;import android.widget.Toast;
+
+import net.micode.notes.R;
+public class ChangingPassword extends Activity {
+ EditText OldPassword;
+ EditText NewPassword;
+ EditText AckPassword;
+ Button Acknowledged;
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ setContentView(R.layout.activity_change_password);
+ getWindow().setSoftInputMode(
+ WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE
+ | WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);
+ OldPassword=(EditText) findViewById(R.id.old_password);
+ NewPassword=(EditText) findViewById(R.id.new_password);
+ AckPassword=(EditText) findViewById(R.id.ack_password);
+ Acknowledged=(Button)findViewById(R.id.Acknowledged);
+ Acknowledged.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ String old_password = OldPassword.getText().toString();
+ String new_password = NewPassword.getText().toString();
+ String ack_password = AckPassword.getText().toString();
+ SharedPreferences pref=getSharedPreferences("user management",MODE_PRIVATE);
+ String login_password=pref.getString("password","");
+
+ boolean User_boolean = pref.getBoolean("user",false);//获取用户是否设置了密码
+ if(!User_boolean) //User_boolean = false 时, ( 没有设置密码) , 直接跳转到便签主界面
+ {
+ Toast.makeText(ChangingPassword.this, "已经设置过密码",
+ Toast.LENGTH_SHORT).show();
+ }
+
+ if(old_password.equals("")==true || new_password.equals("")==true
+ || ack_password.equals("")==true) {
+ Toast.makeText(ChangingPassword.this, "密码不能为空",
+ Toast.LENGTH_SHORT).show();
+ }else if (new_password.equals(ack_password) == false) {
+ Toast.makeText(ChangingPassword.this, "新建密码与重复密码不匹配, 请重新输入密码", Toast.LENGTH_SHORT).show();
+ AckPassword.setText("");
+ }else if(old_password.equals(login_password) == false){
+ Toast.makeText(ChangingPassword.this, "原有密码错误, 请重新输入 密码", Toast.LENGTH_SHORT).show();
+ OldPassword.setText("");
+ }else if (new_password.equals(ack_password) == true &&
+ old_password.equals(login_password) == true){
+ SharedPreferences.Editor editor=getSharedPreferences("user management", MODE_PRIVATE).edit();
+ editor.putString("password",new_password);
+ editor.apply();
+ Toast.makeText(ChangingPassword.this, "修改密码成功",
+ Toast.LENGTH_SHORT).show();
+ Intent intent=new
+ Intent(ChangingPassword.this,NotesListActivity.class);
+ startActivity(intent);
+ finish();
+ }
+ }
+ });
+ } @
+ Override
+ public void onBackPressed() {
+ Intent intent=new Intent(ChangingPassword.this,NotesListActivity.class);
+ startActivity(intent);
+ finish();
+ }
+}
\ No newline at end of file
diff --git a/src/app/src/main/java/net/micode/notes/ui/DeletingPassword.java b/src/app/src/main/java/net/micode/notes/ui/DeletingPassword.java
new file mode 100644
index 00000000..ed64d7c6
--- /dev/null
+++ b/src/app/src/main/java/net/micode/notes/ui/DeletingPassword.java
@@ -0,0 +1,62 @@
+/*gaoheng*/
+package net.micode.notes.ui;
+
+import android.app.Activity;
+import android.content.Intent;
+import android.content.SharedPreferences;
+import android.os.Bundle;
+import android.view.View;
+import android.view.WindowManager;
+import android.widget.Button;
+import android.widget.EditText;
+import android.widget.Toast;
+
+import net.micode.notes.R;
+public class DeletingPassword extends Activity {
+ EditText Dt_password;
+ Button Acknowledged;
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ setContentView(R.layout.activity_delete_password);
+ getWindow().setSoftInputMode(
+ WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE
+ | WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);
+ Dt_password=(EditText) findViewById(R.id.thepassword);
+ Acknowledged=(Button)findViewById(R.id.Dt_Acknowledged);
+ Acknowledged.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ String text02 = Dt_password.getText().toString();
+ if(text02.equals("")==true)
+ Toast.makeText(DeletingPassword.this, "密码不能为空",
+ Toast.LENGTH_SHORT).show();
+ SharedPreferences pref=getSharedPreferences("user management",MODE_PRIVATE);
+ String password = pref.getString("password","");
+ if(password.equals("")==false&&password.equals(text02)==true){
+ SharedPreferences.Editor editor=getSharedPreferences("user management",
+ MODE_PRIVATE).edit();
+ editor.putBoolean("user",false);//false 表示已经设置登录密码
+ editor.putString("password","");
+ editor.apply();
+ Toast.makeText(DeletingPassword.this, "已删除密码",
+ Toast.LENGTH_SHORT).show();
+ Intent intent=new
+ Intent(DeletingPassword.this,NotesListActivity.class);
+ startActivity(intent);
+ finish();
+ } else{
+ Toast.makeText(DeletingPassword.this, "密码错误",
+ Toast.LENGTH_SHORT).show();
+
+ Dt_password.setText("");//把密码框内输入过的错误密码清空
+ }
+ }
+ });
+ } @
+ Override
+ public void onBackPressed() {Intent intent=new Intent(DeletingPassword.this,NotesListActivity.class);
+ startActivity(intent);
+ finish();
+ }
+}
\ No newline at end of file
diff --git a/src/app/src/main/java/net/micode/notes/ui/LoginActivity.java b/src/app/src/main/java/net/micode/notes/ui/LoginActivity.java
new file mode 100644
index 00000000..c6d7e06e
--- /dev/null
+++ b/src/app/src/main/java/net/micode/notes/ui/LoginActivity.java
@@ -0,0 +1,67 @@
+/*gaoheng*/
+package net.micode.notes.ui;
+
+import android.app.Activity;
+import android.content.Intent;
+import android.content.SharedPreferences;
+import android.os.Bundle;
+import android.view.View;
+import android.view.WindowManager;
+import android.widget.Button;
+import android.widget.EditText;
+import android.widget.Toast;
+
+import net.micode.notes.R;
+
+public class LoginActivity extends Activity {
+
+ EditText lg_password;
+ Button lg_login;
+
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+
+
+
+ SharedPreferences pref = getSharedPreferences("user management", MODE_PRIVATE);
+ boolean userBoolean = pref.getBoolean("user", false); // 获取用户是否设置了密码
+
+ if (!userBoolean) { // userBoolean = false 时(没有设置密码),直接跳转到便签主界面
+ Intent intent = new Intent(LoginActivity.this, NotesListActivity.class);
+ startActivity(intent);
+ finish();
+ }
+
+ setContentView(R.layout.activity_login);
+
+ getWindow().setSoftInputMode(
+ WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE
+ | WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);
+
+ lg_password = (EditText) findViewById(R.id.lg_password);
+ lg_login = (Button) findViewById(R.id.login);
+ lg_login.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ SharedPreferences pref = getSharedPreferences("user management", MODE_PRIVATE);
+ String password = pref.getString("password", "");
+
+ if (!password.equals("") && password.equals(lg_password.getText().toString())) {
+ Intent intent = new Intent(LoginActivity.this, NotesListActivity.class);
+ startActivity(intent);
+ finish();
+ } else {
+ Toast.makeText(LoginActivity.this, "密码错误", Toast.LENGTH_SHORT).show();
+ /*
+ 用来重新登录或者忘记密码的时候更改
+ SharedPreferences.Editor editor = null;
+ editor.putString("password", "1234567");
+ editor.apply();
+ */
+ lg_password.setText(""); // 把密码框内输入过的错误密码清空
+ }
+ }
+ });
+ }
+}
diff --git a/src/app/src/main/java/net/micode/notes/ui/NoteEditActivity.java b/src/app/src/main/java/net/micode/notes/ui/NoteEditActivity.java
index 60632602..267c6dba 100644
--- a/src/app/src/main/java/net/micode/notes/ui/NoteEditActivity.java
+++ b/src/app/src/main/java/net/micode/notes/ui/NoteEditActivity.java
@@ -15,7 +15,10 @@
*/
package net.micode.notes.ui;
-
+/*gaoheng*/
+import android.graphics.Typeface;
+import android.speech.tts.TextToSpeech;
+import android.speech.tts.TextToSpeech.OnInitListener;
import android.app.Activity;
import android.app.AlarmManager;
import android.app.AlertDialog;
@@ -45,12 +48,14 @@ import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.WindowManager;
+import android.widget.Button;
import android.widget.CheckBox;
import android.widget.CompoundButton;
import android.widget.CompoundButton.OnCheckedChangeListener;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.LinearLayout;
+import android.widget.PopupMenu;
import android.widget.TextView;
import android.widget.Toast;
@@ -69,7 +74,10 @@ import net.micode.notes.widget.NoteWidgetProvider_4x;
import java.util.HashMap;
import java.util.HashSet;
+import java.util.Locale;
import java.util.Map;
+import java.util.Objects;
+import java.util.Stack;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
@@ -138,7 +146,7 @@ public class NoteEditActivity extends Activity implements OnClickListener,
private EditText mNoteEditor; //文本操作
private View mNoteEditorPanel;
-
+ private Button mSetType; //设置便签类型按钮
private WorkingNote mWorkingNote; //初始化正在工作便签
private SharedPreferences mSharedPrefs;
@@ -156,8 +164,9 @@ public class NoteEditActivity extends Activity implements OnClickListener,
private String mUserQuery;
private Pattern mPattern;
-
-
+ /*gaoheng*/
+ Stack mChanged = new Stack<>();
+ boolean mIsRvoke ;//把是否已执行撤销的标记设置为 true
private void count(){
@@ -180,22 +189,23 @@ public class NoteEditActivity extends Activity implements OnClickListener,
});
}
-
- @Override
+ private TextToSpeech mTts ;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
- this.setContentView(R.layout.note_edit); //设置背景
+ this.setContentView(R.layout.note_edit);
editText = (EditText) findViewById(R.id.note_edit_view);
textView = (TextView) findViewById(R.id.text_num);
- if (savedInstanceState == null && !initActivityState(getIntent())) { //初始化活动状态
+ if (savedInstanceState == null && !initActivityState(getIntent())) {
finish();
return;
}
- initResources(); //初始化资源
+ initResources();
count();
}
+
+
/**
* Current activity may be killed when the memory is low. Once it is killed, for another time
* user load this activity, we should restore the former state
@@ -381,7 +391,33 @@ protected void onNewIntent(Intent intent) { //接收新消息时
super.onNewIntent(intent);
initActivityState(intent); //更新状态
}
-
+ private void doRevoke(){
+ int size = mChanged.size();//获取当前栈大小
+ AlertDialog.Builder dialog = new AlertDialog.Builder(this);
+ dialog.setTitle(R.string.tips_of_revoke);//设置 title 信息
+ dialog.setCancelable(true);//设置为可取消
+ dialog.setPositiveButton("OK", new DialogInterface.OnClickListener() {//只需
+
+ @Override
+ public void onClick(DialogInterface dialog, int which) {
+ }
+ });
+ mIsRvoke = true;//把是否已执行撤销的标记设置为 true
+ if(size<=1){//如果栈中元素过少, 打印提示信息
+ dialog.setMessage(R.string.have_not_input_anything);
+ dialog.show();
+ return;
+ }
+ else {
+ mNoteEditor.setText((CharSequence) mChanged.elementAt(size-2));
+ mNoteEditor.setSelection(mNoteEditor.length());
+ mChanged.removeElementAt(size-1);//删除元素
+ if(size==2){
+ dialog.setMessage(R.string.can_not_revoke);
+ dialog.show();//显示当前 alertdialog
+ }
+ }
+ }
@Override
protected void onSaveInstanceState(Bundle outState) { //在即将被暂停或销毁时调用
super.onSaveInstanceState(outState);
@@ -444,7 +480,24 @@ private boolean inRangeOfView(View view, MotionEvent ev) { //检查边界
private void initResources() {
// 初始化控件和资源
-
+ mTts = new TextToSpeech(this, new OnInitListener() {
+ @Override
+ /*gaoheng*/
+ public void onInit(int status) {
+ if (status == TextToSpeech.SUCCESS) {
+ //设置首选语言为中文,注意,语言可能是不可用的,结果将指示此
+ int result = mTts.setLanguage(Locale.US);
+ if (result == TextToSpeech.LANG_MISSING_DATA ||
+ result == TextToSpeech.LANG_NOT_SUPPORTED) {
+ //语言数据丢失或不支持该语言。
+ Log.e(TAG, "语言数据丢失或不支持该语言");
+ }
+ } else {
+ // 初始化失败
+ Log.e(TAG, "初始化失败");
+ }
+ }
+ });
// 获取布局中的note_title并赋值给mHeadViewPanel
mHeadViewPanel = findViewById(R.id.note_title);
@@ -461,6 +514,15 @@ private void initResources() {
// 设置ibSetBgColor的点击事件监听器为当前Activity(this)
mNoteHeaderHolder.ibSetBgColor.setOnClickListener(this);
+ mSetType = (Button) findViewById(R.id.btn_SetType); //设置一个按钮表示设置便签类型
+ if (Objects.equals(mWorkingNote.getNoteType(), "0")) { //如果当前便签无类型
+ mSetType.setText("SetType"); //将文本设置为SetType
+ }
+ else {
+ mSetType.setText(mWorkingNote.getNoteType()); //有类型则设置为当前类型
+ }
+ mSetType.setOnClickListener(this);
+
// 获取布局中的note_edit_view并赋值给mNoteEditor
mNoteEditor = (EditText) findViewById(R.id.note_edit_view);
// 获取布局中的sv_note_edit并赋值给mNoteEditorPanel
@@ -494,7 +556,22 @@ private void initResources() {
if(mFontSizeId >= TextAppearanceResources.getResourcesSize()) {
mFontSizeId = ResourceParser.BG_DEFAULT_FONT_SIZE;
}
-
+ mNoteEditor.addTextChangedListener(new TextWatcher() {
+ @Override
+ public void beforeTextChanged(CharSequence s, int start, int count, int after) {
+ }
+ @Override
+ public void onTextChanged(CharSequence s, int start, int before, int count) {
+ }
+ @Override
+ public void afterTextChanged(Editable s) {//文本更改后
+ if(!mIsRvoke) {
+ saveMyChanged();
+ }else {
+ mIsRvoke = false;
+ }
+ }
+ });
// 获取布局中的note_edit_list并赋值给mEditTextList
mEditTextList = (LinearLayout) findViewById(R.id.note_edit_list);
}
@@ -554,6 +631,8 @@ public void onClick(View v) {
mWorkingNote.setBgColorId(sBgSelectorBtnsMap.get(id));
// 隐藏背景颜色选择器
mNoteBgColorSelector.setVisibility(View.GONE);
+ }else if (id == R.id.btn_SetType) { //如果点击的是设置便签类型的按钮
+ showTypeMenu(v); //展示便签类型菜单
} else if (sFontSizeBtnsMap.containsKey(id)) {
// 如果点击的是字体大小选择器中的一个按钮
// 隐藏当前字体大小的选择项
@@ -579,7 +658,49 @@ public void onClick(View v) {
mFontSizeSelector.setVisibility(View.GONE);
}
}
-
+ private static final int MAX_TIME_OF_RVOKE_TIME=100;
+ private int MAX_OF_RVOKE_TIME=100;
+ private void saveMyChanged(){
+ SpannableString text = new SpannableString(mNoteEditor.getText());//用 getText
+ if(mChanged.size()>=MAX_TIME_OF_RVOKE_TIME){//如果栈中的数据大于最大撤销次数,
+ mChanged.removeElementAt(0);
+ } mChanged.add(String.valueOf(text));//然后把本次修改的内容加入栈中
+ }
+ private void showTypeMenu(View view) { //展示选择便签类型的菜单
+ // View当前PopupMenu显示的相对View的位置
+ PopupMenu popupMenu = new PopupMenu(this, view);
+ // menu布局
+ popupMenu.getMenuInflater().inflate(R.menu.note_type, popupMenu.getMenu()); //获取menu中的xml资源
+ // menu的item点击事件
+ popupMenu.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
+ @Override
+ public boolean onMenuItemClick(MenuItem item) {
+ Toast.makeText(getApplicationContext(), item.getTitle(), Toast.LENGTH_SHORT).show();
+ if(item.getItemId() == R.id.person) { //若选择的person
+ mWorkingNote.setNoteType("个人");
+ mWorkingNote.setBgColorId(ResourceParser.BLUE);//顺便更换对应背景颜色
+ mSetType.setText("个人"); //设置按钮文本
+ }else if (item.getItemId() == R.id.family) {
+ mWorkingNote.setNoteType("家庭");
+ mWorkingNote.setBgColorId(ResourceParser.YELLOW);
+ mSetType.setText("家庭");
+ }else if (item.getItemId() == R.id.work) {
+ mWorkingNote.setNoteType("工作");
+ mWorkingNote.setBgColorId(ResourceParser.GREEN);
+ mSetType.setText("工作");
+ }
+ return false;
+ }
+ });
+ // PopupMenu关闭事件
+ popupMenu.setOnDismissListener(new PopupMenu.OnDismissListener() {
+ @Override
+ public void onDismiss(PopupMenu menu) {
+ Toast.makeText(getApplicationContext(), "关闭PopupMenu", Toast.LENGTH_SHORT).show();
+ }
+ });
+ popupMenu.show();
+ }
@Override
public void onBackPressed() {
// 当返回按钮按下时
@@ -705,8 +826,75 @@ public boolean onOptionsItemSelected(MenuItem item) { //响应用户在菜单中
// 清除工作笔记的提醒日期和提醒标志
mWorkingNote.setAlertDate(0, false);
}
+ /*gaoheng*/
+ else if (itemId == R.id.menu_read_contain) {
+ testToSpeech();
+ } else if (itemId == R.id.menu_change_font) {
+ changeFont();
+ }
+ else if (itemId == R.id.menu_revoke) {
+ doRevoke();
+ }
+
return true;
}
+ /*gaoheng*/
+ private void testToSpeech(){
+ mTts.speak(mNoteEditor.getText().toString(),TextToSpeech.QUEUE_FLUSH,null);
+
+ }
+ /*gaoheng*/
+ //弹出单选对话框选择不同字体
+ public void changeFont() {
+ final String[] items = {"普通", "非衬线", "衬线", "等宽", "简体"};
+ AlertDialog.Builder alertBuilder = new AlertDialog.Builder(this);
+ alertBuilder.setTitle("更换字体");
+ alertBuilder.setSingleChoiceItems(items, 0, new DialogInterface.OnClickListener() {
+ @Override
+ public void onClick(DialogInterface dialogInterface, int i) {
+ switch (i) {
+ case 0:
+ mNoteEditor.setTypeface(Typeface.DEFAULT);
+ break;
+ case 1:
+ mNoteEditor.setTypeface(Typeface.SANS_SERIF);
+ break;
+ case 2:
+ mNoteEditor.setTypeface(Typeface.SERIF);
+ break;
+ case 3:
+ mNoteEditor.setTypeface(Typeface.MONOSPACE);
+ break;
+ case 4:
+ Typeface typeface0 = Typeface.createFromAsset(getAssets(), "main/assets/font/simsunb.ttf");
+ mNoteEditor.setTypeface(typeface0);
+ break;
+ }
+ Toast.makeText(NoteEditActivity.this, items[i],
+ Toast.LENGTH_SHORT).show();
+ }
+ });
+
+ alertBuilder.setPositiveButton("确定", new DialogInterface.OnClickListener() {
+ @Override
+ public void onClick(DialogInterface dialogInterface, int i) {
+ dialogInterface.dismiss();
+ }
+ });
+
+ alertBuilder.setNegativeButton("取消", new DialogInterface.OnClickListener() {
+ @Override
+ public void onClick(DialogInterface dialogInterface, int i) {
+ dialogInterface.dismiss();
+ }
+ });
+
+ AlertDialog alertDialog = alertBuilder.create();
+ alertDialog.show();
+ }
+
+
+
private void setReminder() {
/*
diff --git a/src/app/src/main/java/net/micode/notes/ui/NoteItemData.java b/src/app/src/main/java/net/micode/notes/ui/NoteItemData.java
index 0f5a8782..ad49c597 100644
--- a/src/app/src/main/java/net/micode/notes/ui/NoteItemData.java
+++ b/src/app/src/main/java/net/micode/notes/ui/NoteItemData.java
@@ -40,6 +40,7 @@ public class NoteItemData {
NoteColumns.TYPE,
NoteColumns.WIDGET_ID,
NoteColumns.WIDGET_TYPE,
+ NoteColumns.noteType, //加入查询便签类型
};
private static final int ID_COLUMN = 0;
@@ -54,6 +55,7 @@ public class NoteItemData {
private static final int TYPE_COLUMN = 9;
private static final int WIDGET_ID_COLUMN = 10;
private static final int WIDGET_TYPE_COLUMN = 11;
+ private static final int noteType_COLUMN = 12; //新增便签类型列
private long mId;
private long mAlertDate;
@@ -67,6 +69,7 @@ public class NoteItemData {
private int mType;
private int mWidgetId;
private int mWidgetType;
+ private String mNoteType; //便签类型
private String mName;
private String mPhoneNumber;
@@ -92,6 +95,8 @@ public class NoteItemData {
mWidgetId = cursor.getInt(WIDGET_ID_COLUMN);
mWidgetType = cursor.getInt(WIDGET_TYPE_COLUMN);
+ mNoteType= cursor.getString(noteType_COLUMN); //将查询到的便签类型返回
+
mPhoneNumber = "";
if (mParentId == Notes.ID_CALL_RECORD_FOLDER) {
mPhoneNumber = DataUtils.getCallNumberByNoteId(context.getContentResolver(), mId);
@@ -221,4 +226,8 @@ public class NoteItemData {
public static int getNoteType(Cursor cursor) {
return cursor.getInt(TYPE_COLUMN);
}
+
+ public String getmNoteType() { //返回当前便签类型
+ return mNoteType;
+ }
}
diff --git a/src/app/src/main/java/net/micode/notes/ui/NotesListActivity.java b/src/app/src/main/java/net/micode/notes/ui/NotesListActivity.java
index 6c00ca8e..3a5ba5a1 100644
--- a/src/app/src/main/java/net/micode/notes/ui/NotesListActivity.java
+++ b/src/app/src/main/java/net/micode/notes/ui/NotesListActivity.java
@@ -123,15 +123,25 @@ public class NotesListActivity extends Activity implements OnClickListener, OnIt
public static final int NOTES_LISTVIEW_SCROLL_RATE = 30;
+
private NoteItemData mFocusNoteDataItem;
+ int time_mode=1;
+ private String mNowType=null; //当前列表界面筛选的便签类型
- private static final String NORMAL_SELECTION = NoteColumns.PARENT_ID + "=?";
+ private static final String NORMAL_SELECTION = NoteColumns.PARENT_ID + "=?" ;
private static final String ROOT_FOLDER_SELECTION = "(" + NoteColumns.TYPE + "<>"
+ Notes.TYPE_SYSTEM + " AND " + NoteColumns.PARENT_ID + "=?)" + " OR ("
+ NoteColumns.ID + "=" + Notes.ID_CALL_RECORD_FOLDER + " AND "
+ NoteColumns.NOTES_COUNT + ">0)";
+ private static final String NORMAL_TYPE_SELECTION = "(" + NoteColumns.PARENT_ID + "=?)" +"AND"+"("+ NoteColumns.noteType + "=?)"; //加入类型筛选后的选择器
+
+ private static final String ROOT_FOLDER_TYPE_SELECTION = "((" + NoteColumns.TYPE + "<>" //加入类型筛选后的选择器
+ + Notes.TYPE_SYSTEM + " AND " + NoteColumns.PARENT_ID + "=?)" + " OR ("
+ + NoteColumns.ID + "=" + Notes.ID_CALL_RECORD_FOLDER + " AND "
+ + NoteColumns.NOTES_COUNT + ">0))" + "AND (" + NoteColumns.noteType + "=?)";
+
private final static int REQUEST_CODE_OPEN_NODE = 102;
private final static int REQUEST_CODE_NEW_NODE = 103;
@@ -139,6 +149,7 @@ public class NotesListActivity extends Activity implements OnClickListener, OnIt
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.note_list);
+ getWindow().setBackgroundDrawableResource(R.drawable.daybackground); //初始化为亮背景
initResources();
/**
@@ -222,7 +233,7 @@ public class NotesListActivity extends Activity implements OnClickListener, OnIt
@Override
protected void onStart() {
super.onStart();
- startAsyncNotesListQuery(); // 在活动启动时开始异步笔记列表查询
+ startAsyncNotesListQuery(mNowType); // 在活动启动时开始异步笔记列表查询
}
/**
@@ -432,15 +443,26 @@ private class ModeCallback implements ListView.MultiChoiceModeListener, OnMenuIt
}
};
- private void startAsyncNotesListQuery() {
- String selection = (mCurrentFolderId == Notes.ID_ROOT_FOLDER) ? ROOT_FOLDER_SELECTION
- : NORMAL_SELECTION;
-
- // 开始异步查询数据库
- mBackgroundQueryHandler.startQuery(FOLDER_NOTE_LIST_QUERY_TOKEN, null,
- Notes.CONTENT_NOTE_URI, NoteItemData.PROJECTION, selection, new String[] {
- String.valueOf(mCurrentFolderId)
- }, NoteColumns.TYPE + " DESC," + NoteColumns.MODIFIED_DATE + " DESC");
+ //查询笔记列表,修改加入便签类型参数,依据类型参数筛选显示的便签
+ private void startAsyncNotesListQuery(String type) {
+ //String type="个人";
+ if (type==null) { //类型为null表示无筛选条件,显示全部类型的便签,使用原来的选择器
+ String selection = (mCurrentFolderId == Notes.ID_ROOT_FOLDER) ? ROOT_FOLDER_SELECTION //文件夹id为根文件夹,则使用root_select否则normal_select
+ : NORMAL_SELECTION;
+ mBackgroundQueryHandler.startQuery(FOLDER_NOTE_LIST_QUERY_TOKEN, null,
+ Notes.CONTENT_NOTE_URI, NoteItemData.PROJECTION, selection, new String[] {
+ String.valueOf(mCurrentFolderId)
+ }, NoteColumns.TYPE + " DESC," + NoteColumns.MODIFIED_DATE + " DESC");
+ }
+ else { //加入便签筛选条件后使用新的选择器
+ String selection = (mCurrentFolderId == Notes.ID_ROOT_FOLDER) ? ROOT_FOLDER_TYPE_SELECTION //文件夹id为根文件夹,则使用root_select否则normal_select
+ : NORMAL_TYPE_SELECTION;
+ mBackgroundQueryHandler.startQuery(FOLDER_NOTE_LIST_QUERY_TOKEN, null,
+ Notes.CONTENT_NOTE_URI, NoteItemData.PROJECTION, selection, new String[] {
+ String.valueOf(mCurrentFolderId),type
+ }, NoteColumns.TYPE + " DESC," + NoteColumns.MODIFIED_DATE + " DESC");
+ }
+
}
// 后台异步查询处理器
@@ -606,7 +628,7 @@ private void batchDelete() {
private void openFolder(NoteItemData data) {
mCurrentFolderId = data.getId();
- startAsyncNotesListQuery();
+ startAsyncNotesListQuery(mNowType);
if (data.getId() == Notes.ID_CALL_RECORD_FOLDER) {
mState = ListEditState.CALL_RECORD_FOLDER;
mAddNewNote.setVisibility(View.GONE);
@@ -748,7 +770,7 @@ public void onBackPressed() {
// 如果当前状态为子文件夹列表状态
mCurrentFolderId = Notes.ID_ROOT_FOLDER;
mState = ListEditState.NOTE_LIST;
- startAsyncNotesListQuery();
+ startAsyncNotesListQuery(mNowType);
mTitleBar.setVisibility(View.GONE);
break;
case CALL_RECORD_FOLDER:
@@ -757,7 +779,7 @@ public void onBackPressed() {
mState = ListEditState.NOTE_LIST;
mAddNewNote.setVisibility(View.VISIBLE);
mTitleBar.setVisibility(View.GONE);
- startAsyncNotesListQuery();
+ startAsyncNotesListQuery(mNowType);
break;
case NOTE_LIST:
// 如果当前状态为笔记列表状态,则调用父类的返回键处理方法
@@ -863,6 +885,11 @@ private final OnCreateContextMenuListener mFolderOnCreateContextMenuListener = n
} else {
Log.e(TAG, "Wrong state:" + mState);
}
+ if (time_mode==1){
+ menu.findItem(R.id.menu_DayMood).setVisible(false);
+ }else {
+ menu.findItem(R.id.menu_NightMood).setVisible(false);
+ }
return true;
}
@@ -917,10 +944,74 @@ private final OnCreateContextMenuListener mFolderOnCreateContextMenuListener = n
createNewNote();
} else if (itemId == R.id.menu_search) {
onSearchRequested();
+ } else if (itemId == R.id.menu_sort) { //新增整理功能
+ showSingleChoiceDialog();
+ }else if (itemId == R.id.menu_login) {
+ startSetingPassword();
+ }
+ else if (itemId == R.id.menu_delete_password) {
+ deletePassword();
+ }
+ else if (itemId == R.id.menu_change_password) {
+ changePassword();
+ } else if (itemId ==R.id.menu_DayMood) {
+ time_mode=1;
+ getWindow().setBackgroundDrawableResource((R.drawable.daybackground));
+ } else if (itemId ==R.id.menu_NightMood) {
+ time_mode=0;
+ getWindow().setBackgroundDrawableResource((R.drawable.nightbackground));
}
return true;
}
+ /*gaoheng*/
+ private void startSetingPassword() {
+ Intent intent = new Intent(this, SettingPassword.class);
+ startActivity(intent);
+ }
+ /*gaoheng*/
+ private void deletePassword() {
+ Intent intent = new Intent(this, DeletingPassword.class);
+ startActivity(intent);
+
+ }
+ /*gaoheng*/
+ private void changePassword() {
+ Intent intent = new Intent(this, ChangingPassword.class);
+ startActivity(intent);
+
+ }
+ public void showSingleChoiceDialog() { //打开单选项对话框
+ AlertDialog.Builder builder = new AlertDialog.Builder(this);
+ builder.setTitle("显示笔记类别");
+
+ // 单选选项列表
+ final CharSequence[] choices = {"个人", "家庭", "工作","无类型","全部"};
+ int checkedItem = -1; // 这代表没有项目默认选中
+
+ builder.setItems(choices, new DialogInterface.OnClickListener() {
+ @Override
+ public void onClick(DialogInterface dialog, int which) { //依据不同选项设置当前的筛选类型
+ if(which==0){
+ mNowType="个人";
+ } else if (which ==1) {
+ mNowType="家庭";
+ } else if (which ==2) {
+ mNowType="工作";
+ } else if (which ==3) {
+ mNowType="0";
+ } else if (which ==4) {
+ mNowType=null;
+ }
+
+ startAsyncNotesListQuery(mNowType); //选择后进行一次筛选显示
+ dialog.dismiss(); //在筛选后直接关闭
+ }
+ });
+
+ AlertDialog dialog = builder.create();
+ dialog.show();
+ }
@Override
public boolean onSearchRequested() {
/*
diff --git a/src/app/src/main/java/net/micode/notes/ui/NotesListItem.java b/src/app/src/main/java/net/micode/notes/ui/NotesListItem.java
index 369c9880..eb68a4c3 100644
--- a/src/app/src/main/java/net/micode/notes/ui/NotesListItem.java
+++ b/src/app/src/main/java/net/micode/notes/ui/NotesListItem.java
@@ -29,11 +29,14 @@ import net.micode.notes.data.Notes;
import net.micode.notes.tool.DataUtils;
import net.micode.notes.tool.ResourceParser.NoteItemBgResources;
+import java.util.Objects;
+
public class NotesListItem extends LinearLayout {
private ImageView mAlert;
private TextView mTitle;
private TextView mTime;
+ private TextView mType; //类型文本
private TextView mCallName;
private NoteItemData mItemData;
private CheckBox mCheckBox;
@@ -44,6 +47,7 @@ public class NotesListItem extends LinearLayout {
mAlert = (ImageView) findViewById(R.id.iv_alert_icon);
mTitle = (TextView) findViewById(R.id.tv_title);
mTime = (TextView) findViewById(R.id.tv_time);
+ mType = (TextView) findViewById(R.id.tv_type); //获取类型文本
mCallName = (TextView) findViewById(R.id.tv_name);
mCheckBox = (CheckBox) findViewById(android.R.id.checkbox);
}
@@ -100,7 +104,14 @@ public class NotesListItem extends LinearLayout {
// 设置时间文本为相对时间格式
mTime.setText(DateUtils.getRelativeTimeSpanString(data.getModifiedDate()));
-
+
+
+ if (Objects.equals(data.getmNoteType(), "0")) { //若便签没有设置类型
+ mType.setText(""); //则不显示类别,即字符串mType为空
+ }
+ else {
+ mType.setText(data.getmNoteType()); //否则设置为当前的便签类型
+ }
setBackground(data); // 设置背景
}
diff --git a/src/app/src/main/java/net/micode/notes/ui/SettingPassword.java b/src/app/src/main/java/net/micode/notes/ui/SettingPassword.java
new file mode 100644
index 00000000..c642c530
--- /dev/null
+++ b/src/app/src/main/java/net/micode/notes/ui/SettingPassword.java
@@ -0,0 +1,70 @@
+/*gaoheng*/
+package net.micode.notes.ui;
+
+import android.app.Activity;
+import android.content.Intent;
+import android.content.SharedPreferences;
+import android.os.Bundle;
+import android.util.Log;
+import android.view.View;
+import android.view.WindowManager;
+import android.widget.Button;
+import android.widget.EditText;
+import android.widget.Toast;
+
+import net.micode.notes.R;
+public class SettingPassword extends Activity {
+ EditText password;
+ EditText password_ack;
+ Button acknowledge;
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ setContentView(R.layout.activity_set_loginpassword);
+ getWindow().setSoftInputMode(
+ WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE
+ | WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);
+ password=(EditText) findViewById(R.id.password);
+ password_ack=(EditText) findViewById(R.id.password_ack);
+ acknowledge=(Button)findViewById(R.id.acknowledge);
+ acknowledge.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ SharedPreferences pref=getSharedPreferences("user management",MODE_PRIVATE);
+ boolean User_boolean = pref.getBoolean("user",false);//获取用户是否设置了密码
+ if(User_boolean) //User_boolean = false 时, ( 没有设置密码) , 直接跳转到便签主界面
+ {
+ Toast.makeText(SettingPassword.this, "已经设置过密码",
+ Toast.LENGTH_SHORT).show();
+ }
+ String text02 = password.getText().toString();
+ String text03 = password_ack.getText().toString();
+ if(text02.equals("")==true) {Toast.makeText(SettingPassword.this, "密码不能为空",
+ Toast.LENGTH_SHORT).show();
+ }else if (text02.equals(text03) == false) {
+ Toast.makeText(SettingPassword.this, "密码不匹配, 请重新输入密码 ", Toast.LENGTH_SHORT).show();
+ password_ack.setText("");
+ }else if (text02.equals(text03) == true){
+ SharedPreferences.Editor editor=getSharedPreferences("user management",
+ MODE_PRIVATE).edit();
+ editor.putBoolean("user",true);//true 表示已经设置登录密码
+ editor.putString("password",text02);
+ editor.apply();
+ Log.d("RegisterLoginPassword","password is "+text02);
+ Toast.makeText(SettingPassword.this, "设置密码成功",
+ Toast.LENGTH_SHORT).show();
+ Intent intent=new
+ Intent(SettingPassword.this,NotesListActivity.class);
+ startActivity(intent);
+ finish();
+ }
+ }
+ });
+ } @
+ Override
+ public void onBackPressed() {
+ Intent intent=new Intent(SettingPassword.this,NotesListActivity.class);
+ startActivity(intent);
+ finish();
+ }
+}
\ No newline at end of file
diff --git a/src/app/src/main/java/net/micode/notes/ui/SplashActivity.java b/src/app/src/main/java/net/micode/notes/ui/SplashActivity.java
index 175939ba..78b99b92 100644
--- a/src/app/src/main/java/net/micode/notes/ui/SplashActivity.java
+++ b/src/app/src/main/java/net/micode/notes/ui/SplashActivity.java
@@ -20,6 +20,9 @@ public class SplashActivity extends Activity {
public void run() {
startActivity(new Intent(SplashActivity.this,NotesListActivity.class));
finish();
+ Intent intent = new Intent(SplashActivity.this, LoginActivity.class);
+ startActivity(intent);
+ finish();
}
},5000);
}
diff --git a/src/app/src/main/res/drawable-hdpi/daybackground.webp b/src/app/src/main/res/drawable-hdpi/daybackground.webp
new file mode 100644
index 00000000..35caf955
Binary files /dev/null and b/src/app/src/main/res/drawable-hdpi/daybackground.webp differ
diff --git a/src/app/src/main/res/drawable-hdpi/nightbackground.webp b/src/app/src/main/res/drawable-hdpi/nightbackground.webp
new file mode 100644
index 00000000..61e0c1d5
Binary files /dev/null and b/src/app/src/main/res/drawable-hdpi/nightbackground.webp differ
diff --git a/src/app/src/main/res/layout/activity_change_password.xml b/src/app/src/main/res/layout/activity_change_password.xml
new file mode 100644
index 00000000..e0f7d0f3
--- /dev/null
+++ b/src/app/src/main/res/layout/activity_change_password.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/src/main/res/layout/activity_delete_password.xml b/src/app/src/main/res/layout/activity_delete_password.xml
new file mode 100644
index 00000000..552853fc
--- /dev/null
+++ b/src/app/src/main/res/layout/activity_delete_password.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/src/main/res/layout/activity_login.xml b/src/app/src/main/res/layout/activity_login.xml
new file mode 100644
index 00000000..a1e68698
--- /dev/null
+++ b/src/app/src/main/res/layout/activity_login.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/src/main/res/layout/activity_set_loginpassword.xml b/src/app/src/main/res/layout/activity_set_loginpassword.xml
new file mode 100644
index 00000000..46bdca9b
--- /dev/null
+++ b/src/app/src/main/res/layout/activity_set_loginpassword.xml
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/src/main/res/layout/note_edit.xml b/src/app/src/main/res/layout/note_edit.xml
index 1b3eca8e..7e310911 100644
--- a/src/app/src/main/res/layout/note_edit.xml
+++ b/src/app/src/main/res/layout/note_edit.xml
@@ -64,6 +64,14 @@
android:layout_marginRight="8dip"
android:textAppearance="@style/TextAppearanceSecondaryItem" />
+
+
+
+
+ android:layout_height="fill_parent">
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/src/main/res/menu/note_list.xml b/src/app/src/main/res/menu/note_list.xml
index 42ea7363..889d8f4b 100644
--- a/src/app/src/main/res/menu/note_list.xml
+++ b/src/app/src/main/res/menu/note_list.xml
@@ -36,4 +36,27 @@
+
+
+
+
+
+
+
+
+
diff --git a/src/app/src/main/res/menu/note_type.xml b/src/app/src/main/res/menu/note_type.xml
new file mode 100644
index 00000000..1bcc5dea
--- /dev/null
+++ b/src/app/src/main/res/menu/note_type.xml
@@ -0,0 +1,12 @@
+
+
\ No newline at end of file
diff --git a/src/app/src/main/res/values-zh-rCN/strings.xml b/src/app/src/main/res/values-zh-rCN/strings.xml
index 09f75ed9..c2282981 100644
--- a/src/app/src/main/res/values-zh-rCN/strings.xml
+++ b/src/app/src/main/res/values-zh-rCN/strings.xml
@@ -36,6 +36,10 @@
浏览网页
打开地图
+ 撤销
+ 提示
+ 空文本
+ 未输入内容
新建文件夹
导出文本
同步
@@ -119,6 +123,9 @@
便签
设置
取消
+
+ 便签类型
+ 便签整理
- %1$s 条符合“%2$s”的搜索结果
diff --git a/src/app/src/main/res/values/strings.xml b/src/app/src/main/res/values/strings.xml
index 82a18622..55e21060 100644
--- a/src/app/src/main/res/values/strings.xml
+++ b/src/app/src/main/res/values/strings.xml
@@ -16,6 +16,16 @@
-->
+
+ revoke
+ Tips
+ empty
+ You haven not input anything
+ read contain
+ setting password
+ delete password
+ change password
+ change font
Notes
Notes 2x2
Notes 4x4
@@ -115,6 +125,9 @@
%1$s has been set as the sync account
New note background color random
+ SetType
+ Sort
+
Delete
Call notes
Input name
@@ -134,5 +147,4 @@
SplashActivity
Dummy Button
寒假快乐!
-
diff --git a/src/res/layout/activity_change_password.xml b/src/res/layout/activity_change_password.xml
new file mode 100644
index 00000000..e0f7d0f3
--- /dev/null
+++ b/src/res/layout/activity_change_password.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/res/layout/activity_delete_password.xml b/src/res/layout/activity_delete_password.xml
new file mode 100644
index 00000000..552853fc
--- /dev/null
+++ b/src/res/layout/activity_delete_password.xml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/res/layout/activity_login.xml b/src/res/layout/activity_login.xml
new file mode 100644
index 00000000..a1e68698
--- /dev/null
+++ b/src/res/layout/activity_login.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/res/layout/activity_set_loginpassword.xml b/src/res/layout/activity_set_loginpassword.xml
new file mode 100644
index 00000000..46bdca9b
--- /dev/null
+++ b/src/res/layout/activity_set_loginpassword.xml
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/res/menu/note_edit.xml b/src/res/menu/note_edit.xml
index c34e8fdb..9bcfd8c8 100644
--- a/src/res/menu/note_edit.xml
+++ b/src/res/menu/note_edit.xml
@@ -44,7 +44,10 @@
-
+
+
diff --git a/src/res/menu/note_list.xml b/src/res/menu/note_list.xml
index 61cdd73c..3fcc7a01 100644
--- a/src/res/menu/note_list.xml
+++ b/src/res/menu/note_list.xml
@@ -35,4 +35,14 @@
+
+
+
+
diff --git a/src/res/values-zh-rCN/strings.xml b/src/res/values-zh-rCN/strings.xml
index 9cac4f02..3624acca 100644
--- a/src/res/values-zh-rCN/strings.xml
+++ b/src/res/values-zh-rCN/strings.xml
@@ -16,6 +16,12 @@
-->
+
+ 朗读
+ 设置密码
+ 删除密码
+ 更换密码
+ 更换字体
便签
便签2x2
便签4x4
diff --git a/src/res/values/strings.xml b/src/res/values/strings.xml
index 947a8bc9..b55c48a0 100644
--- a/src/res/values/strings.xml
+++ b/src/res/values/strings.xml
@@ -16,6 +16,12 @@
-->
+
+ read contain
+ setting password
+ delete password
+ change password
+ change font
Notes
Notes 2x2
Notes 4x4
diff --git a/src/src/net/micode/notes/data/Notes.java b/src/src/net/micode/notes/data/Notes.java
index 8b91a0dc..87b12fb1 100644
--- a/src/src/net/micode/notes/data/Notes.java
+++ b/src/src/net/micode/notes/data/Notes.java
@@ -166,6 +166,7 @@ public class Notes {
* Type : INTEGER (long)
*/
public static final String VERSION = "version";
+ public static final String noteType= "noteType";
}
public interface DataColumns {
diff --git a/src/src/net/micode/notes/data/NotesDatabaseHelper.java b/src/src/net/micode/notes/data/NotesDatabaseHelper.java
index c7d668e7..5db8fcca 100644
--- a/src/src/net/micode/notes/data/NotesDatabaseHelper.java
+++ b/src/src/net/micode/notes/data/NotesDatabaseHelper.java
@@ -30,7 +30,7 @@ import net.micode.notes.data.Notes.NoteColumns;
public class NotesDatabaseHelper extends SQLiteOpenHelper {
private static final String DB_NAME = "note.db";
- private static final int DB_VERSION = 4;
+ private static final int DB_VERSION = 5;
public interface TABLE {
public static final String NOTE = "note";
@@ -60,7 +60,8 @@ public class NotesDatabaseHelper extends SQLiteOpenHelper {
NoteColumns.LOCAL_MODIFIED + " INTEGER NOT NULL DEFAULT 0," +
NoteColumns.ORIGIN_PARENT_ID + " INTEGER NOT NULL DEFAULT 0," +
NoteColumns.GTASK_ID + " TEXT NOT NULL DEFAULT ''," +
- NoteColumns.VERSION + " INTEGER NOT NULL DEFAULT 0" +
+ NoteColumns.VERSION + " INTEGER NOT NULL DEFAULT 0," +
+ NoteColumns.noteType + " INTEGER NOT NULL DEFAULT 0" +
")";
private static final String CREATE_DATA_TABLE_SQL =
@@ -322,6 +323,12 @@ public class NotesDatabaseHelper extends SQLiteOpenHelper {
oldVersion++;
}
+ if (oldVersion == 4) {
+ System.out.println("444");
+ upgradeToV5(db); //更新数据库,加入noteType列
+ oldVersion++;
+ }
+
if (reCreateTriggers) {
reCreateNoteTableTriggers(db);
reCreateDataTableTriggers(db);
@@ -359,4 +366,8 @@ public class NotesDatabaseHelper extends SQLiteOpenHelper {
db.execSQL("ALTER TABLE " + TABLE.NOTE + " ADD COLUMN " + NoteColumns.VERSION
+ " INTEGER NOT NULL DEFAULT 0");
}
+ private void upgradeToV5(SQLiteDatabase db) { //加入noteType列
+ db.execSQL("ALTER TABLE " + TABLE.NOTE + " ADD COLUMN " + NoteColumns.noteType
+ + " INTEGER NOT NULL DEFAULT 0");
+ }
}
diff --git a/src/src/net/micode/notes/model/Note.java b/src/src/net/micode/notes/model/Note.java
index 027ef914..c42abe06 100644
--- a/src/src/net/micode/notes/model/Note.java
+++ b/src/src/net/micode/notes/model/Note.java
@@ -36,6 +36,7 @@ import java.util.ArrayList;
public class Note {
+ private String mNoteType;
private ContentValues mNoteDiffValues;
private NoteData mNoteData;
private static final String TAG = "Note";
@@ -70,6 +71,11 @@ public class Note {
public Note() {
mNoteDiffValues = new ContentValues();
mNoteData = new NoteData();
+ mNoteType="个人";//初始创建时无类型
+ }
+
+ public String getNoteType() {
+ return NoteColumns.noteType;
}
public void setNoteValue(String key, String value) {
diff --git a/src/src/net/micode/notes/model/WorkingNote.java b/src/src/net/micode/notes/model/WorkingNote.java
index 12079de6..9bbacc3d 100644
--- a/src/src/net/micode/notes/model/WorkingNote.java
+++ b/src/src/net/micode/notes/model/WorkingNote.java
@@ -33,6 +33,7 @@ import net.micode.notes.tool.ResourceParser.NoteBgResources;
public class WorkingNote {
+ private String noteType;
// Note for the working note
private Note mNote;
// Note Id
@@ -100,6 +101,7 @@ public class WorkingNote {
private static final int NOTE_WIDGET_TYPE_COLUMN = 4;
private static final int NOTE_MODIFIED_DATE_COLUMN = 5;
+ private static final int NOTE_TYPE_COLUMN=6;
// New note construct
private WorkingNote(Context context, long folderId) {
@@ -293,7 +295,13 @@ public class WorkingNote {
mNote.setCallData(CallNote.PHONE_NUMBER, phoneNumber);
mNote.setNoteValue(NoteColumns.PARENT_ID, String.valueOf(Notes.ID_CALL_RECORD_FOLDER));
}
-
+ public void setNoteType(String Type) { //设置便签类别属性
+ noteType=Type;
+ mNote.setNoteValue(NoteColumns.noteType,Type);
+ }
+ public String getNoteType() { //返回便签类别
+ return mNoteType;
+ }
public boolean hasClockAlert() {
return (mAlertDate > 0 ? true : false);
}