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-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-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"3truetrue4192dip5falsefalse192dip60%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"3truetrue4192dip5falsefalse192dip60%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 @@ - - - - - - - - - - - - - - -