diff --git a/src/.gradle/8.0/executionHistory/executionHistory.bin b/src/.gradle/8.0/executionHistory/executionHistory.bin
index 7e05445b..2099630e 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 e3a01d50..aa793573 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 9f5ee25a..140bc91c 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 ece16565..8c556ed9 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 a0c10b25..ed5f2329 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 00cb6f8a..af1e8b38 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 1f7f0f67..6b21a062 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 4f15eef4..f48a2d7b 100644
Binary files a/src/.gradle/file-system.probe and b/src/.gradle/file-system.probe differ
diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/AccountDialogTitleBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/AccountDialogTitleBinding.java
new file mode 100644
index 00000000..872d89e5
--- /dev/null
+++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/AccountDialogTitleBinding.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.LinearLayout;
+import android.widget.TextView;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import java.lang.String;
+import net.micode.notes.R;
+
+public final class AccountDialogTitleBinding implements ViewBinding {
+ @NonNull
+ private final LinearLayout rootView;
+
+ @NonNull
+ public final TextView accountDialogSubtitle;
+
+ @NonNull
+ public final TextView accountDialogTitle;
+
+ private AccountDialogTitleBinding(@NonNull LinearLayout rootView,
+ @NonNull TextView accountDialogSubtitle, @NonNull TextView accountDialogTitle) {
+ this.rootView = rootView;
+ this.accountDialogSubtitle = accountDialogSubtitle;
+ this.accountDialogTitle = accountDialogTitle;
+ }
+
+ @Override
+ @NonNull
+ public LinearLayout getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static AccountDialogTitleBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static AccountDialogTitleBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.account_dialog_title, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static AccountDialogTitleBinding 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.account_dialog_subtitle;
+ TextView accountDialogSubtitle = ViewBindings.findChildViewById(rootView, id);
+ if (accountDialogSubtitle == null) {
+ break missingId;
+ }
+
+ id = R.id.account_dialog_title;
+ TextView accountDialogTitle = ViewBindings.findChildViewById(rootView, id);
+ if (accountDialogTitle == null) {
+ break missingId;
+ }
+
+ return new AccountDialogTitleBinding((LinearLayout) rootView, accountDialogSubtitle,
+ accountDialogTitle);
+ }
+ 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/ActivitySplashBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivitySplashBinding.java
new file mode 100644
index 00000000..2ed56e16
--- /dev/null
+++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivitySplashBinding.java
@@ -0,0 +1,92 @@
+// 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.FrameLayout;
+import android.widget.LinearLayout;
+import android.widget.TextView;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import java.lang.String;
+import net.micode.notes.R;
+
+public final class ActivitySplashBinding implements ViewBinding {
+ @NonNull
+ private final FrameLayout rootView;
+
+ @NonNull
+ public final Button dummyButton;
+
+ @NonNull
+ public final TextView fullscreenContent;
+
+ @NonNull
+ public final LinearLayout fullscreenContentControls;
+
+ private ActivitySplashBinding(@NonNull FrameLayout rootView, @NonNull Button dummyButton,
+ @NonNull TextView fullscreenContent, @NonNull LinearLayout fullscreenContentControls) {
+ this.rootView = rootView;
+ this.dummyButton = dummyButton;
+ this.fullscreenContent = fullscreenContent;
+ this.fullscreenContentControls = fullscreenContentControls;
+ }
+
+ @Override
+ @NonNull
+ public FrameLayout getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static ActivitySplashBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static ActivitySplashBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.activity_splash, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static ActivitySplashBinding 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.dummy_button;
+ Button dummyButton = ViewBindings.findChildViewById(rootView, id);
+ if (dummyButton == null) {
+ break missingId;
+ }
+
+ id = R.id.fullscreen_content;
+ TextView fullscreenContent = ViewBindings.findChildViewById(rootView, id);
+ if (fullscreenContent == null) {
+ break missingId;
+ }
+
+ id = R.id.fullscreen_content_controls;
+ LinearLayout fullscreenContentControls = ViewBindings.findChildViewById(rootView, id);
+ if (fullscreenContentControls == null) {
+ break missingId;
+ }
+
+ return new ActivitySplashBinding((FrameLayout) rootView, dummyButton, fullscreenContent,
+ fullscreenContentControls);
+ }
+ 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/AddAccountTextBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/AddAccountTextBinding.java
new file mode 100644
index 00000000..8d15ea41
--- /dev/null
+++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/AddAccountTextBinding.java
@@ -0,0 +1,52 @@
+// 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.widget.LinearLayout;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import net.micode.notes.R;
+
+public final class AddAccountTextBinding implements ViewBinding {
+ @NonNull
+ private final LinearLayout rootView;
+
+ private AddAccountTextBinding(@NonNull LinearLayout rootView) {
+ this.rootView = rootView;
+ }
+
+ @Override
+ @NonNull
+ public LinearLayout getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static AddAccountTextBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static AddAccountTextBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.add_account_text, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static AddAccountTextBinding bind(@NonNull View rootView) {
+ if (rootView == null) {
+ throw new NullPointerException("rootView");
+ }
+
+ return new AddAccountTextBinding((LinearLayout) rootView);
+ }
+}
diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/DatetimePickerBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/DatetimePickerBinding.java
new file mode 100644
index 00000000..fd721a01
--- /dev/null
+++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/DatetimePickerBinding.java
@@ -0,0 +1,99 @@
+// 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.LinearLayout;
+import android.widget.NumberPicker;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import java.lang.String;
+import net.micode.notes.R;
+
+public final class DatetimePickerBinding implements ViewBinding {
+ @NonNull
+ private final LinearLayout rootView;
+
+ @NonNull
+ public final NumberPicker amPm;
+
+ @NonNull
+ public final NumberPicker date;
+
+ @NonNull
+ public final NumberPicker hour;
+
+ @NonNull
+ public final NumberPicker minute;
+
+ private DatetimePickerBinding(@NonNull LinearLayout rootView, @NonNull NumberPicker amPm,
+ @NonNull NumberPicker date, @NonNull NumberPicker hour, @NonNull NumberPicker minute) {
+ this.rootView = rootView;
+ this.amPm = amPm;
+ this.date = date;
+ this.hour = hour;
+ this.minute = minute;
+ }
+
+ @Override
+ @NonNull
+ public LinearLayout getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static DatetimePickerBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static DatetimePickerBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.datetime_picker, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static DatetimePickerBinding 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.amPm;
+ NumberPicker amPm = ViewBindings.findChildViewById(rootView, id);
+ if (amPm == null) {
+ break missingId;
+ }
+
+ id = R.id.date;
+ NumberPicker date = ViewBindings.findChildViewById(rootView, id);
+ if (date == null) {
+ break missingId;
+ }
+
+ id = R.id.hour;
+ NumberPicker hour = ViewBindings.findChildViewById(rootView, id);
+ if (hour == null) {
+ break missingId;
+ }
+
+ id = R.id.minute;
+ NumberPicker minute = ViewBindings.findChildViewById(rootView, id);
+ if (minute == null) {
+ break missingId;
+ }
+
+ return new DatetimePickerBinding((LinearLayout) rootView, amPm, date, hour, minute);
+ }
+ 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/DialogEditTextBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/DialogEditTextBinding.java
new file mode 100644
index 00000000..e634c684
--- /dev/null
+++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/DialogEditTextBinding.java
@@ -0,0 +1,58 @@
+// 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.widget.EditText;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import net.micode.notes.R;
+
+public final class DialogEditTextBinding implements ViewBinding {
+ @NonNull
+ private final EditText rootView;
+
+ @NonNull
+ public final EditText etFolerName;
+
+ private DialogEditTextBinding(@NonNull EditText rootView, @NonNull EditText etFolerName) {
+ this.rootView = rootView;
+ this.etFolerName = etFolerName;
+ }
+
+ @Override
+ @NonNull
+ public EditText getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static DialogEditTextBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static DialogEditTextBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.dialog_edit_text, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static DialogEditTextBinding bind(@NonNull View rootView) {
+ if (rootView == null) {
+ throw new NullPointerException("rootView");
+ }
+
+ EditText etFolerName = (EditText) rootView;
+
+ return new DialogEditTextBinding((EditText) rootView, etFolerName);
+ }
+}
diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/FolderListItemBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/FolderListItemBinding.java
new file mode 100644
index 00000000..5f4ed706
--- /dev/null
+++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/FolderListItemBinding.java
@@ -0,0 +1,68 @@
+// 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.LinearLayout;
+import android.widget.TextView;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import java.lang.String;
+import net.micode.notes.R;
+
+public final class FolderListItemBinding implements ViewBinding {
+ @NonNull
+ private final LinearLayout rootView;
+
+ @NonNull
+ public final TextView tvFolderName;
+
+ private FolderListItemBinding(@NonNull LinearLayout rootView, @NonNull TextView tvFolderName) {
+ this.rootView = rootView;
+ this.tvFolderName = tvFolderName;
+ }
+
+ @Override
+ @NonNull
+ public LinearLayout getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static FolderListItemBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static FolderListItemBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.folder_list_item, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static FolderListItemBinding 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.tv_folder_name;
+ TextView tvFolderName = ViewBindings.findChildViewById(rootView, id);
+ if (tvFolderName == null) {
+ break missingId;
+ }
+
+ return new FolderListItemBinding((LinearLayout) rootView, tvFolderName);
+ }
+ 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
new file mode 100644
index 00000000..f98a1bcd
--- /dev/null
+++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteEditBinding.java
@@ -0,0 +1,369 @@
+// 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.FrameLayout;
+import android.widget.ImageView;
+import android.widget.LinearLayout;
+import android.widget.TextView;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import java.lang.String;
+import net.micode.notes.R;
+import net.micode.notes.ui.NoteEditText;
+
+public final class NoteEditBinding implements ViewBinding {
+ @NonNull
+ private final FrameLayout rootView;
+
+ @NonNull
+ public final ImageView btnSetBgColor;
+
+ @NonNull
+ public final LinearLayout fontSizeSelector;
+
+ @NonNull
+ public final ImageView ivAlertIcon;
+
+ @NonNull
+ public final ImageView ivBgBlue;
+
+ @NonNull
+ public final ImageView ivBgBlueSelect;
+
+ @NonNull
+ public final ImageView ivBgGreen;
+
+ @NonNull
+ public final ImageView ivBgGreenSelect;
+
+ @NonNull
+ public final ImageView ivBgRed;
+
+ @NonNull
+ public final ImageView ivBgRedSelect;
+
+ @NonNull
+ public final ImageView ivBgWhite;
+
+ @NonNull
+ public final ImageView ivBgWhiteSelect;
+
+ @NonNull
+ public final ImageView ivBgYellow;
+
+ @NonNull
+ public final ImageView ivBgYellowSelect;
+
+ @NonNull
+ public final ImageView ivLargeSelect;
+
+ @NonNull
+ public final ImageView ivMediumSelect;
+
+ @NonNull
+ public final ImageView ivSmallSelect;
+
+ @NonNull
+ public final ImageView ivSuperSelect;
+
+ @NonNull
+ public final FrameLayout llFontLarge;
+
+ @NonNull
+ public final FrameLayout llFontNormal;
+
+ @NonNull
+ public final FrameLayout llFontSmall;
+
+ @NonNull
+ public final FrameLayout llFontSuper;
+
+ @NonNull
+ public final LinearLayout noteBgColorSelector;
+
+ @NonNull
+ public final LinearLayout noteEditList;
+
+ @NonNull
+ public final NoteEditText noteEditView;
+
+ @NonNull
+ public final LinearLayout noteTitle;
+
+ @NonNull
+ public final LinearLayout svNoteEdit;
+
+ @NonNull
+ public final TextView textNum;
+
+ @NonNull
+ public final TextView tvAlertDate;
+
+ @NonNull
+ 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 ImageView ivBgGreenSelect, @NonNull ImageView ivBgRed,
+ @NonNull ImageView ivBgRedSelect, @NonNull ImageView ivBgWhite,
+ @NonNull ImageView ivBgWhiteSelect, @NonNull ImageView ivBgYellow,
+ @NonNull ImageView ivBgYellowSelect, @NonNull ImageView ivLargeSelect,
+ @NonNull ImageView ivMediumSelect, @NonNull ImageView ivSmallSelect,
+ @NonNull ImageView ivSuperSelect, @NonNull FrameLayout llFontLarge,
+ @NonNull FrameLayout llFontNormal, @NonNull FrameLayout llFontSmall,
+ @NonNull FrameLayout llFontSuper, @NonNull LinearLayout noteBgColorSelector,
+ @NonNull LinearLayout noteEditList, @NonNull NoteEditText noteEditView,
+ @NonNull LinearLayout noteTitle, @NonNull LinearLayout svNoteEdit, @NonNull TextView textNum,
+ @NonNull TextView tvAlertDate, @NonNull TextView tvModifiedDate) {
+ this.rootView = rootView;
+ this.btnSetBgColor = btnSetBgColor;
+ this.fontSizeSelector = fontSizeSelector;
+ this.ivAlertIcon = ivAlertIcon;
+ this.ivBgBlue = ivBgBlue;
+ this.ivBgBlueSelect = ivBgBlueSelect;
+ this.ivBgGreen = ivBgGreen;
+ this.ivBgGreenSelect = ivBgGreenSelect;
+ this.ivBgRed = ivBgRed;
+ this.ivBgRedSelect = ivBgRedSelect;
+ this.ivBgWhite = ivBgWhite;
+ this.ivBgWhiteSelect = ivBgWhiteSelect;
+ this.ivBgYellow = ivBgYellow;
+ this.ivBgYellowSelect = ivBgYellowSelect;
+ this.ivLargeSelect = ivLargeSelect;
+ this.ivMediumSelect = ivMediumSelect;
+ this.ivSmallSelect = ivSmallSelect;
+ this.ivSuperSelect = ivSuperSelect;
+ this.llFontLarge = llFontLarge;
+ this.llFontNormal = llFontNormal;
+ this.llFontSmall = llFontSmall;
+ this.llFontSuper = llFontSuper;
+ this.noteBgColorSelector = noteBgColorSelector;
+ this.noteEditList = noteEditList;
+ this.noteEditView = noteEditView;
+ this.noteTitle = noteTitle;
+ this.svNoteEdit = svNoteEdit;
+ this.textNum = textNum;
+ this.tvAlertDate = tvAlertDate;
+ this.tvModifiedDate = tvModifiedDate;
+ }
+
+ @Override
+ @NonNull
+ public FrameLayout getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static NoteEditBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static NoteEditBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.note_edit, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static NoteEditBinding 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.btn_set_bg_color;
+ ImageView btnSetBgColor = ViewBindings.findChildViewById(rootView, id);
+ if (btnSetBgColor == null) {
+ break missingId;
+ }
+
+ id = R.id.font_size_selector;
+ LinearLayout fontSizeSelector = ViewBindings.findChildViewById(rootView, id);
+ if (fontSizeSelector == null) {
+ break missingId;
+ }
+
+ id = R.id.iv_alert_icon;
+ ImageView ivAlertIcon = ViewBindings.findChildViewById(rootView, id);
+ if (ivAlertIcon == null) {
+ break missingId;
+ }
+
+ id = R.id.iv_bg_blue;
+ ImageView ivBgBlue = ViewBindings.findChildViewById(rootView, id);
+ if (ivBgBlue == null) {
+ break missingId;
+ }
+
+ id = R.id.iv_bg_blue_select;
+ ImageView ivBgBlueSelect = ViewBindings.findChildViewById(rootView, id);
+ if (ivBgBlueSelect == null) {
+ break missingId;
+ }
+
+ id = R.id.iv_bg_green;
+ ImageView ivBgGreen = ViewBindings.findChildViewById(rootView, id);
+ if (ivBgGreen == null) {
+ break missingId;
+ }
+
+ id = R.id.iv_bg_green_select;
+ ImageView ivBgGreenSelect = ViewBindings.findChildViewById(rootView, id);
+ if (ivBgGreenSelect == null) {
+ break missingId;
+ }
+
+ id = R.id.iv_bg_red;
+ ImageView ivBgRed = ViewBindings.findChildViewById(rootView, id);
+ if (ivBgRed == null) {
+ break missingId;
+ }
+
+ id = R.id.iv_bg_red_select;
+ ImageView ivBgRedSelect = ViewBindings.findChildViewById(rootView, id);
+ if (ivBgRedSelect == null) {
+ break missingId;
+ }
+
+ id = R.id.iv_bg_white;
+ ImageView ivBgWhite = ViewBindings.findChildViewById(rootView, id);
+ if (ivBgWhite == null) {
+ break missingId;
+ }
+
+ id = R.id.iv_bg_white_select;
+ ImageView ivBgWhiteSelect = ViewBindings.findChildViewById(rootView, id);
+ if (ivBgWhiteSelect == null) {
+ break missingId;
+ }
+
+ id = R.id.iv_bg_yellow;
+ ImageView ivBgYellow = ViewBindings.findChildViewById(rootView, id);
+ if (ivBgYellow == null) {
+ break missingId;
+ }
+
+ id = R.id.iv_bg_yellow_select;
+ ImageView ivBgYellowSelect = ViewBindings.findChildViewById(rootView, id);
+ if (ivBgYellowSelect == null) {
+ break missingId;
+ }
+
+ id = R.id.iv_large_select;
+ ImageView ivLargeSelect = ViewBindings.findChildViewById(rootView, id);
+ if (ivLargeSelect == null) {
+ break missingId;
+ }
+
+ id = R.id.iv_medium_select;
+ ImageView ivMediumSelect = ViewBindings.findChildViewById(rootView, id);
+ if (ivMediumSelect == null) {
+ break missingId;
+ }
+
+ id = R.id.iv_small_select;
+ ImageView ivSmallSelect = ViewBindings.findChildViewById(rootView, id);
+ if (ivSmallSelect == null) {
+ break missingId;
+ }
+
+ id = R.id.iv_super_select;
+ ImageView ivSuperSelect = ViewBindings.findChildViewById(rootView, id);
+ if (ivSuperSelect == null) {
+ break missingId;
+ }
+
+ id = R.id.ll_font_large;
+ FrameLayout llFontLarge = ViewBindings.findChildViewById(rootView, id);
+ if (llFontLarge == null) {
+ break missingId;
+ }
+
+ id = R.id.ll_font_normal;
+ FrameLayout llFontNormal = ViewBindings.findChildViewById(rootView, id);
+ if (llFontNormal == null) {
+ break missingId;
+ }
+
+ id = R.id.ll_font_small;
+ FrameLayout llFontSmall = ViewBindings.findChildViewById(rootView, id);
+ if (llFontSmall == null) {
+ break missingId;
+ }
+
+ id = R.id.ll_font_super;
+ FrameLayout llFontSuper = ViewBindings.findChildViewById(rootView, id);
+ if (llFontSuper == null) {
+ break missingId;
+ }
+
+ id = R.id.note_bg_color_selector;
+ LinearLayout noteBgColorSelector = ViewBindings.findChildViewById(rootView, id);
+ if (noteBgColorSelector == null) {
+ break missingId;
+ }
+
+ id = R.id.note_edit_list;
+ LinearLayout noteEditList = ViewBindings.findChildViewById(rootView, id);
+ if (noteEditList == null) {
+ break missingId;
+ }
+
+ id = R.id.note_edit_view;
+ NoteEditText noteEditView = ViewBindings.findChildViewById(rootView, id);
+ if (noteEditView == null) {
+ break missingId;
+ }
+
+ id = R.id.note_title;
+ LinearLayout noteTitle = ViewBindings.findChildViewById(rootView, id);
+ if (noteTitle == null) {
+ break missingId;
+ }
+
+ id = R.id.sv_note_edit;
+ LinearLayout svNoteEdit = ViewBindings.findChildViewById(rootView, id);
+ if (svNoteEdit == null) {
+ break missingId;
+ }
+
+ id = R.id.text_num;
+ TextView textNum = ViewBindings.findChildViewById(rootView, id);
+ if (textNum == null) {
+ break missingId;
+ }
+
+ id = R.id.tv_alert_date;
+ TextView tvAlertDate = ViewBindings.findChildViewById(rootView, id);
+ if (tvAlertDate == null) {
+ break missingId;
+ }
+
+ id = R.id.tv_modified_date;
+ TextView tvModifiedDate = ViewBindings.findChildViewById(rootView, id);
+ if (tvModifiedDate == null) {
+ 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);
+ }
+ 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/NoteEditListItemBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteEditListItemBinding.java
new file mode 100644
index 00000000..a9385959
--- /dev/null
+++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteEditListItemBinding.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.CheckBox;
+import android.widget.LinearLayout;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import java.lang.String;
+import net.micode.notes.R;
+import net.micode.notes.ui.NoteEditText;
+
+public final class NoteEditListItemBinding implements ViewBinding {
+ @NonNull
+ private final LinearLayout rootView;
+
+ @NonNull
+ public final CheckBox cbEditItem;
+
+ @NonNull
+ public final NoteEditText etEditText;
+
+ private NoteEditListItemBinding(@NonNull LinearLayout rootView, @NonNull CheckBox cbEditItem,
+ @NonNull NoteEditText etEditText) {
+ this.rootView = rootView;
+ this.cbEditItem = cbEditItem;
+ this.etEditText = etEditText;
+ }
+
+ @Override
+ @NonNull
+ public LinearLayout getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static NoteEditListItemBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static NoteEditListItemBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.note_edit_list_item, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static NoteEditListItemBinding 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.cb_edit_item;
+ CheckBox cbEditItem = ViewBindings.findChildViewById(rootView, id);
+ if (cbEditItem == null) {
+ break missingId;
+ }
+
+ id = R.id.et_edit_text;
+ NoteEditText etEditText = ViewBindings.findChildViewById(rootView, id);
+ if (etEditText == null) {
+ break missingId;
+ }
+
+ return new NoteEditListItemBinding((LinearLayout) rootView, cbEditItem, etEditText);
+ }
+ 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
new file mode 100644
index 00000000..592f6059
--- /dev/null
+++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteItemBinding.java
@@ -0,0 +1,119 @@
+// 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.CheckBox;
+import android.widget.FrameLayout;
+import android.widget.ImageView;
+import android.widget.TextView;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import java.lang.String;
+import net.micode.notes.R;
+
+public final class NoteItemBinding implements ViewBinding {
+ @NonNull
+ private final FrameLayout rootView;
+
+ @NonNull
+ public final CheckBox checkbox;
+
+ @NonNull
+ public final ImageView ivAlertIcon;
+
+ @NonNull
+ public final FrameLayout noteItem;
+
+ @NonNull
+ public final TextView tvName;
+
+ @NonNull
+ public final TextView tvTime;
+
+ @NonNull
+ public final TextView tvTitle;
+
+ private NoteItemBinding(@NonNull FrameLayout rootView, @NonNull CheckBox checkbox,
+ @NonNull ImageView ivAlertIcon, @NonNull FrameLayout noteItem, @NonNull TextView tvName,
+ @NonNull TextView tvTime, @NonNull TextView tvTitle) {
+ this.rootView = rootView;
+ this.checkbox = checkbox;
+ this.ivAlertIcon = ivAlertIcon;
+ this.noteItem = noteItem;
+ this.tvName = tvName;
+ this.tvTime = tvTime;
+ this.tvTitle = tvTitle;
+ }
+
+ @Override
+ @NonNull
+ public FrameLayout getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static NoteItemBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static NoteItemBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.note_item, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static NoteItemBinding 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 = android.R.id.checkbox;
+ CheckBox checkbox = ViewBindings.findChildViewById(rootView, id);
+ if (checkbox == null) {
+ break missingId;
+ }
+
+ id = R.id.iv_alert_icon;
+ ImageView ivAlertIcon = ViewBindings.findChildViewById(rootView, id);
+ if (ivAlertIcon == null) {
+ break missingId;
+ }
+
+ FrameLayout noteItem = (FrameLayout) rootView;
+
+ id = R.id.tv_name;
+ TextView tvName = ViewBindings.findChildViewById(rootView, id);
+ if (tvName == null) {
+ break missingId;
+ }
+
+ id = R.id.tv_time;
+ TextView tvTime = ViewBindings.findChildViewById(rootView, id);
+ if (tvTime == null) {
+ break missingId;
+ }
+
+ id = R.id.tv_title;
+ TextView tvTitle = ViewBindings.findChildViewById(rootView, id);
+ if (tvTitle == null) {
+ break missingId;
+ }
+
+ return new NoteItemBinding((FrameLayout) rootView, checkbox, ivAlertIcon, noteItem, tvName,
+ tvTime, tvTitle);
+ }
+ 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/NoteListBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListBinding.java
new file mode 100644
index 00000000..3fbe4104
--- /dev/null
+++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListBinding.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.FrameLayout;
+import android.widget.ListView;
+import android.widget.TextView;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import java.lang.String;
+import net.micode.notes.R;
+
+public final class NoteListBinding implements ViewBinding {
+ @NonNull
+ private final FrameLayout rootView;
+
+ @NonNull
+ public final Button btnNewNote;
+
+ @NonNull
+ public final ListView notesList;
+
+ @NonNull
+ public final TextView tvTitleBar;
+
+ private NoteListBinding(@NonNull FrameLayout rootView, @NonNull Button btnNewNote,
+ @NonNull ListView notesList, @NonNull TextView tvTitleBar) {
+ this.rootView = rootView;
+ this.btnNewNote = btnNewNote;
+ this.notesList = notesList;
+ this.tvTitleBar = tvTitleBar;
+ }
+
+ @Override
+ @NonNull
+ public FrameLayout getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static NoteListBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static NoteListBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.note_list, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static NoteListBinding 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.btn_new_note;
+ Button btnNewNote = ViewBindings.findChildViewById(rootView, id);
+ if (btnNewNote == null) {
+ break missingId;
+ }
+
+ id = R.id.notes_list;
+ ListView notesList = ViewBindings.findChildViewById(rootView, id);
+ if (notesList == null) {
+ break missingId;
+ }
+
+ id = R.id.tv_title_bar;
+ TextView tvTitleBar = ViewBindings.findChildViewById(rootView, id);
+ if (tvTitleBar == null) {
+ break missingId;
+ }
+
+ return new NoteListBinding((FrameLayout) rootView, btnNewNote, notesList, tvTitleBar);
+ }
+ 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/NoteListDropdownMenuBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListDropdownMenuBinding.java
new file mode 100644
index 00000000..c20da817
--- /dev/null
+++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListDropdownMenuBinding.java
@@ -0,0 +1,75 @@
+// 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.LinearLayout;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import java.lang.String;
+import net.micode.notes.R;
+
+public final class NoteListDropdownMenuBinding implements ViewBinding {
+ @NonNull
+ private final LinearLayout rootView;
+
+ @NonNull
+ public final LinearLayout navigationBar;
+
+ @NonNull
+ public final Button selectionMenu;
+
+ private NoteListDropdownMenuBinding(@NonNull LinearLayout rootView,
+ @NonNull LinearLayout navigationBar, @NonNull Button selectionMenu) {
+ this.rootView = rootView;
+ this.navigationBar = navigationBar;
+ this.selectionMenu = selectionMenu;
+ }
+
+ @Override
+ @NonNull
+ public LinearLayout getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static NoteListDropdownMenuBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static NoteListDropdownMenuBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.note_list_dropdown_menu, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static NoteListDropdownMenuBinding 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: {
+ LinearLayout navigationBar = (LinearLayout) rootView;
+
+ id = R.id.selection_menu;
+ Button selectionMenu = ViewBindings.findChildViewById(rootView, id);
+ if (selectionMenu == null) {
+ break missingId;
+ }
+
+ return new NoteListDropdownMenuBinding((LinearLayout) rootView, navigationBar, selectionMenu);
+ }
+ 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/NoteListFooterBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListFooterBinding.java
new file mode 100644
index 00000000..848cf814
--- /dev/null
+++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListFooterBinding.java
@@ -0,0 +1,51 @@
+// 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 java.lang.NullPointerException;
+import java.lang.Override;
+import net.micode.notes.R;
+
+public final class NoteListFooterBinding implements ViewBinding {
+ @NonNull
+ private final View rootView;
+
+ private NoteListFooterBinding(@NonNull View rootView) {
+ this.rootView = rootView;
+ }
+
+ @Override
+ @NonNull
+ public View getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static NoteListFooterBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static NoteListFooterBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.note_list_footer, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static NoteListFooterBinding bind(@NonNull View rootView) {
+ if (rootView == null) {
+ throw new NullPointerException("rootView");
+ }
+
+ return new NoteListFooterBinding(rootView);
+ }
+}
diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/SettingsHeaderBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/SettingsHeaderBinding.java
new file mode 100644
index 00000000..2da731b1
--- /dev/null
+++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/SettingsHeaderBinding.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.LinearLayout;
+import android.widget.TextView;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import java.lang.String;
+import net.micode.notes.R;
+
+public final class SettingsHeaderBinding implements ViewBinding {
+ @NonNull
+ private final LinearLayout rootView;
+
+ @NonNull
+ public final TextView prefenereceSyncStatusTextview;
+
+ @NonNull
+ public final Button preferenceSyncButton;
+
+ private SettingsHeaderBinding(@NonNull LinearLayout rootView,
+ @NonNull TextView prefenereceSyncStatusTextview, @NonNull Button preferenceSyncButton) {
+ this.rootView = rootView;
+ this.prefenereceSyncStatusTextview = prefenereceSyncStatusTextview;
+ this.preferenceSyncButton = preferenceSyncButton;
+ }
+
+ @Override
+ @NonNull
+ public LinearLayout getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static SettingsHeaderBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static SettingsHeaderBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.settings_header, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static SettingsHeaderBinding 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.prefenerece_sync_status_textview;
+ TextView prefenereceSyncStatusTextview = ViewBindings.findChildViewById(rootView, id);
+ if (prefenereceSyncStatusTextview == null) {
+ break missingId;
+ }
+
+ id = R.id.preference_sync_button;
+ Button preferenceSyncButton = ViewBindings.findChildViewById(rootView, id);
+ if (preferenceSyncButton == null) {
+ break missingId;
+ }
+
+ return new SettingsHeaderBinding((LinearLayout) rootView, prefenereceSyncStatusTextview,
+ preferenceSyncButton);
+ }
+ 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/Widget2xBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/Widget2xBinding.java
new file mode 100644
index 00000000..85e7d093
--- /dev/null
+++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/Widget2xBinding.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.FrameLayout;
+import android.widget.ImageView;
+import android.widget.TextView;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import java.lang.String;
+import net.micode.notes.R;
+
+public final class Widget2xBinding implements ViewBinding {
+ @NonNull
+ private final FrameLayout rootView;
+
+ @NonNull
+ public final ImageView widgetBgImage;
+
+ @NonNull
+ public final TextView widgetText;
+
+ private Widget2xBinding(@NonNull FrameLayout rootView, @NonNull ImageView widgetBgImage,
+ @NonNull TextView widgetText) {
+ this.rootView = rootView;
+ this.widgetBgImage = widgetBgImage;
+ this.widgetText = widgetText;
+ }
+
+ @Override
+ @NonNull
+ public FrameLayout getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static Widget2xBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static Widget2xBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.widget_2x, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static Widget2xBinding 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.widget_bg_image;
+ ImageView widgetBgImage = ViewBindings.findChildViewById(rootView, id);
+ if (widgetBgImage == null) {
+ break missingId;
+ }
+
+ id = R.id.widget_text;
+ TextView widgetText = ViewBindings.findChildViewById(rootView, id);
+ if (widgetText == null) {
+ break missingId;
+ }
+
+ return new Widget2xBinding((FrameLayout) rootView, widgetBgImage, widgetText);
+ }
+ 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/Widget4xBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/Widget4xBinding.java
new file mode 100644
index 00000000..10208e00
--- /dev/null
+++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/Widget4xBinding.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.FrameLayout;
+import android.widget.ImageView;
+import android.widget.TextView;
+import java.lang.NullPointerException;
+import java.lang.Override;
+import java.lang.String;
+import net.micode.notes.R;
+
+public final class Widget4xBinding implements ViewBinding {
+ @NonNull
+ private final FrameLayout rootView;
+
+ @NonNull
+ public final ImageView widgetBgImage;
+
+ @NonNull
+ public final TextView widgetText;
+
+ private Widget4xBinding(@NonNull FrameLayout rootView, @NonNull ImageView widgetBgImage,
+ @NonNull TextView widgetText) {
+ this.rootView = rootView;
+ this.widgetBgImage = widgetBgImage;
+ this.widgetText = widgetText;
+ }
+
+ @Override
+ @NonNull
+ public FrameLayout getRoot() {
+ return rootView;
+ }
+
+ @NonNull
+ public static Widget4xBinding inflate(@NonNull LayoutInflater inflater) {
+ return inflate(inflater, null, false);
+ }
+
+ @NonNull
+ public static Widget4xBinding inflate(@NonNull LayoutInflater inflater,
+ @Nullable ViewGroup parent, boolean attachToParent) {
+ View root = inflater.inflate(R.layout.widget_4x, parent, false);
+ if (attachToParent) {
+ parent.addView(root);
+ }
+ return bind(root);
+ }
+
+ @NonNull
+ public static Widget4xBinding 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.widget_bg_image;
+ ImageView widgetBgImage = ViewBindings.findChildViewById(rootView, id);
+ if (widgetBgImage == null) {
+ break missingId;
+ }
+
+ id = R.id.widget_text;
+ TextView widgetText = ViewBindings.findChildViewById(rootView, id);
+ if (widgetText == null) {
+ break missingId;
+ }
+
+ return new Widget4xBinding((FrameLayout) rootView, widgetBgImage, widgetText);
+ }
+ 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 1d185079..f55cd150 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 99088dab..18cc6495 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 60012034..3a4ee780 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
new file mode 100644
index 00000000..eee12b00
Binary files /dev/null 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_base_class_log_artifact/debugAndroidTest/out/net.micode.notes.test-binding_classes.json b/src/app/build/intermediates/data_binding_base_class_log_artifact/debugAndroidTest/out/net.micode.notes.test-binding_classes.json
new file mode 100644
index 00000000..2bea4465
Binary files /dev/null and b/src/app/build/intermediates/data_binding_base_class_log_artifact/debugAndroidTest/out/net.micode.notes.test-binding_classes.json differ
diff --git a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/account_dialog_title-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/account_dialog_title-layout.xml
new file mode 100644
index 00000000..a55380d0
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/account_dialog_title-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_splash-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/activity_splash-layout.xml
new file mode 100644
index 00000000..3abc1c22
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/activity_splash-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/add_account_text-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/add_account_text-layout.xml
new file mode 100644
index 00000000..578a0ece
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/add_account_text-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/datetime_picker-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/datetime_picker-layout.xml
new file mode 100644
index 00000000..49537f1c
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/datetime_picker-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/dialog_edit_text-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/dialog_edit_text-layout.xml
new file mode 100644
index 00000000..0a219981
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/dialog_edit_text-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/folder_list_item-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/folder_list_item-layout.xml
new file mode 100644
index 00000000..34472de3
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/folder_list_item-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
new file mode 100644
index 00000000..6494f450
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_edit-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_list_item-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_edit_list_item-layout.xml
new file mode 100644
index 00000000..eed3afcd
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_edit_list_item-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_item-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_item-layout.xml
new file mode 100644
index 00000000..8f506645
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_item-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_list-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_list-layout.xml
new file mode 100644
index 00000000..d38ebb07
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_list-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_list_dropdown_menu-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_list_dropdown_menu-layout.xml
new file mode 100644
index 00000000..e29bc0b4
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_list_dropdown_menu-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_list_footer-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_list_footer-layout.xml
new file mode 100644
index 00000000..54657377
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_list_footer-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/settings_header-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/settings_header-layout.xml
new file mode 100644
index 00000000..114055f0
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/settings_header-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/widget_2x-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/widget_2x-layout.xml
new file mode 100644
index 00000000..3b1b0b6a
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/widget_2x-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/widget_4x-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/widget_4x-layout.xml
new file mode 100644
index 00000000..fd60bdcb
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/widget_4x-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/account_dialog_title-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/account_dialog_title-layout.xml
new file mode 100644
index 00000000..a55380d0
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/account_dialog_title-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_splash-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_splash-layout.xml
new file mode 100644
index 00000000..3abc1c22
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_splash-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/add_account_text-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/add_account_text-layout.xml
new file mode 100644
index 00000000..578a0ece
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/add_account_text-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/datetime_picker-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/datetime_picker-layout.xml
new file mode 100644
index 00000000..49537f1c
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/datetime_picker-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/dialog_edit_text-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/dialog_edit_text-layout.xml
new file mode 100644
index 00000000..0a219981
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/dialog_edit_text-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/folder_list_item-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/folder_list_item-layout.xml
new file mode 100644
index 00000000..34472de3
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/folder_list_item-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
new file mode 100644
index 00000000..6494f450
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_edit-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_list_item-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_edit_list_item-layout.xml
new file mode 100644
index 00000000..eed3afcd
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_edit_list_item-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_item-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_item-layout.xml
new file mode 100644
index 00000000..8f506645
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_item-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_list-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list-layout.xml
new file mode 100644
index 00000000..d38ebb07
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list-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_list_dropdown_menu-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list_dropdown_menu-layout.xml
new file mode 100644
index 00000000..e29bc0b4
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list_dropdown_menu-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_list_footer-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list_footer-layout.xml
new file mode 100644
index 00000000..54657377
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list_footer-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/settings_header-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/settings_header-layout.xml
new file mode 100644
index 00000000..114055f0
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/settings_header-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/widget_2x-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/widget_2x-layout.xml
new file mode 100644
index 00000000..3b1b0b6a
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/widget_2x-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/widget_4x-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/widget_4x-layout.xml
new file mode 100644
index 00000000..fd60bdcb
--- /dev/null
+++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/widget_4x-layout.xml
@@ -0,0 +1 @@
+
\ 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_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_0/graph.bin
new file mode 100644
index 00000000..601f245f
Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_0/graph.bin differ
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_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_1/graph.bin
new file mode 100644
index 00000000..601f245f
Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_1/graph.bin differ
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_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_2/graph.bin
new file mode 100644
index 00000000..601f245f
Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_2/graph.bin differ
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_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_3/graph.bin
new file mode 100644
index 00000000..601f245f
Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_3/graph.bin differ
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_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_4/graph.bin
new file mode 100644
index 00000000..601f245f
Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_4/graph.bin differ
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_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_5/graph.bin
new file mode 100644
index 00000000..601f245f
Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_5/graph.bin differ
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_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_6/graph.bin
new file mode 100644
index 00000000..601f245f
Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_6/graph.bin differ
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_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_7/graph.bin
new file mode 100644
index 00000000..601f245f
Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_7/graph.bin differ
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_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_0/graph.bin
new file mode 100644
index 00000000..601f245f
Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_0/graph.bin differ
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_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_1/graph.bin
new file mode 100644
index 00000000..601f245f
Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_1/graph.bin differ
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_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_2/graph.bin
new file mode 100644
index 00000000..601f245f
Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_2/graph.bin differ
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_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_3/graph.bin
new file mode 100644
index 00000000..601f245f
Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_3/graph.bin differ
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_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_4/graph.bin
new file mode 100644
index 00000000..601f245f
Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_4/graph.bin differ
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_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_5/graph.bin
new file mode 100644
index 00000000..601f245f
Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_5/graph.bin differ
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_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_6/graph.bin
new file mode 100644
index 00000000..601f245f
Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_6/graph.bin differ
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_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_7/graph.bin
new file mode 100644
index 00000000..601f245f
Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_7/graph.bin differ
diff --git a/src/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex b/src/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex
new file mode 100644
index 00000000..a207e0b5
Binary files /dev/null and b/src/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex differ
diff --git a/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex
new file mode 100644
index 00000000..977c376c
Binary files /dev/null and b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex differ
diff --git a/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/11/classes.dex b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/11/classes.dex
new file mode 100644
index 00000000..fd96e95e
Binary files /dev/null and b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/11/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
new file mode 100644
index 00000000..a2499d0b
Binary files /dev/null and b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/12/classes.dex differ
diff --git a/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/13/classes.dex b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/13/classes.dex
new file mode 100644
index 00000000..75e65910
Binary files /dev/null and b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/13/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
new file mode 100644
index 00000000..06e297c9
Binary files /dev/null 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
new file mode 100644
index 00000000..1bd66248
Binary files /dev/null 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
new file mode 100644
index 00000000..020d14b6
Binary files /dev/null and b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex differ
diff --git a/src/app/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/0/classes.dex b/src/app/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/0/classes.dex
new file mode 100644
index 00000000..b28650c1
Binary files /dev/null and b/src/app/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/0/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 b298b232..21bf69b2 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 585d66c7..c2f6f291 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
new file mode 100644
index 00000000..d897786b
Binary files /dev/null and b/src/app/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json differ
diff --git a/src/app/build/intermediates/incremental/dataBindingGenBaseClassesDebugAndroidTest/base_builder_log.json b/src/app/build/intermediates/incremental/dataBindingGenBaseClassesDebugAndroidTest/base_builder_log.json
new file mode 100644
index 00000000..dca24b26
Binary files /dev/null and b/src/app/build/intermediates/incremental/dataBindingGenBaseClassesDebugAndroidTest/base_builder_log.json differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/1mH4UP_25Z2UDwm9_E8+fnKEirs= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/1mH4UP_25Z2UDwm9_E8+fnKEirs=
new file mode 100644
index 00000000..3402ba54
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/1mH4UP_25Z2UDwm9_E8+fnKEirs= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/1nkyePFa9NOckvvknlPBHNfhQ7Q= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/1nkyePFa9NOckvvknlPBHNfhQ7Q=
new file mode 100644
index 00000000..54053705
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/1nkyePFa9NOckvvknlPBHNfhQ7Q= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2_k+xieN3Zm2ReeIYOuBYaOTbGM= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2_k+xieN3Zm2ReeIYOuBYaOTbGM=
new file mode 100644
index 00000000..810547b8
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2_k+xieN3Zm2ReeIYOuBYaOTbGM= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2qnbC19pIulFO32Ofa1ejv6BFD4= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2qnbC19pIulFO32Ofa1ejv6BFD4=
new file mode 100644
index 00000000..85e55458
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2qnbC19pIulFO32Ofa1ejv6BFD4= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/35Ag1gqzrhbBHWVzpCsZF6xgBs8= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/35Ag1gqzrhbBHWVzpCsZF6xgBs8=
new file mode 100644
index 00000000..b322a604
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/35Ag1gqzrhbBHWVzpCsZF6xgBs8= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/3OyN3TgyZi5N1sWV2uLrAm9_7No= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/3OyN3TgyZi5N1sWV2uLrAm9_7No=
new file mode 100644
index 00000000..5137d2ea
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/3OyN3TgyZi5N1sWV2uLrAm9_7No= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/5h3v+ReqW3f9mk4lA9nYylUExTQ= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/5h3v+ReqW3f9mk4lA9nYylUExTQ=
new file mode 100644
index 00000000..a20288b3
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/5h3v+ReqW3f9mk4lA9nYylUExTQ= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/8HWiQSIjSJYk+yT_xngcgNovHIw= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/8HWiQSIjSJYk+yT_xngcgNovHIw=
new file mode 100644
index 00000000..fdab8359
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/8HWiQSIjSJYk+yT_xngcgNovHIw= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/95xqPfG2+27PMgrBbclG7yKXCaM= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/95xqPfG2+27PMgrBbclG7yKXCaM=
new file mode 100644
index 00000000..172691b3
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/95xqPfG2+27PMgrBbclG7yKXCaM= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/CRRm6ImuAgp2A8BmFNmBvJcOdSw= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/CRRm6ImuAgp2A8BmFNmBvJcOdSw=
new file mode 100644
index 00000000..2b28058f
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/CRRm6ImuAgp2A8BmFNmBvJcOdSw= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/F3UA3NDokAHUq6GWVWvCHMBOcEY= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/F3UA3NDokAHUq6GWVWvCHMBOcEY=
new file mode 100644
index 00000000..e40b65dd
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/F3UA3NDokAHUq6GWVWvCHMBOcEY= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/GjxvkfeeRXytA4RtgHiskh58JZ8= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/GjxvkfeeRXytA4RtgHiskh58JZ8=
new file mode 100644
index 00000000..83cf3b71
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/GjxvkfeeRXytA4RtgHiskh58JZ8= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/HALpD8Xa0vwcqpkszhAW4FScUxU= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/HALpD8Xa0vwcqpkszhAW4FScUxU=
new file mode 100644
index 00000000..f27829e1
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/HALpD8Xa0vwcqpkszhAW4FScUxU= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/HFzS_QIYlvqLfTU+AlOFJOXtJbw= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/HFzS_QIYlvqLfTU+AlOFJOXtJbw=
new file mode 100644
index 00000000..3aad90c5
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/HFzS_QIYlvqLfTU+AlOFJOXtJbw= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Izd8+e2EVEm3SRKDUDPobxkDnKE= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Izd8+e2EVEm3SRKDUDPobxkDnKE=
new file mode 100644
index 00000000..3b859543
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Izd8+e2EVEm3SRKDUDPobxkDnKE= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/KECDHd053zw2YWpEiSntFog8lS8= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/KECDHd053zw2YWpEiSntFog8lS8=
new file mode 100644
index 00000000..1f8cc12c
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/KECDHd053zw2YWpEiSntFog8lS8= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/N9gw+f6NK6U0nqb7m97vN6GktPk= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/N9gw+f6NK6U0nqb7m97vN6GktPk=
new file mode 100644
index 00000000..3e3acf40
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/N9gw+f6NK6U0nqb7m97vN6GktPk= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/NJu0v28qaHC+66I1Ec2oVxNPolU= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/NJu0v28qaHC+66I1Ec2oVxNPolU=
new file mode 100644
index 00000000..5afb9b4c
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/NJu0v28qaHC+66I1Ec2oVxNPolU= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OEybqlfcPOvyi8dmITHcq15K7eE= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OEybqlfcPOvyi8dmITHcq15K7eE=
new file mode 100644
index 00000000..9f562b57
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OEybqlfcPOvyi8dmITHcq15K7eE= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OPfztvpHW7NHhi11Evq1kwZPf_4= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OPfztvpHW7NHhi11Evq1kwZPf_4=
new file mode 100644
index 00000000..2e46a7cf
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OPfztvpHW7NHhi11Evq1kwZPf_4= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/RJqNSoLtTKox2eR0s7zWw5SIQKo= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/RJqNSoLtTKox2eR0s7zWw5SIQKo=
new file mode 100644
index 00000000..b5e5cbcf
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/RJqNSoLtTKox2eR0s7zWw5SIQKo= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/SqPBuwEBPypirnfZxJnvZZuhtRU= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/SqPBuwEBPypirnfZxJnvZZuhtRU=
new file mode 100644
index 00000000..6a09445a
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/SqPBuwEBPypirnfZxJnvZZuhtRU= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/U4H_CLVhrcKn1t53_aHZ_UnGqes= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/U4H_CLVhrcKn1t53_aHZ_UnGqes=
new file mode 100644
index 00000000..091b6b69
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/U4H_CLVhrcKn1t53_aHZ_UnGqes= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/U7t9FKlIubKk8eFMDyJSvNTTsHY= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/U7t9FKlIubKk8eFMDyJSvNTTsHY=
new file mode 100644
index 00000000..93b769e5
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/U7t9FKlIubKk8eFMDyJSvNTTsHY= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VjeV442hkMtqiSnRxgxldWWBlTc= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VjeV442hkMtqiSnRxgxldWWBlTc=
new file mode 100644
index 00000000..f3ed40bd
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VjeV442hkMtqiSnRxgxldWWBlTc= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/YRkeAAackGEwWC8_0Sesp_YAddE= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/YRkeAAackGEwWC8_0Sesp_YAddE=
new file mode 100644
index 00000000..40d280f3
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/YRkeAAackGEwWC8_0Sesp_YAddE= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZMgyoquwMv0gzhEcg7WSYUL8tUs= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZMgyoquwMv0gzhEcg7WSYUL8tUs=
new file mode 100644
index 00000000..d03b9777
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZMgyoquwMv0gzhEcg7WSYUL8tUs= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/duIkSDk3Ps6y9UQebRr04gTTQJg= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/duIkSDk3Ps6y9UQebRr04gTTQJg=
new file mode 100644
index 00000000..6f7bb73e
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/duIkSDk3Ps6y9UQebRr04gTTQJg= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/e0952MRhsVbaNBrdwgIrRwYgERM= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/e0952MRhsVbaNBrdwgIrRwYgERM=
new file mode 100644
index 00000000..3b89d322
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/e0952MRhsVbaNBrdwgIrRwYgERM= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/iZnzAnIrm_uZ6R7XLo79vLbluKk= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/iZnzAnIrm_uZ6R7XLo79vLbluKk=
new file mode 100644
index 00000000..ee0fc380
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/iZnzAnIrm_uZ6R7XLo79vLbluKk= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/lVZHwiSftjM89UxDT6aHRJT1daA= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/lVZHwiSftjM89UxDT6aHRJT1daA=
new file mode 100644
index 00000000..46d3cb39
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/lVZHwiSftjM89UxDT6aHRJT1daA= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/n4+x26OWNJ2d3ZtqFRQmeldy_SY= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/n4+x26OWNJ2d3ZtqFRQmeldy_SY=
new file mode 100644
index 00000000..0d4a161e
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/n4+x26OWNJ2d3ZtqFRQmeldy_SY= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/njye4xBaB+Ai60AMl61YohGQkxk= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/njye4xBaB+Ai60AMl61YohGQkxk=
new file mode 100644
index 00000000..8190f889
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/njye4xBaB+Ai60AMl61YohGQkxk= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/tM4+GZ6rU2U0eT2n0A9ESlzmEy8= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/tM4+GZ6rU2U0eT2n0A9ESlzmEy8=
new file mode 100644
index 00000000..ea6f509c
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/tM4+GZ6rU2U0eT2n0A9ESlzmEy8= differ
diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/wamLxJN60k4qRShSf4T6_9b4AAA= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/wamLxJN60k4qRShSf4T6_9b4AAA=
new file mode 100644
index 00000000..24000905
Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/wamLxJN60k4qRShSf4T6_9b4AAA= 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
new file mode 100644
index 00000000..cc5871dc
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties
@@ -0,0 +1,102 @@
+#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
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
new file mode 100644
index 00000000..84812a8e
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-af/values-af.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..6d8ce8e5
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-am/values-am.xml
@@ -0,0 +1,16 @@
+
+
+ "ወደ መነሻ ይዳስሱ"
+ "ወደ ላይ ይዳስሱ"
+ "ተጨማሪ አማራጮች"
+ "ተከናውኗል"
+ "ሁሉንም ይመልከቱ"
+ "መተግበሪያ ይምረጡ"
+ "መጠይቅ አጽዳ"
+ "የፍለጋ ጥያቄ"
+ "ፍለጋ"
+ "መጠይቅ ያስረክቡ"
+ "የድምፅ ፍለጋ"
+ "ከሚከተለው ጋር ያጋሩ"
+ "ከ%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
new file mode 100644
index 00000000..6ee5951b
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ar/values-ar.xml
@@ -0,0 +1,16 @@
+
+
+ "التنقل إلى الشاشة الرئيسية"
+ "التنقل إلى أعلى"
+ "خيارات إضافية"
+ "تم"
+ "عرض الكل"
+ "اختيار تطبيق"
+ "محو طلب البحث"
+ "طلب البحث"
+ "بحث"
+ "إرسال طلب البحث"
+ "البحث الصوتي"
+ "مشاركة مع"
+ "مشاركة مع %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
new file mode 100644
index 00000000..aa7ff35a
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bg/values-bg.xml
@@ -0,0 +1,16 @@
+
+
+ "Придвижване към „Начало“"
+ "Придвижване нагоре"
+ "Още опции"
+ "Готово"
+ "Вижте всички"
+ "Изберете приложение"
+ "Изчистване на заявката"
+ "Заявка за търсене"
+ "Търсене"
+ "Изпращане на заявката"
+ "Гласово търсене"
+ "Споделяне със:"
+ "Споделяне със: %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
new file mode 100644
index 00000000..3ce5f3ee
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml
@@ -0,0 +1,16 @@
+
+
+ "হোম এ নেভিগেট করুন"
+ "উপরের দিকে নেভিগেট করুন"
+ "আরো বিকল্প"
+ "সম্পন্ন হয়েছে"
+ "সবগুলো দেখুন"
+ "একটি অ্যাপ্লিকেশান চয়ন করুন"
+ "ক্যোয়ারী সাফ করুন"
+ "ক্যোয়ারী অনুসন্ধান করুন"
+ "অনুসন্ধান করুন"
+ "ক্যোয়ারী জমা দিন"
+ "ভয়েস অনুসন্ধান"
+ "এর সাথে ভাগ করুন"
+ "%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
new file mode 100644
index 00000000..80dd170d
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ca/values-ca.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..a862180a
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-cs/values-cs.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..91f5306b
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-da/values-da.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..b6912f6b
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-de/values-de.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..ad57bc33
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-el/values-el.xml
@@ -0,0 +1,16 @@
+
+
+ "Πλοήγηση στην αρχική σελίδα"
+ "Πλοήγηση προς τα επάνω"
+ "Περισσότερες επιλογές"
+ "Τέλος"
+ "Προβολή όλων"
+ "Επιλέξτε κάποια εφαρμογή"
+ "Διαγραφή ερωτήματος"
+ "Ερώτημα αναζήτησης"
+ "Αναζήτηση"
+ "Υποβολή ερωτήματος"
+ "Φωνητική αναζήτηση"
+ "Κοινή χρήση με"
+ "Κοινή χρήση με %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
new file mode 100644
index 00000000..dec9a30f
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..dec9a30f
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..7e84c580
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..b05af8fe
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es/values-es.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..90b6d81a
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..653ccd97
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..04db10a5
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fa/values-fa.xml
@@ -0,0 +1,16 @@
+
+
+ "پیمایش به صفحه اصلی"
+ "پیمایش به بالا"
+ "گزینههای بیشتر"
+ "انجام شد"
+ "مشاهده همه"
+ "انتخاب برنامه"
+ "پاک کردن عبارت جستجو"
+ "عبارت جستجو"
+ "جستجو"
+ "ارسال عبارت جستجو"
+ "جستجوی شفاهی"
+ "اشتراکگذاری با"
+ "اشتراکگذاری با %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
new file mode 100644
index 00000000..883e8f4e
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fi/values-fi.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..bb824264
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..a73a2b33
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr/values-fr.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..d5ca5e2a
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..e38bb90b
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 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
new file mode 100644
index 00000000..56a5d476
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml
@@ -0,0 +1,8 @@
+
+
+
+
\ 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
new file mode 100644
index 00000000..c3f81b63
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hi/values-hi.xml
@@ -0,0 +1,16 @@
+
+
+ "मुखपृष्ठ पर नेविगेट करें"
+ "ऊपर नेविगेट करें"
+ "अधिक विकल्प"
+ "पूर्ण"
+ "सभी देखें"
+ "कोई एप्लिकेशन चुनें"
+ "क्वेरी साफ़ करें"
+ "खोज क्वेरी"
+ "खोजें"
+ "क्वेरी सबमिट करें"
+ "ध्वनि खोज"
+ "इसके द्वारा साझा करें"
+ "%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
new file mode 100644
index 00000000..4eefcd30
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hr/values-hr.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..7a92ebe5
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hu/values-hu.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..9eaf5bba
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml
@@ -0,0 +1,16 @@
+
+
+ "Ուղղվել տուն"
+ "Ուղղվել վերև"
+ "Այլ ընտրանքներ"
+ "Կատարված է"
+ "Տեսնել բոլորը"
+ "Ընտրել ծրագիր"
+ "Մաքրել հարցումը"
+ "Որոնման հարցում"
+ "Որոնել"
+ "Ուղարկել հարցումը"
+ "Ձայնային որոնում"
+ "Տարածել"
+ "Տարածել ըստ %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
new file mode 100644
index 00000000..ca27a16a
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-in/values-in.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..a43b8296
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..5afc3976
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-it/values-it.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..8d76e348
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-iw/values-iw.xml
@@ -0,0 +1,16 @@
+
+
+ "נווט לדף הבית"
+ "נווט למעלה"
+ "עוד אפשרויות"
+ "בוצע"
+ "ראה הכול"
+ "בחר אפליקציה"
+ "מחק שאילתה"
+ "שאילתת חיפוש"
+ "חפש"
+ "שלח שאילתה"
+ "חיפוש קולי"
+ "שתף עם"
+ "שתף עם %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
new file mode 100644
index 00000000..d638b592
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ja/values-ja.xml
@@ -0,0 +1,16 @@
+
+
+ "ホームへ移動"
+ "上へ移動"
+ "その他のオプション"
+ "完了"
+ "すべて表示"
+ "アプリの選択"
+ "検索キーワードを削除"
+ "検索キーワード"
+ "検索"
+ "検索キーワードを送信"
+ "音声検索"
+ "共有"
+ "%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
new file mode 100644
index 00000000..269ffd01
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml
@@ -0,0 +1,16 @@
+
+
+ "მთავარზე ნავიგაცია"
+ "ზემოთ ნავიგაცია"
+ "მეტი ვარიანტები"
+ "დასრულდა"
+ "ყველას ნახვა"
+ "აპის არჩევა"
+ "მოთხოვნის გასუფთავება"
+ "ძიების მოთხოვნა"
+ "ძიება"
+ "მოთხოვნის გადაგზავნა"
+ "ხმოვანი ძიება"
+ "გაზიარება:"
+ "%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
new file mode 100644
index 00000000..87d0ff34
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml
@@ -0,0 +1,16 @@
+
+
+ "Негізгі бетте қозғалу"
+ "Жоғары қозғалу"
+ "Басқа опциялар"
+ "Орындалды"
+ "Барлығын көру"
+ "Қолданбаны таңдау"
+ "Сұрақты жою"
+ "Сұрақты іздеу"
+ "Іздеу"
+ "Сұрақты жіберу"
+ "Дауыс арқылы іздеу"
+ "Бөлісу"
+ "%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
new file mode 100644
index 00000000..14bcf76e
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-km-rKH/values-km-rKH.xml
@@ -0,0 +1,16 @@
+
+
+ "រកមើលទៅដើម"
+ "រកមើលឡើងលើ"
+ "ជម្រើសច្រើនទៀត"
+ "រួចរាល់"
+ "មើលទាំងអស់"
+ "ជ្រើសកម្មវិធី"
+ "សម្អាតសំណួរ"
+ "ស្វែងរកសំណួរ"
+ "ស្វែងរក"
+ "ដាក់ស្នើសំណួរ"
+ "ការស្វែងរកសំឡេង"
+ "ចែករំលែកជាមួយ"
+ "ចែករំលែកជាមួយ %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
new file mode 100644
index 00000000..52464af0
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kn-rIN/values-kn-rIN.xml
@@ -0,0 +1,16 @@
+
+
+ "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"
+ "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"
+ "ಮುಗಿದಿದೆ"
+ "ಎಲ್ಲವನ್ನೂ ನೋಡಿ"
+ "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ"
+ "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"
+ "ಹುಡುಕು"
+ "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು"
+ "ಧ್ವನಿ ಹುಡುಕಾಟ"
+ "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"
+ "%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
new file mode 100644
index 00000000..60a62613
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ko/values-ko.xml
@@ -0,0 +1,16 @@
+
+
+ "홈 탐색"
+ "위로 탐색"
+ "옵션 더보기"
+ "완료"
+ "전체 보기"
+ "앱 선택"
+ "검색어 삭제"
+ "검색어"
+ "검색"
+ "검색어 보내기"
+ "음성 검색"
+ "공유 대상"
+ "%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
new file mode 100644
index 00000000..6d6999bb
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ky-rKG/values-ky-rKG.xml
@@ -0,0 +1,16 @@
+
+
+ "Үйгө багыттоо"
+ "Жогору"
+ "Көбүрөөк мүмкүнчүлүктөр"
+ "Даяр"
+ "Бардыгын көрүү"
+ "Колдонмо тандоо"
+ "Талаптарды тазалоо"
+ "Издөө талаптары"
+ "Издөө"
+ "Талап жөнөтүү"
+ "Үн аркылуу издөө"
+ "Бөлүшүү"
+ "%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
new file mode 100644
index 00000000..fabf9eb2
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-land/values-land.xml
@@ -0,0 +1,10 @@
+
+
+ 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
new file mode 100644
index 00000000..55aba508
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml
@@ -0,0 +1,14 @@
+
+
+ true
+ true
+ 440dp
+ 192dip
+ - 60%
+ - 90%
+ - 60%
+ - 90%
+ 4
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lo-rLA/values-lo-rLA.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lo-rLA/values-lo-rLA.xml
new file mode 100644
index 00000000..562656b0
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lo-rLA/values-lo-rLA.xml
@@ -0,0 +1,16 @@
+
+
+ "ກັບໄປໜ້າຫຼັກ"
+ "ຂຶ້ນເທິງ"
+ "ໂຕເລືອກອື່ນ"
+ "ແລ້ວໆ"
+ "ເບິ່ງທັງຫມົດ"
+ "ເລືອກແອັບຯ"
+ "ລຶບຂໍ້ຄວາມຊອກຫາ"
+ "ຊອກຫາ"
+ "ຊອກຫາ"
+ "ສົ່ງການຊອກຫາ"
+ "ຊອກຫາດ້ວຍສຽງ"
+ "ແບ່ງປັນກັບ"
+ "ແບ່ງປັນກັບ %s"
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lt/values-lt.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lt/values-lt.xml
new file mode 100644
index 00000000..a7818b51
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lt/values-lt.xml
@@ -0,0 +1,16 @@
+
+
+ "Eiti į pagrindinį puslapį"
+ "Eiti į viršų"
+ "Daugiau parinkčių"
+ "Atlikta"
+ "Peržiūrėti viską"
+ "Pasirinkti programą"
+ "Išvalyti užklausą"
+ "Paieškos užklausa"
+ "Paieška"
+ "Pateikti užklausą"
+ "Paieška balsu"
+ "Bendrinti naudojant"
+ "Bendrinti naudojant „%s“"
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lv/values-lv.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lv/values-lv.xml
new file mode 100644
index 00000000..5c9058b7
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-lv/values-lv.xml
@@ -0,0 +1,16 @@
+
+
+ "Pārvietoties uz sākuma ekrānu"
+ "Pārvietoties augšup"
+ "Vairāk opciju"
+ "Gatavs"
+ "Skatīt visu"
+ "Izvēlieties lietotni"
+ "Notīrīt vaicājumu"
+ "Meklēšanas vaicājums"
+ "Meklēt"
+ "Iesniegt vaicājumu"
+ "Meklēšana ar balsi"
+ "Kopīgot ar:"
+ "Kopīgot ar %s"
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mk-rMK/values-mk-rMK.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mk-rMK/values-mk-rMK.xml
new file mode 100644
index 00000000..cab46deb
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mk-rMK/values-mk-rMK.xml
@@ -0,0 +1,15 @@
+
+
+ "Движи се кон дома"
+ "Движи се нагоре"
+ "Повеќе опции"
+ "Готово"
+ "Види ги сите"
+ "Избери апликација"
+ "Исчисти барање"
+ "Пребарај барање"
+ "Пребарај"
+ "Поднеси барање"
+ "Гласовно пребарување"
+ "Сподели со"
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ml-rIN/values-ml-rIN.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ml-rIN/values-ml-rIN.xml
new file mode 100644
index 00000000..93c373f2
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ml-rIN/values-ml-rIN.xml
@@ -0,0 +1,16 @@
+
+
+ "ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക"
+ "കൂടുതല് ഓപ്ഷനുകള്"
+ "പൂർത്തിയാക്കി"
+ "എല്ലാം കാണുക"
+ "ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക"
+ "അന്വേഷണം മായ്ക്കുക"
+ "തിരയൽ അന്വേഷണം"
+ "തിരയൽ"
+ "അന്വേഷണം സമർപ്പിക്കുക"
+ "വോയ്സ് തിരയൽ"
+ "ഇവരുമായി പങ്കിടുക"
+ "%s എന്നതുമായി പങ്കിടുക"
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mn-rMN/values-mn-rMN.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mn-rMN/values-mn-rMN.xml
new file mode 100644
index 00000000..5ee6af16
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mn-rMN/values-mn-rMN.xml
@@ -0,0 +1,16 @@
+
+
+ "Нүүр хуудас руу шилжих"
+ "Дээш шилжих"
+ "Нэмэлт сонголтууд"
+ "Дууссан"
+ "Бүгдийг харах"
+ "Апп сонгох"
+ "Асуулгыг цэвэрлэх"
+ "Хайх асуулга"
+ "Хайх"
+ "Асуулгыг илгээх"
+ "Дуут хайлт"
+ "Хуваалцах"
+ "%s-тай хуваалцах"
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mr-rIN/values-mr-rIN.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mr-rIN/values-mr-rIN.xml
new file mode 100644
index 00000000..a6ec02de
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-mr-rIN/values-mr-rIN.xml
@@ -0,0 +1,16 @@
+
+
+ "मुख्यपृष्ठ नेव्हिगेट करा"
+ "वर नेव्हिगेट करा"
+ "अधिक पर्याय"
+ "पूर्ण झाले"
+ "सर्व पहा"
+ "एक अॅप निवडा"
+ "क्वेरी स्पष्ट करा"
+ "शोध क्वेरी"
+ "शोध"
+ "क्वेरी सबमिट करा"
+ "व्हॉइस शोध"
+ "यांच्यासह सामायिक करा"
+ "%s सह सामायिक करा"
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ms-rMY/values-ms-rMY.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ms-rMY/values-ms-rMY.xml
new file mode 100644
index 00000000..9d9261e1
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ms-rMY/values-ms-rMY.xml
@@ -0,0 +1,16 @@
+
+
+ "Navigasi skrin utama"
+ "Navigasi ke atas"
+ "Lagi pilihan"
+ "Selesai"
+ "Lihat semua"
+ "Pilih apl"
+ "Kosongkan pertanyaan"
+ "Pertanyaan carian"
+ "Cari"
+ "Serah pertanyaan"
+ "Carian suara"
+ "Kongsi dengan"
+ "Kongsi dengan %s"
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-my-rMM/values-my-rMM.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-my-rMM/values-my-rMM.xml
new file mode 100644
index 00000000..43155fba
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-my-rMM/values-my-rMM.xml
@@ -0,0 +1,16 @@
+
+
+ "မူလနေရာကို သွားရန်"
+ "အပေါ်သို့သွားရန်"
+ "ပိုမိုရွေးချယ်စရာများ"
+ "ပြီးဆုံးပါပြီ"
+ "အားလုံးကို ကြည့်ရန်"
+ "အပလီကေးရှင်း တစ်ခုခုကို ရွေးချယ်ပါ"
+ "ရှာစရာ အချက်အလက်များ ရှင်းလင်းရန်"
+ "ရှာစရာ အချက်အလက်နေရာ"
+ "ရှာဖွေရန်"
+ "ရှာဖွေစရာ အချက်အလက်ကို အတည်ပြုရန်"
+ "အသံဖြင့် ရှာဖွေခြင်း"
+ "မျှဝေဖို့ ရွေးပါ"
+ "%s ကို မျှဝေပါရန်"
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-nb/values-nb.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-nb/values-nb.xml
new file mode 100644
index 00000000..5731f03b
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-nb/values-nb.xml
@@ -0,0 +1,16 @@
+
+
+ "Gå til startsiden"
+ "Gå opp"
+ "Flere alternativer"
+ "Ferdig"
+ "Se alle"
+ "Velg en app"
+ "Slett søket"
+ "Søkeord"
+ "Søk"
+ "Utfør søket"
+ "Talesøk"
+ "Del med"
+ "Del med %s"
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ne-rNP/values-ne-rNP.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ne-rNP/values-ne-rNP.xml
new file mode 100644
index 00000000..33cdeb99
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ne-rNP/values-ne-rNP.xml
@@ -0,0 +1,16 @@
+
+
+ "गृह खोज्नुहोस्"
+ "माथि खोज्नुहोस्"
+ "थप विकल्पहरू"
+ "सम्पन्न भयो"
+ "सबै हेर्नुहोस्"
+ "एउटा अनुप्रयोग छान्नुहोस्"
+ "प्रश्न हटाउनुहोस्"
+ "जिज्ञासाको खोज गर्नुहोस्"
+ "खोज्नुहोस्"
+ "जिज्ञासा पेस गर्नुहोस्"
+ "भ्वाइस खोजी"
+ "साझेदारी गर्नुहोस्..."
+ "%s सँग साझेदारी गर्नुहोस्"
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-night-v8/values-night-v8.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-night-v8/values-night-v8.xml
new file mode 100644
index 00000000..c10c0361
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-night-v8/values-night-v8.xml
@@ -0,0 +1,7 @@
+
+
+
+
\ 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
new file mode 100644
index 00000000..2efd0aa6
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-nl/values-nl.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..a01797de
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pl/values-pl.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..7a925dc7
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-port/values-port.xml
@@ -0,0 +1,4 @@
+
+
+ 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
new file mode 100644
index 00000000..04c8392d
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..b18ecb72
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pt/values-pt.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..e4747858
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ro/values-ro.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..ac7bee01
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ru/values-ru.xml
@@ -0,0 +1,16 @@
+
+
+ "Перейти на главный экран"
+ "Перейти вверх"
+ "Другие параметры"
+ "Готово"
+ "Показать все"
+ "Выбрать приложение"
+ "Удалить запрос"
+ "Поисковый запрос"
+ "Поиск"
+ "Отправить запрос"
+ "Голосовой поиск"
+ "Открыть доступ"
+ "Открыть доступ пользователю %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
new file mode 100644
index 00000000..57bf17c5
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-si-rLK/values-si-rLK.xml
@@ -0,0 +1,16 @@
+
+
+ "ගෙදරට සංචාලනය කරන්න"
+ "ඉහලට සංචාලනය කරන්න"
+ "තවත් විකල්ප"
+ "අවසාන වූ"
+ "සියල්ල බලන්න"
+ "යෙදුමක් තෝරන්න"
+ "විමසුම හිස් කරන්න"
+ "සෙවුම් විමසුම"
+ "සෙවීම"
+ "විමසුම යොමු කරන්න"
+ "හඬ සෙවීම"
+ "සමඟ බෙදාගන්න"
+ "%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
new file mode 100644
index 00000000..803a8509
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sk/values-sk.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..fedbf1b4
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sl/values-sl.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..473792fd
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sr/values-sr.xml
@@ -0,0 +1,16 @@
+
+
+ "Одлазак на Почетну"
+ "Кретање нагоре"
+ "Још опција"
+ "Готово"
+ "Прикажи све"
+ "Избор апликације"
+ "Брисање упита"
+ "Упит за претрагу"
+ "Претрага"
+ "Слање упита"
+ "Гласовна претрага"
+ "Дели са"
+ "Дели са апликацијом %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
new file mode 100644
index 00000000..8376337e
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sv/values-sv.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..3c123274
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sw/values-sw.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..4defbcd1
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml
@@ -0,0 +1,12 @@
+
+
+ 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
new file mode 100644
index 00000000..433fd076
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ta-rIN/values-ta-rIN.xml
@@ -0,0 +1,16 @@
+
+
+ "முகப்பிற்கு வழிசெலுத்து"
+ "மேலே வழிசெலுத்து"
+ "மேலும் விருப்பங்கள்"
+ "முடிந்தது"
+ "எல்லாம் காட்டு"
+ "பயன்பாட்டைத் தேர்வுசெய்க"
+ "வினவலை அழி"
+ "தேடல் வினவல்"
+ "தேடு"
+ "வினவலைச் சமர்ப்பி"
+ "குரல் தேடல்"
+ "இதனுடன் பகிர்"
+ "%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
new file mode 100644
index 00000000..2140213f
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-te-rIN/values-te-rIN.xml
@@ -0,0 +1,16 @@
+
+
+ "హోమ్కు నావిగేట్ చేయండి"
+ "పైకి నావిగేట్ చేయండి"
+ "మరిన్ని ఎంపికలు"
+ "పూర్తయింది"
+ "అన్నీ చూడండి"
+ "అనువర్తనాన్ని ఎంచుకోండి"
+ "ప్రశ్నను క్లియర్ చేయి"
+ "ప్రశ్న శోధించండి"
+ "శోధించు"
+ "ప్రశ్నని సమర్పించు"
+ "వాయిస్ శోధన"
+ "వీరితో భాగస్వామ్యం చేయి"
+ "%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
new file mode 100644
index 00000000..dbd3724c
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-th/values-th.xml
@@ -0,0 +1,16 @@
+
+
+ "นำทางไปหน้าแรก"
+ "นำทางขึ้น"
+ "ตัวเลือกอื่น"
+ "เสร็จสิ้น"
+ "ดูทั้งหมด"
+ "เลือกแอป"
+ "ล้างข้อความค้นหา"
+ "ข้อความค้นหา"
+ "ค้นหา"
+ "ส่งข้อความค้นหา"
+ "ค้นหาด้วยเสียง"
+ "แชร์กับ"
+ "แชร์กับ %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
new file mode 100644
index 00000000..55a0f6c8
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-tl/values-tl.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..2c227a35
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-tr/values-tr.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..0bf05dae
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-uk/values-uk.xml
@@ -0,0 +1,16 @@
+
+
+ "Перейти на головний"
+ "Перейти вгору"
+ "Інші опції"
+ "Готово"
+ "Переглянути всі"
+ "Вибрати програму"
+ "Очистити запит"
+ "Пошуковий запит"
+ "Пошук"
+ "Надіслати запит"
+ "Голосовий пошук"
+ "Надіслати через"
+ "Надіслати через %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
new file mode 100644
index 00000000..f4197592
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ur-rPK/values-ur-rPK.xml
@@ -0,0 +1,16 @@
+
+
+ "ہوم پر نیویگیٹ کریں"
+ "اوپر نیویگیٹ کریں"
+ "مزید اختیارات"
+ "ہو گیا"
+ "سبھی دیکھیں"
+ "ایک ایپ منتخب کریں"
+ "استفسار صاف کریں"
+ "استفسار تلاش کریں"
+ "تلاش کریں"
+ "استفسار جمع کرائیں"
+ "صوتی تلاش"
+ "اشتراک کریں مع"
+ "%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
new file mode 100644
index 00000000..15933f1c
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-uz-rUZ/values-uz-rUZ.xml
@@ -0,0 +1,15 @@
+
+
+ "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
new file mode 100644
index 00000000..4b2c585f
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v11/values-v11.xml
@@ -0,0 +1,165 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ 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
new file mode 100644
index 00000000..aa0db6fb
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v12/values-v12.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v14/values-v14.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v14/values-v14.xml
new file mode 100644
index 00000000..7239a2c8
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v14/values-v14.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v17/values-v17.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v17/values-v17.xml
new file mode 100644
index 00000000..3f2d1d67
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v17/values-v17.xml
@@ -0,0 +1,50 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ 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
new file mode 100644
index 00000000..7dad77f9
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v18/values-v18.xml
@@ -0,0 +1,4 @@
+
+
+ 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
new file mode 100644
index 00000000..a7e34015
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v21/values-v21.xml
@@ -0,0 +1,256 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ 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
new file mode 100644
index 00000000..73045f9a
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-vi/values-vi.xml
@@ -0,0 +1,16 @@
+
+
+ "Đ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
new file mode 100644
index 00000000..fd9dac9b
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 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
new file mode 100644
index 00000000..5b7dcf65
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml
@@ -0,0 +1,5 @@
+
+
+ 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
new file mode 100644
index 00000000..dcd19ee3
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 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
new file mode 100644
index 00000000..4c058c26
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml
@@ -0,0 +1,5 @@
+
+
+ 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
new file mode 100644
index 00000000..966aafb2
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml
@@ -0,0 +1,4 @@
+
+
+ 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
new file mode 100644
index 00000000..98b3f8c2
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml
@@ -0,0 +1,4 @@
+
+
+ 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
new file mode 100644
index 00000000..ba8d9dae
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml
@@ -0,0 +1,10 @@
+
+
+ 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
new file mode 100644
index 00000000..0c285368
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
@@ -0,0 +1,121 @@
+
+
+
+ - 短信
+ - 邮件
+
+
+ - %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
new file mode 100644
index 00000000..462f2b36
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml
@@ -0,0 +1,16 @@
+
+
+ "瀏覽主頁"
+ "向上瀏覽"
+ "更多選項"
+ "完成"
+ "顯示全部"
+ "選擇應用程式"
+ "清除查詢"
+ "搜尋查詢"
+ "搜尋"
+ "提交查詢"
+ "語音搜尋"
+ "分享對象"
+ "與「%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
new file mode 100644
index 00000000..794f7fd5
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml
@@ -0,0 +1,121 @@
+
+
+
+ - 短信
+ - 郵件
+
+
+ - %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
new file mode 100644
index 00000000..d383c891
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zu/values-zu.xml
@@ -0,0 +1,16 @@
+
+
+ "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
new file mode 100644
index 00000000..a29a44db
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values/values.xml
@@ -0,0 +1,1629 @@
+
+
+
+ - -%s
+ - --%s
+ - --%s
+ - --%s
+
+
+ - Messaging
+ - Email
+
+
+
+
+
+ true
+ false
+ true
+ true
+ false
+ true
+ false
+ @android:color/black
+ #7fa87f
+ @android:color/black
+ @android:color/black
+ @color/material_deep_teal_200
+ @color/material_deep_teal_500
+ #ff424242
+ #ffeeeeee
+ #ff303030
+ #ffeeeeee
+ #66000000
+ #80ffffff
+ #80000000
+ @color/bright_foreground_material_light
+ @color/bright_foreground_material_dark
+ @android:color/white
+ @android:color/black
+ #ff5a595b
+ #ffd6d7d7
+ #80bebebe
+ #80323232
+ #ffbebebe
+ #ff323232
+ #6680cbc4
+ #66009688
+ @color/bright_foreground_disabled_material_dark
+ @color/bright_foreground_disabled_material_light
+ #FF039BE5
+ #FF01579B
+ #FF40C4FF
+ #FF00B0FF
+ @color/material_deep_teal_200
+ @color/material_deep_teal_500
+ #ff37474f
+ #ff263238
+ #ff21272b
+ #ff80cbc4
+ #ff009688
+ #ff000000
+ #ff757575
+ #ff212121
+ #ffefefef
+ #ffffffff
+ #de000000
+ #4Dffffff
+ #39000000
+ #4dffffff
+ #1f000000
+ #b3ffffff
+ #8a000000
+ #36ffffff
+ #24000000
+ #ff616161
+ #ffbdbdbd
+ #ffbdbdbd
+ #fff1f1f1
+ #335b5b5b
+ 16dp
+ 56dp
+ 4dp
+ 16dp
+ 0dp
+ 10dp
+ 6dp
+ 40dp
+ 48dp
+ 180dp
+ 5dp
+ -3dp
+ 48dp
+ 48dp
+ 36dp
+ 48dp
+ @dimen/abc_control_inset_material
+ 6dp
+ 8dp
+ @dimen/abc_control_padding_material
+ 320dp
+ 2dp
+ 4dp
+ 4dp
+ 8dp
+ - 65%
+ - 95%
+ 24dp
+ 18dp
+ - 0.30
+ - 0.26
+ 32dip
+ 8dip
+ 8dip
+ 7dp
+ 4dp
+ 10dp
+ 16dp
+ @dimen/abc_action_bar_content_inset_material
+ 296dp
+ 320dip
+ 160dip
+ 3dp
+ 14sp
+ 14sp
+ 14sp
+ 12sp
+ 34sp
+ 45sp
+ 56sp
+ 112sp
+ 24sp
+ 22sp
+ 18sp
+ 16sp
+ 14sp
+ 16sp
+ 16dp
+ 20sp
+ 20dp
+ - 80%
+ - 100%
+ - 320dp
+ - 320dp
+ - 0.30
+ - 0.26
+ 64dp
+ 64dp
+ 12dp
+ 26sp
+ 20sp
+ 17sp
+ 14sp
+ 33sp
+ #3333B5E5
+
+
+
+
+
+
+
+
+
+ 220
+ 150
+ 2
+ 127
+ 999
+
+ - %1$s result for \"%2$s\"
+
+ - %1$s results for \"%2$s\"
+
+ Navigate home
+ %1$s, %2$s
+ %1$s, %2$s, %3$s
+ Navigate up
+ More options
+ Done
+ See all
+ Choose an app
+ Search…
+ Clear query
+ Search query
+ Search
+ Submit query
+ Voice search
+ Share with
+ Share with %s
+ Collapse
+ Confirm to delete folder and its notes?
+ Confirm to delete this note?
+ Confirm to delete the selected %d notes?
+ Delete selected notes
+ Notes
+ Notes 2x2
+ Notes 4x4
+ Delete
+ Call notes
+ cancel
+ set
+ Delete reminder successfully
+ Dummy Button
+ 寒假快乐!
+ Sorry, can not set clock on empty note
+ Sorry, can not send and empty note to home
+ The note is not exist
+ Export failed, please check SD card
+ SD card busy, not available now
+ Sync is canceled
+ Sync failed, internal error occurs
+ Sync failed, please check network and account settings
+ Export fail
+ notes_%s.txt
+ /MIUI/notes/
+ The folder %1$s exist, please rename
+ yyyyMMdd
+ MMMd kk:mm
+ Export text file (%1$s) to SD (%2$s) directory
+ (%d)
+ Have moved selected %1$d notes to %2$s folder
+ Input name
+ Note added to home
+ Remind me
+ New Folder
+ Delete
+ Deselect all
+ Export text
+ Change folder name
+ Delete folder
+ View folder
+ Large
+ Medium
+ Font size
+ Small
+ Super
+ Enter check list
+ Move to folder
+ Parent folder
+ Leave check list
+ Delete reminder
+ Search
+ Select all
+ Nothing selected, the operation is invalid
+ %d selected
+ Send to home
+ Settings
+ Share
+ Sync
+ Cancel syncing
+ Select folder
+ Expired
+ Send email
+ Open map
+ Call
+ Browse web
+ Take a look
+ Got it
+ Add note
+ ...
+ Sync notes with google task
+ Sync account
+ Add account
+ New note background color random
+ Cancel syncing
+ Sync immediately
+ Current account %1$s
+ All sync related information will be deleted, which may result in duplicated items sometime
+ Please select a google account. Local notes will be synced with google task.
+ Sync notes
+ Last sync time %1$s
+ yyyy-MM-dd hh:mm:ss
+ Cancel
+ Change sync account
+ Remove sync account
+ Settings
+ Cannot change the account because sync is in progress
+ %1$s has been set as the sync account
+ Notes
+ Search notes
+ Searching Notes
+ Text in your notes
+ Set reminder
+ 999+
+ Export successful
+ Sync is successful with account %1$s
+ Getting remote note list...
+ Logging into %1$s...
+ Synchronize local notes with Google Task...
+ Sync is canceled
+ Sync is failed
+ Sync is successful
+ Syncing notes...
+ FullscreenActivity
+ SplashActivity
+ No associated note found, click to create associated note.
+ Privacy mode,can not see note content
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml
new file mode 100644
index 00000000..724f96fd
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml
@@ -0,0 +1,1410 @@
+
+truefalsetruetruefalsetruefalse@android:color/black#7fa87f@android:color/black@android:color/black@color/material_deep_teal_200@color/material_deep_teal_500#ff424242#ffeeeeee#ff303030#ffeeeeee#80ffffff#80000000@color/bright_foreground_material_light@color/bright_foreground_material_dark@android:color/white@android:color/black#ff5a595b#ffd6d7d7#80bebebe#80323232#ffbebebe#ff323232#6680cbc4#66009688@color/bright_foreground_disabled_material_dark@color/bright_foreground_disabled_material_light@color/material_deep_teal_200@color/material_deep_teal_500#ff37474f#ff263238#ff21272b#ff80cbc4#ff009688#ff000000#ff757575#ff212121#ffefefef#ffffffff#de000000#4Dffffff#39000000#4dffffff#1f000000#b3ffffff#8a000000#36ffffff#24000000#ff616161#ffbdbdbd#ffbdbdbd#fff1f1f116dp56dp4dp16dp0dp10dp6dp40dp48dp180dp5dp-3dp48dp48dp36dp48dp@dimen/abc_control_inset_material6dp8dp@dimen/abc_control_padding_material320dp2dp4dp4dp8dp- 65%
- 95%
24dp18dp- 0.30
- 0.26
32dip8dip8dip7dp4dp10dp16dp@dimen/abc_action_bar_content_inset_material296dp320dip160dip3dp14sp14sp14sp12sp34sp45sp56sp112sp24sp22sp18sp16sp14sp16sp16dp20sp20dp- 80%
- 100%
- 320dp
- 320dp
- 0.30
- 0.26
64dp64dp12dp#3333B5E5 2201502127999Navigate home%1$s, %2$s%1$s, %2$s, %3$sNavigate upMore optionsDoneSee allChoose an appSearch…Clear querySearch querySearchSubmit queryVoice searchShare withShare with %sCollapse999+"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""ወደ መነሻ ይዳስሱ""ወደ ላይ ይዳስሱ""ተጨማሪ አማራጮች""ተከናውኗል""ሁሉንም ይመልከቱ""መተግበሪያ ይምረጡ""መጠይቅ አጽዳ""የፍለጋ ጥያቄ""ፍለጋ""መጠይቅ ያስረክቡ""የድምፅ ፍለጋ""ከሚከተለው ጋር ያጋሩ""ከ%s ጋር ያጋሩ""التنقل إلى الشاشة الرئيسية""التنقل إلى أعلى""خيارات إضافية""تم""عرض الكل""اختيار تطبيق""محو طلب البحث""طلب البحث""بحث""إرسال طلب البحث""البحث الصوتي""مشاركة مع""مشاركة مع %s""Придвижване към „Начало“""Придвижване нагоре""Още опции""Готово""Вижте всички""Изберете приложение""Изчистване на заявката""Заявка за търсене""Търсене""Изпращане на заявката""Гласово търсене""Споделяне със:""Споделяне със: %s""হোম এ নেভিগেট করুন""উপরের দিকে নেভিগেট করুন""আরো বিকল্প""সম্পন্ন হয়েছে""সবগুলো দেখুন""একটি অ্যাপ্লিকেশান চয়ন করুন""ক্যোয়ারী সাফ করুন""ক্যোয়ারী অনুসন্ধান করুন""অনুসন্ধান করুন""ক্যোয়ারী জমা দিন""ভয়েস অনুসন্ধান""এর সাথে ভাগ করুন""%s এর সাথে ভাগ করুন""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""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""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""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""Πλοήγηση στην αρχική σελίδα""Πλοήγηση προς τα επάνω""Περισσότερες επιλογές""Τέλος""Προβολή όλων""Επιλέξτε κάποια εφαρμογή""Διαγραφή ερωτήματος""Ερώτημα αναζήτησης""Αναζήτηση""Υποβολή ερωτήματος""Φωνητική αναζήτηση""Κοινή χρήση με""Κοινή χρήση με %s""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""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""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""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""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""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""پیمایش به صفحه اصلی""پیمایش به بالا""گزینههای بیشتر""انجام شد""مشاهده همه""انتخاب برنامه""پاک کردن عبارت جستجو""عبارت جستجو""جستجو""ارسال عبارت جستجو""جستجوی شفاهی""اشتراکگذاری با""اشتراکگذاری با %s""Siirry etusivulle""Siirry ylös""Lisää""Valmis""Näytä kaikki""Valitse sovellus""Tyhjennä kysely""Hakulauseke""Haku""Lähetä kysely""Puhehaku""Jakaminen:""Jakaminen: %s""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""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""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"54dip"मुखपृष्ठ पर नेविगेट करें""ऊपर नेविगेट करें""अधिक विकल्प""पूर्ण""सभी देखें""कोई एप्लिकेशन चुनें""क्वेरी साफ़ करें""खोज क्वेरी""खोजें""क्वेरी सबमिट करें""ध्वनि खोज""इसके द्वारा साझा करें""%s के साथ साझा करें""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""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""Ուղղվել տուն""Ուղղվել վերև""Այլ ընտրանքներ""Կատարված է""Տեսնել բոլորը""Ընտրել ծրագիր""Մաքրել հարցումը""Որոնման հարցում""Որոնել""Ուղարկել հարցումը""Ձայնային որոնում""Տարածել""Տարածել ըստ %s""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""Fara heim""Fara upp""Fleiri valkostir""Lokið""Sjá allt""Veldu forrit""Hreinsa fyrirspurn""Leitarfyrirspurn""Leita""Senda fyrirspurn""Raddleit""Deila með""Deila með %s""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""נווט לדף הבית""נווט למעלה""עוד אפשרויות""בוצע""ראה הכול""בחר אפליקציה""מחק שאילתה""שאילתת חיפוש""חפש""שלח שאילתה""חיפוש קולי""שתף עם""שתף עם %s""ホームへ移動""上へ移動""その他のオプション""完了""すべて表示""アプリの選択""検索キーワードを削除""検索キーワード""検索""検索キーワードを送信""音声検索""共有""%sと共有""მთავარზე ნავიგაცია""ზემოთ ნავიგაცია""მეტი ვარიანტები""დასრულდა""ყველას ნახვა""აპის არჩევა""მოთხოვნის გასუფთავება""ძიების მოთხოვნა""ძიება""მოთხოვნის გადაგზავნა""ხმოვანი ძიება""გაზიარება:""%s-თან გაზიარება""Негізгі бетте қозғалу""Жоғары қозғалу""Басқа опциялар""Орындалды""Барлығын көру""Қолданбаны таңдау""Сұрақты жою""Сұрақты іздеу""Іздеу""Сұрақты жіберу""Дауыс арқылы іздеу""Бөлісу""%s бөлісу""រកមើលទៅដើម""រកមើលឡើងលើ""ជម្រើសច្រើនទៀត""រួចរាល់""មើលទាំងអស់""ជ្រើសកម្មវិធី""សម្អាតសំណួរ""ស្វែងរកសំណួរ""ស្វែងរក""ដាក់ស្នើសំណួរ""ការស្វែងរកសំឡេង""ចែករំលែកជាមួយ""ចែករំលែកជាមួយ %s""ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು""ಮುಗಿದಿದೆ""ಎಲ್ಲವನ್ನೂ ನೋಡಿ""ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ""ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು""ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ""ಹುಡುಕು""ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು""ಧ್ವನಿ ಹುಡುಕಾಟ""ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ""%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ""홈 탐색""위로 탐색""옵션 더보기""완료""전체 보기""앱 선택""검색어 삭제""검색어""검색""검색어 보내기""음성 검색""공유 대상""%s와(과) 공유""Үйгө багыттоо""Жогору""Көбүрөөк мүмкүнчүлүктөр""Даяр""Бардыгын көрүү""Колдонмо тандоо""Талаптарды тазалоо""Издөө талаптары""Издөө""Талап жөнөтүү""Үн аркылуу издөө""Бөлүшүү""%s аркылуу бөлүшүү"truetrue48dp0dp32dp12dp14dptruetrue440dp192dip- 60%
- 90%
- 60%
- 90%
4"ກັບໄປໜ້າຫຼັກ""ຂຶ້ນເທິງ""ໂຕເລືອກອື່ນ""ແລ້ວໆ""ເບິ່ງທັງຫມົດ""ເລືອກແອັບຯ""ລຶບຂໍ້ຄວາມຊອກຫາ""ຊອກຫາ""ຊອກຫາ""ສົ່ງການຊອກຫາ""ຊອກຫາດ້ວຍສຽງ""ແບ່ງປັນກັບ""ແບ່ງປັນກັບ %s""Eiti į pagrindinį puslapį""Eiti į viršų""Daugiau parinkčių""Atlikta""Peržiūrėti viską""Pasirinkti programą""Išvalyti užklausą""Paieškos užklausa""Paieška""Pateikti užklausą""Paieška balsu""Bendrinti naudojant""Bendrinti naudojant „%s“""Pārvietoties uz sākuma ekrānu""Pārvietoties augšup""Vairāk opciju""Gatavs""Skatīt visu""Izvēlieties lietotni""Notīrīt vaicājumu""Meklēšanas vaicājums""Meklēt""Iesniegt vaicājumu""Meklēšana ar balsi""Kopīgot ar:""Kopīgot ar %s""Движи се кон дома""Движи се нагоре""Повеќе опции""Готово""Види ги сите""Избери апликација""Исчисти барање""Пребарај барање""Пребарај""Поднеси барање""Гласовно пребарување""Сподели со""ഹോമിലേക്ക് നാവിഗേറ്റുചെയ്യുക""മുകളിലേക്ക് നാവിഗേറ്റുചെയ്യുക""കൂടുതല് ഓപ്ഷനുകള്""പൂർത്തിയാക്കി""എല്ലാം കാണുക""ഒരു അപ്ലിക്കേഷൻ തിരഞ്ഞെടുക്കുക""അന്വേഷണം മായ്ക്കുക""തിരയൽ അന്വേഷണം""തിരയൽ""അന്വേഷണം സമർപ്പിക്കുക""വോയ്സ് തിരയൽ""ഇവരുമായി പങ്കിടുക""%s എന്നതുമായി പങ്കിടുക""Нүүр хуудас руу шилжих""Дээш шилжих""Нэмэлт сонголтууд""Дууссан""Бүгдийг харах""Апп сонгох""Асуулгыг цэвэрлэх""Хайх асуулга""Хайх""Асуулгыг илгээх""Дуут хайлт""Хуваалцах""%s-тай хуваалцах""मुख्यपृष्ठ नेव्हिगेट करा""वर नेव्हिगेट करा""अधिक पर्याय""पूर्ण झाले""सर्व पहा""एक अॅप निवडा""क्वेरी स्पष्ट करा""शोध क्वेरी""शोध""क्वेरी सबमिट करा""व्हॉइस शोध""यांच्यासह सामायिक करा""%s सह सामायिक करा""Navigasi skrin utama""Navigasi ke atas""Lagi pilihan""Selesai""Lihat semua""Pilih apl""Kosongkan pertanyaan""Pertanyaan carian""Cari""Serah pertanyaan""Carian suara""Kongsi dengan""Kongsi dengan %s""မူလနေရာကို သွားရန်""အပေါ်သို့သွားရန်""ပိုမိုရွေးချယ်စရာများ""ပြီးဆုံးပါပြီ""အားလုံးကို ကြည့်ရန်""အပလီကေးရှင်း တစ်ခုခုကို ရွေးချယ်ပါ""ရှာစရာ အချက်အလက်များ ရှင်းလင်းရန်""ရှာစရာ အချက်အလက်နေရာ""ရှာဖွေရန်""ရှာဖွေစရာ အချက်အလက်ကို အတည်ပြုရန်""အသံဖြင့် ရှာဖွေခြင်း""မျှဝေဖို့ ရွေးပါ""%s ကို မျှဝေပါရန်""Gå til startsiden""Gå opp""Flere alternativer""Ferdig""Se alle""Velg en app""Slett søket""Søkeord""Søk""Utfør søket""Talesøk""Del med""Del med %s""गृह खोज्नुहोस्""माथि खोज्नुहोस्""थप विकल्पहरू""सम्पन्न भयो""सबै हेर्नुहोस्""एउटा अनुप्रयोग छान्नुहोस्""प्रश्न हटाउनुहोस्""जिज्ञासाको खोज गर्नुहोस्""खोज्नुहोस्""जिज्ञासा पेस गर्नुहोस्""भ्वाइस खोजी""साझेदारी गर्नुहोस्...""%s सँग साझेदारी गर्नुहोस्""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""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"false"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""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""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""Перейти на главный экран""Перейти вверх""Другие параметры""Готово""Показать все""Выбрать приложение""Удалить запрос""Поисковый запрос""Поиск""Отправить запрос""Голосовой поиск""Открыть доступ""Открыть доступ пользователю %s""ගෙදරට සංචාලනය කරන්න""ඉහලට සංචාලනය කරන්න""තවත් විකල්ප""අවසාන වූ""සියල්ල බලන්න""යෙදුමක් තෝරන්න""විමසුම හිස් කරන්න""සෙවුම් විමසුම""සෙවීම""විමසුම යොමු කරන්න""හඬ සෙවීම""සමඟ බෙදාගන්න""%s සමඟ බෙදාගන්න""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""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:""Одлазак на Почетну""Кретање нагоре""Још опција""Готово""Прикажи све""Избор апликације""Брисање упита""Упит за претрагу""Претрага""Слање упита""Гласовна претрага""Дели са""Дели са апликацијом %s""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""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"24dp64dp4dp8dp18dp580dp16dp20dp5"முகப்பிற்கு வழிசெலுத்து""மேலே வழிசெலுத்து""மேலும் விருப்பங்கள்""முடிந்தது""எல்லாம் காட்டு""பயன்பாட்டைத் தேர்வுசெய்க""வினவலை அழி""தேடல் வினவல்""தேடு""வினவலைச் சமர்ப்பி""குரல் தேடல்""இதனுடன் பகிர்""%s உடன் பகிர்""హోమ్కు నావిగేట్ చేయండి""పైకి నావిగేట్ చేయండి""మరిన్ని ఎంపికలు""పూర్తయింది""అన్నీ చూడండి""అనువర్తనాన్ని ఎంచుకోండి""ప్రశ్నను క్లియర్ చేయి""ప్రశ్న శోధించండి""శోధించు""ప్రశ్నని సమర్పించు""వాయిస్ శోధన""వీరితో భాగస్వామ్యం చేయి""%sతో భాగస్వామ్యం చేయి""นำทางไปหน้าแรก""นำทางขึ้น""ตัวเลือกอื่น""เสร็จสิ้น""ดูทั้งหมด""เลือกแอป""ล้างข้อความค้นหา""ข้อความค้นหา""ค้นหา""ส่งข้อความค้นหา""ค้นหาด้วยเสียง""แชร์กับ""แชร์กับ %s""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""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ş""Перейти на головний""Перейти вгору""Інші опції""Готово""Переглянути всі""Вибрати програму""Очистити запит""Пошуковий запит""Пошук""Надіслати запит""Голосовий пошук""Надіслати через""Надіслати через %s""ہوم پر نیویگیٹ کریں""اوپر نیویگیٹ کریں""مزید اختیارات""ہو گیا""سبھی دیکھیں""ایک ایپ منتخب کریں""استفسار صاف کریں""استفسار تلاش کریں""تلاش کریں""استفسار جمع کرائیں""صوتی تلاش""اشتراک کریں مع""%s کے ساتھ اشتراک کریں""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:"0px"Điều hướng về trang chủ""Điều hướng lên trên""Thêm tùy chọn""Xong""Xem tất cả""Chọn một ứng dụng""Xóa truy vấn""Tìm kiếm truy vấn""Tìm kiếm""Gửi truy vấn""Tìm kiếm bằng giọng nói""Chia sẻ với""Chia sẻ với %s"3truetrue4192dip5falsefalse192dip- 60%
- 90%
- 50%
- 70%
5256dip"转到主屏幕""转到上一层级""更多选项""完成""查看全部""选择应用""清除查询""搜索查询""搜索""提交查询""语音搜索""分享方式""通过%s分享""瀏覽主頁""向上瀏覽""更多選項""完成""顯示全部""選擇應用程式""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""分享對象""與「%s」分享""瀏覽首頁""向上瀏覽""更多選項""完成""查看全部""選擇應用程式""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""選擇分享對象""與「%s」分享""Zulazulela ekhaya""Zulazulela phezulu""Izinketho eziningi""Kwenziwe""Buka konke""Khetha uhlelo lokusebenza""Sula inkinga""Umbuzo wosesho""Sesha""Hambisa umbuzo""Ukusesha ngezwi""Yabelana no-""Yabelana no-%s"
+ - -%s
+ - --%s
+ - --%s
+ - --%s
+
+ - 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
+ - %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新建便签背景颜色随机删除通话便签请输入名称正在搜索便签搜索便签便签中的文字便签设置取消
+ - %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新建便籤背景顏色隨機刪除通話便籤請輸入名稱正在搜索便籤搜索便籤便籤中的文字便籤設置取消
+ - %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
new file mode 100644
index 00000000..77171121
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/account_dialog_title.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
\ 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
new file mode 100644
index 00000000..19e9d979
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/activity_splash.xml
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/add_account_text.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/add_account_text.xml
new file mode 100644
index 00000000..c7991780
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/add_account_text.xml
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/datetime_picker.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/datetime_picker.xml
new file mode 100644
index 00000000..f10d592b
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/datetime_picker.xml
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/dialog_edit_text.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/dialog_edit_text.xml
new file mode 100644
index 00000000..361b39a8
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/dialog_edit_text.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/folder_list_item.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/folder_list_item.xml
new file mode 100644
index 00000000..77e81483
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/folder_list_item.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_edit.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_edit.xml
new file mode 100644
index 00000000..1b3eca8e
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_edit.xml
@@ -0,0 +1,408 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_edit_list_item.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_edit_list_item.xml
new file mode 100644
index 00000000..a885f9c2
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_edit_list_item.xml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_item.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_item.xml
new file mode 100644
index 00000000..d541f6a1
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_item.xml
@@ -0,0 +1,78 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_list.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_list.xml
new file mode 100644
index 00000000..6b25d38f
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_list.xml
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_list_dropdown_menu.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_list_dropdown_menu.xml
new file mode 100644
index 00000000..3fa271d0
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_list_dropdown_menu.xml
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_list_footer.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_list_footer.xml
new file mode 100644
index 00000000..5ca7b225
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/note_list_footer.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/settings_header.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/settings_header.xml
new file mode 100644
index 00000000..5eb8c509
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/settings_header.xml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/widget_2x.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/widget_2x.xml
new file mode 100644
index 00000000..55970cee
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/widget_2x.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/widget_4x.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/widget_4x.xml
new file mode 100644
index 00000000..dc9bb519
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/widget_4x.xml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/src/app/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
new file mode 100644
index 00000000..668d3bb1
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties
@@ -0,0 +1,102 @@
+#Thu Jan 18 09:02:56 CST 2024
+net.micode.notes.app-main-5\:/color/primary_text_dark.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\color\\primary_text_dark.xml
+net.micode.notes.app-main-5\:/color/secondary_text_dark.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\color\\secondary_text_dark.xml
+net.micode.notes.app-main-5\:/drawable-hdpi/a.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\a.png
+net.micode.notes.app-main-5\:/drawable-hdpi/abc.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\abc.png
+net.micode.notes.app-main-5\:/drawable-hdpi/bg_btn_set_color.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\bg_btn_set_color.png
+net.micode.notes.app-main-5\:/drawable-hdpi/bg_color_btn_mask.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\bg_color_btn_mask.png
+net.micode.notes.app-main-5\:/drawable-hdpi/call_record.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\call_record.png
+net.micode.notes.app-main-5\:/drawable-hdpi/clock.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\clock.png
+net.micode.notes.app-main-5\:/drawable-hdpi/delete.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\delete.png
+net.micode.notes.app-main-5\:/drawable-hdpi/dropdown_icon.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\dropdown_icon.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/edit_blue.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\edit_blue.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/edit_green.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\edit_green.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/edit_red.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\edit_red.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/edit_title_blue.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\edit_title_blue.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/edit_title_green.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\edit_title_green.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/edit_title_red.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\edit_title_red.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/edit_title_white.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\edit_title_white.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/edit_title_yellow.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\edit_title_yellow.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/edit_white.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\edit_white.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/edit_yellow.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\edit_yellow.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/font_large.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\font_large.png
+net.micode.notes.app-main-5\:/drawable-hdpi/font_normal.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\font_normal.png
+net.micode.notes.app-main-5\:/drawable-hdpi/font_size_selector_bg.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\font_size_selector_bg.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/font_small.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\font_small.png
+net.micode.notes.app-main-5\:/drawable-hdpi/font_super.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\font_super.png
+net.micode.notes.app-main-5\:/drawable-hdpi/icon_app.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\icon_app.png
+net.micode.notes.app-main-5\:/drawable-hdpi/icon_app_new.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\icon_app_new.png
+net.micode.notes.app-main-5\:/drawable-hdpi/list_background.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\list_background.png
+net.micode.notes.app-main-5\:/drawable-hdpi/list_blue_down.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\list_blue_down.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/list_blue_middle.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\list_blue_middle.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/list_blue_single.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\list_blue_single.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/list_blue_up.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\list_blue_up.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/list_folder.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\list_folder.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/list_footer_bg.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\list_footer_bg.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/list_green_down.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\list_green_down.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/list_green_middle.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\list_green_middle.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/list_green_single.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\list_green_single.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/list_green_up.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\list_green_up.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/list_red_down.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\list_red_down.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/list_red_middle.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\list_red_middle.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/list_red_single.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\list_red_single.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/list_red_up.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\list_red_up.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/list_white_down.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\list_white_down.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/list_white_middle.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\list_white_middle.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/list_white_single.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\list_white_single.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/list_white_up.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\list_white_up.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/list_yellow_down.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\list_yellow_down.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/list_yellow_middle.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\list_yellow_middle.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/list_yellow_single.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\list_yellow_single.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/list_yellow_up.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\list_yellow_up.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/menu_delete.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\menu_delete.png
+net.micode.notes.app-main-5\:/drawable-hdpi/menu_move.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\menu_move.png
+net.micode.notes.app-main-5\:/drawable-hdpi/new_note_normal.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\new_note_normal.png
+net.micode.notes.app-main-5\:/drawable-hdpi/new_note_pressed.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\new_note_pressed.png
+net.micode.notes.app-main-5\:/drawable-hdpi/note_edit_color_selector_panel.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\note_edit_color_selector_panel.png
+net.micode.notes.app-main-5\:/drawable-hdpi/notification.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\notification.png
+net.micode.notes.app-main-5\:/drawable-hdpi/search_result.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\search_result.png
+net.micode.notes.app-main-5\:/drawable-hdpi/selected.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\selected.png
+net.micode.notes.app-main-5\:/drawable-hdpi/splash.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\splash.png
+net.micode.notes.app-main-5\:/drawable-hdpi/title_alert.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\title_alert.png
+net.micode.notes.app-main-5\:/drawable-hdpi/title_bar_bg.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\title_bar_bg.9.png
+net.micode.notes.app-main-5\:/drawable-hdpi/widget_2x_blue.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\widget_2x_blue.png
+net.micode.notes.app-main-5\:/drawable-hdpi/widget_2x_green.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\widget_2x_green.png
+net.micode.notes.app-main-5\:/drawable-hdpi/widget_2x_red.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\widget_2x_red.png
+net.micode.notes.app-main-5\:/drawable-hdpi/widget_2x_white.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\widget_2x_white.png
+net.micode.notes.app-main-5\:/drawable-hdpi/widget_2x_yellow.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\widget_2x_yellow.png
+net.micode.notes.app-main-5\:/drawable-hdpi/widget_4x_blue.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\widget_4x_blue.png
+net.micode.notes.app-main-5\:/drawable-hdpi/widget_4x_green.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\widget_4x_green.png
+net.micode.notes.app-main-5\:/drawable-hdpi/widget_4x_red.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\widget_4x_red.png
+net.micode.notes.app-main-5\:/drawable-hdpi/widget_4x_white.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\widget_4x_white.png
+net.micode.notes.app-main-5\:/drawable-hdpi/widget_4x_yellow.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable-hdpi-v4\\widget_4x_yellow.png
+net.micode.notes.app-main-5\:/drawable/new_note.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable\\new_note.xml
+net.micode.notes.app-main-5\:/drawable/splash.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\drawable\\splash.png
+net.micode.notes.app-main-5\:/menu/call_note_edit.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\menu\\call_note_edit.xml
+net.micode.notes.app-main-5\:/menu/call_record_folder.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\menu\\call_record_folder.xml
+net.micode.notes.app-main-5\:/menu/note_edit.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\menu\\note_edit.xml
+net.micode.notes.app-main-5\:/menu/note_list.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\menu\\note_list.xml
+net.micode.notes.app-main-5\:/menu/note_list_dropdown.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\menu\\note_list_dropdown.xml
+net.micode.notes.app-main-5\:/menu/note_list_options.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\menu\\note_list_options.xml
+net.micode.notes.app-main-5\:/menu/sub_folder.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\menu\\sub_folder.xml
+net.micode.notes.app-main-5\:/raw-zh-rCN/introduction=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\raw-zh-rCN\\introduction
+net.micode.notes.app-main-5\:/raw/introduction=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\raw\\introduction
+net.micode.notes.app-main-5\:/xml/preferences.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\xml\\preferences.xml
+net.micode.notes.app-main-5\:/xml/searchable.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\xml\\searchable.xml
+net.micode.notes.app-main-5\:/xml/widget_2x_info.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\xml\\widget_2x_info.xml
+net.micode.notes.app-main-5\:/xml/widget_4x_info.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\xml\\widget_4x_info.xml
+net.micode.notes.app-packageDebugResources-2\:/layout/account_dialog_title.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\layout\\account_dialog_title.xml
+net.micode.notes.app-packageDebugResources-2\:/layout/activity_splash.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\layout\\activity_splash.xml
+net.micode.notes.app-packageDebugResources-2\:/layout/add_account_text.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\layout\\add_account_text.xml
+net.micode.notes.app-packageDebugResources-2\:/layout/datetime_picker.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\layout\\datetime_picker.xml
+net.micode.notes.app-packageDebugResources-2\:/layout/dialog_edit_text.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\layout\\dialog_edit_text.xml
+net.micode.notes.app-packageDebugResources-2\:/layout/folder_list_item.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\layout\\folder_list_item.xml
+net.micode.notes.app-packageDebugResources-2\:/layout/note_edit.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\layout\\note_edit.xml
+net.micode.notes.app-packageDebugResources-2\:/layout/note_edit_list_item.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\layout\\note_edit_list_item.xml
+net.micode.notes.app-packageDebugResources-2\:/layout/note_item.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\layout\\note_item.xml
+net.micode.notes.app-packageDebugResources-2\:/layout/note_list.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\layout\\note_list.xml
+net.micode.notes.app-packageDebugResources-2\:/layout/note_list_dropdown_menu.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\layout\\note_list_dropdown_menu.xml
+net.micode.notes.app-packageDebugResources-2\:/layout/note_list_footer.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\layout\\note_list_footer.xml
+net.micode.notes.app-packageDebugResources-2\:/layout/settings_header.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\layout\\settings_header.xml
+net.micode.notes.app-packageDebugResources-2\:/layout/widget_2x.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\layout\\widget_2x.xml
+net.micode.notes.app-packageDebugResources-2\:/layout/widget_4x.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\packaged_res\\debug\\layout\\widget_4x.xml
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values-night-v8/values-night-v8.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values-night-v8/values-night-v8.xml
new file mode 100644
index 00000000..c10c0361
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values-night-v8/values-night-v8.xml
@@ -0,0 +1,7 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
new file mode 100644
index 00000000..d65e0cce
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
@@ -0,0 +1,108 @@
+
+
+
+ - 短信
+ - 邮件
+
+
+ - %1$s 条符合“%2$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/packageDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml
new file mode 100644
index 00000000..226b5bc5
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml
@@ -0,0 +1,108 @@
+
+
+
+ - 短信
+ - 郵件
+
+
+ - %1$s 條符合”%2$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/packageDebugResources/merged.dir/values/values.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml
new file mode 100644
index 00000000..26c1ff9f
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml
@@ -0,0 +1,199 @@
+
+
+
+ - -%s
+ - --%s
+ - --%s
+ - --%s
+
+
+ - Messaging
+ - Email
+
+ #66000000
+ #FF039BE5
+ #FF01579B
+ #FF40C4FF
+ #FF00B0FF
+ #335b5b5b
+ 26sp
+ 20sp
+ 17sp
+ 14sp
+ 33sp
+
+ - %1$s result for \"%2$s\"
+
+ - %1$s results for \"%2$s\"
+
+ Confirm to delete folder and its notes?
+ Confirm to delete this note?
+ Confirm to delete the selected %d notes?
+ Delete selected notes
+ Notes
+ Notes 2x2
+ Notes 4x4
+ Delete
+ Call notes
+ cancel
+ set
+ Delete reminder successfully
+ Dummy Button
+ 寒假快乐!
+ Sorry, can not set clock on empty note
+ Sorry, can not send and empty note to home
+ The note is not exist
+ Export failed, please check SD card
+ SD card busy, not available now
+ Sync is canceled
+ Sync failed, internal error occurs
+ Sync failed, please check network and account settings
+ Export fail
+ notes_%s.txt
+ /MIUI/notes/
+ The folder %1$s exist, please rename
+ yyyyMMdd
+ MMMd kk:mm
+ Export text file (%1$s) to SD (%2$s) directory
+ (%d)
+ Have moved selected %1$d notes to %2$s folder
+ Input name
+ Note added to home
+ Remind me
+ New Folder
+ Delete
+ Deselect all
+ Export text
+ Change folder name
+ Delete folder
+ View folder
+ Large
+ Medium
+ Font size
+ Small
+ Super
+ Enter check list
+ Move to folder
+ Parent folder
+ Leave check list
+ Delete reminder
+ Search
+ Select all
+ Nothing selected, the operation is invalid
+ %d selected
+ Send to home
+ Settings
+ Share
+ Sync
+ Cancel syncing
+ Select folder
+ Expired
+ Send email
+ Open map
+ Call
+ Browse web
+ Take a look
+ Got it
+ Add note
+ ...
+ Sync notes with google task
+ Sync account
+ Add account
+ New note background color random
+ Cancel syncing
+ Sync immediately
+ Current account %1$s
+ All sync related information will be deleted, which may result in duplicated items sometime
+ Please select a google account. Local notes will be synced with google task.
+ Sync notes
+ Last sync time %1$s
+ yyyy-MM-dd hh:mm:ss
+ Cancel
+ Change sync account
+ Remove sync account
+ Settings
+ Cannot change the account because sync is in progress
+ %1$s has been set as the sync account
+ Notes
+ Search notes
+ Searching Notes
+ Text in your notes
+ Set reminder
+ Export successful
+ Sync is successful with account %1$s
+ Getting remote note list...
+ Logging into %1$s...
+ Synchronize local notes with Google Task...
+ Sync is canceled
+ Sync is failed
+ Sync is successful
+ Syncing notes...
+ FullscreenActivity
+ SplashActivity
+ No associated note found, click to create associated note.
+ Privacy mode,can not see note content
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/merger.xml
new file mode 100644
index 00000000..358772c9
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/merger.xml
@@ -0,0 +1,77 @@
+
+
+ - -%s
+ - --%s
+ - --%s
+ - --%s
+
+ - 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
+ - %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新建便签背景颜色随机删除通话便签请输入名称正在搜索便签搜索便签便签中的文字便签设置取消
+ - %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新建便籤背景顏色隨機刪除通話便籤請輸入名稱正在搜索便籤搜索便籤便籤中的文字便籤設置取消
+ - %1$s 條符合”%2$s“的搜尋結果
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/account_dialog_title.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/account_dialog_title.xml
new file mode 100644
index 00000000..77171121
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/account_dialog_title.xml
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/activity_splash.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/activity_splash.xml
new file mode 100644
index 00000000..19e9d979
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/activity_splash.xml
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/add_account_text.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/add_account_text.xml
new file mode 100644
index 00000000..c7991780
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/add_account_text.xml
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/datetime_picker.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/datetime_picker.xml
new file mode 100644
index 00000000..f10d592b
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/datetime_picker.xml
@@ -0,0 +1,56 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/dialog_edit_text.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/dialog_edit_text.xml
new file mode 100644
index 00000000..361b39a8
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/dialog_edit_text.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/folder_list_item.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/folder_list_item.xml
new file mode 100644
index 00000000..77e81483
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/folder_list_item.xml
@@ -0,0 +1,29 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/note_edit.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/note_edit.xml
new file mode 100644
index 00000000..1b3eca8e
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/note_edit.xml
@@ -0,0 +1,408 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/note_edit_list_item.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/note_edit_list_item.xml
new file mode 100644
index 00000000..a885f9c2
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/note_edit_list_item.xml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/note_item.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/note_item.xml
new file mode 100644
index 00000000..d541f6a1
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/note_item.xml
@@ -0,0 +1,78 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/note_list.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/note_list.xml
new file mode 100644
index 00000000..6b25d38f
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/note_list.xml
@@ -0,0 +1,58 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/note_list_dropdown_menu.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/note_list_dropdown_menu.xml
new file mode 100644
index 00000000..3fa271d0
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/note_list_dropdown_menu.xml
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/note_list_footer.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/note_list_footer.xml
new file mode 100644
index 00000000..5ca7b225
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/note_list_footer.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/settings_header.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/settings_header.xml
new file mode 100644
index 00000000..5eb8c509
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/settings_header.xml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/widget_2x.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/widget_2x.xml
new file mode 100644
index 00000000..55970cee
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/widget_2x.xml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+
+
diff --git a/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/widget_4x.xml b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/widget_4x.xml
new file mode 100644
index 00000000..dc9bb519
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debug/packageDebugResources/stripped.dir/layout/widget_4x.xml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/src/app/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/compile-file-map.properties b/src/app/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/compile-file-map.properties
new file mode 100644
index 00000000..86b2515f
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/compile-file-map.properties
@@ -0,0 +1 @@
+#Thu Jan 18 09:02:58 CST 2024
diff --git a/src/app/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merger.xml b/src/app/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merger.xml
new file mode 100644
index 00000000..6ee94e3b
--- /dev/null
+++ b/src/app/build/intermediates/incremental/debugAndroidTest/mergeDebugAndroidTestResources/merger.xml
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt b/src/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt
index 42adf731..3ff45332 100644
--- a/src/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt
+++ b/src/app/build/intermediates/incremental/packageDebug/tmp/debug/dex-renamer-state.txt
@@ -1,12 +1,12 @@
-#Wed Jan 17 16:55:05 CST 2024
-base.0=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\dex\\debug\\mergeExtDexDebug\\classes.dex
-base.1=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\0\\classes.dex
-base.2=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\11\\classes.dex
-base.3=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\12\\classes.dex
-base.4=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\13\\classes.dex
-base.5=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\15\\classes.dex
-base.6=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\4\\classes.dex
-base.7=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\5\\classes.dex
+#Thu Jan 18 09:03:16 CST 2024
+base.0=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\dex\\debug\\mergeExtDexDebug\\classes.dex
+base.1=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\0\\classes.dex
+base.2=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\11\\classes.dex
+base.3=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\12\\classes.dex
+base.4=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\13\\classes.dex
+base.5=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\15\\classes.dex
+base.6=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\4\\classes.dex
+base.7=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\dex\\debug\\mergeProjectDexDebug\\5\\classes.dex
path.0=classes.dex
path.1=0/classes.dex
path.2=11/classes.dex
diff --git a/src/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources b/src/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources
index dc10709f..d8d06c3a 100644
Binary files a/src/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources and b/src/app/build/intermediates/incremental/packageDebug/tmp/debug/zip-cache/androidResources differ
diff --git a/src/app/build/intermediates/incremental/processDebugResources/resources-list-for-resources-debug.ap_.txt b/src/app/build/intermediates/incremental/processDebugResources/resources-list-for-resources-debug.ap_.txt
new file mode 100644
index 00000000..4b4741db
--- /dev/null
+++ b/src/app/build/intermediates/incremental/processDebugResources/resources-list-for-resources-debug.ap_.txt
@@ -0,0 +1 @@
+C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\color_primary_text_dark.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\color_secondary_text_dark.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_bg_btn_set_color.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_bg_color_btn_mask.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_call_record.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_clock.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_delete.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_dropdown_icon.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_blue.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_green.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_red.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_title_blue.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_title_green.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_title_red.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_title_white.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_title_yellow.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_white.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_edit_yellow.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_font_large.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_font_normal.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_font_size_selector_bg.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_font_small.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_font_super.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_icon_app.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_icon_app_new.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_background.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_blue_down.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_blue_middle.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_blue_single.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_blue_up.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_folder.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_footer_bg.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_green_down.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_green_middle.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_green_single.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_green_up.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_red_down.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_red_middle.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_red_single.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_red_up.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_white_down.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_white_middle.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_white_single.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_white_up.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_yellow_down.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_yellow_middle.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_yellow_single.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_list_yellow_up.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_menu_delete.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_menu_move.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_new_note_normal.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_new_note_pressed.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_note_edit_color_selector_panel.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_notification.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_search_result.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_selected.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_splash.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_title_alert.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_title_bar_bg.9.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_2x_blue.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_2x_green.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_2x_red.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_2x_white.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_2x_yellow.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_4x_blue.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_4x_green.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_4x_red.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_4x_white.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable-hdpi_widget_4x_yellow.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable_new_note.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\drawable_splash.png.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_account_dialog_title.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_activity_splash.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_add_account_text.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_datetime_picker.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_dialog_edit_text.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_folder_list_item.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_note_edit.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_note_edit_list_item.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_note_item.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_note_list.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_note_list_dropdown_menu.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_note_list_footer.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_settings_header.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_widget_2x.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\layout_widget_4x.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\menu_call_note_edit.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\menu_call_record_folder.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\menu_note_edit.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\menu_note_list.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\menu_note_list_dropdown.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\menu_note_list_options.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\menu_sub_folder.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\raw-zh-rCN_introduction.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\raw_introduction.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-af_values-af.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-am_values-am.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ar_values-ar.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-bg_values-bg.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-bn-rBD_values-bn-rBD.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ca_values-ca.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-cs_values-cs.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-da_values-da.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-de_values-de.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-el_values-el.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-en-rGB_values-en-rGB.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-en-rIN_values-en-rIN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-es-rUS_values-es-rUS.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-es_values-es.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-et-rEE_values-et-rEE.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-eu-rES_values-eu-rES.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-fa_values-fa.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-fi_values-fi.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-fr-rCA_values-fr-rCA.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-fr_values-fr.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-gl-rES_values-gl-rES.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-h720dp-v13_values-h720dp-v13.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-hdpi-v4_values-hdpi-v4.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-hi_values-hi.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-hr_values-hr.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-hu_values-hu.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-hy-rAM_values-hy-rAM.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-in_values-in.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-is-rIS_values-is-rIS.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-it_values-it.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-iw_values-iw.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ja_values-ja.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ka-rGE_values-ka-rGE.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-kk-rKZ_values-kk-rKZ.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-km-rKH_values-km-rKH.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-kn-rIN_values-kn-rIN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ko_values-ko.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ky-rKG_values-ky-rKG.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-land_values-land.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-large-v4_values-large-v4.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-lo-rLA_values-lo-rLA.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-lt_values-lt.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-lv_values-lv.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-mk-rMK_values-mk-rMK.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ml-rIN_values-ml-rIN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-mn-rMN_values-mn-rMN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-mr-rIN_values-mr-rIN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ms-rMY_values-ms-rMY.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-my-rMM_values-my-rMM.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-nb_values-nb.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ne-rNP_values-ne-rNP.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-night-v8_values-night-v8.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-nl_values-nl.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-pl_values-pl.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-port_values-port.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-pt-rPT_values-pt-rPT.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-pt_values-pt.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ro_values-ro.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ru_values-ru.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-si-rLK_values-si-rLK.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-sk_values-sk.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-sl_values-sl.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-sr_values-sr.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-sv_values-sv.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-sw600dp-v13_values-sw600dp-v13.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-sw_values-sw.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ta-rIN_values-ta-rIN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-te-rIN_values-te-rIN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-th_values-th.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-tl_values-tl.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-tr_values-tr.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-uk_values-uk.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-ur-rPK_values-ur-rPK.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-uz-rUZ_values-uz-rUZ.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-v11_values-v11.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-v12_values-v12.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-v14_values-v14.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-v17_values-v17.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-v18_values-v18.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-v21_values-v21.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-vi_values-vi.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-w360dp-v13_values-w360dp-v13.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-w480dp-v13_values-w480dp-v13.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-w500dp-v13_values-w500dp-v13.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-w600dp-v13_values-w600dp-v13.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-w720dp-v13_values-w720dp-v13.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-xlarge-land-v4_values-xlarge-land-v4.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-xlarge-v4_values-xlarge-v4.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-zh-rCN_values-zh-rCN.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-zh-rHK_values-zh-rHK.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-zh-rTW_values-zh-rTW.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values-zu_values-zu.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\values_values.arsc.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\xml_preferences.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\xml_searchable.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\xml_widget_2x_info.xml.flat C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug\xml_widget_4x_info.xml.flat
\ No newline at end of file
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/AccountDialogTitleBinding.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/AccountDialogTitleBinding.class
new file mode 100644
index 00000000..3a9390ab
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/AccountDialogTitleBinding.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/ActivitySplashBinding.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/ActivitySplashBinding.class
new file mode 100644
index 00000000..08a81628
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/ActivitySplashBinding.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/AddAccountTextBinding.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/AddAccountTextBinding.class
new file mode 100644
index 00000000..85aaee40
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/AddAccountTextBinding.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/DatetimePickerBinding.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/DatetimePickerBinding.class
new file mode 100644
index 00000000..36c50e15
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/DatetimePickerBinding.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/DialogEditTextBinding.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/DialogEditTextBinding.class
new file mode 100644
index 00000000..0fb65bd9
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/DialogEditTextBinding.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/FolderListItemBinding.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/FolderListItemBinding.class
new file mode 100644
index 00000000..68add32e
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/FolderListItemBinding.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteEditBinding.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteEditBinding.class
new file mode 100644
index 00000000..613c0e58
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteEditBinding.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteEditListItemBinding.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteEditListItemBinding.class
new file mode 100644
index 00000000..c59db931
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteEditListItemBinding.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteItemBinding.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteItemBinding.class
new file mode 100644
index 00000000..58d9ffdf
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteItemBinding.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteListBinding.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteListBinding.class
new file mode 100644
index 00000000..503e5dff
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteListBinding.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteListDropdownMenuBinding.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteListDropdownMenuBinding.class
new file mode 100644
index 00000000..7a54cca2
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteListDropdownMenuBinding.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteListFooterBinding.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteListFooterBinding.class
new file mode 100644
index 00000000..ee0ad114
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/NoteListFooterBinding.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/SettingsHeaderBinding.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/SettingsHeaderBinding.class
new file mode 100644
index 00000000..5f3f0193
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/SettingsHeaderBinding.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/Widget2xBinding.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/Widget2xBinding.class
new file mode 100644
index 00000000..4b019c30
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/Widget2xBinding.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/Widget4xBinding.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/Widget4xBinding.class
new file mode 100644
index 00000000..b3a2901d
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/databinding/Widget4xBinding.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$4.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$4.class
new file mode 100644
index 00000000..8d204ce5
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/NoteEditActivity$4.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/SplashActivity$1.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/SplashActivity$1.class
new file mode 100644
index 00000000..c848105b
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/SplashActivity$1.class differ
diff --git a/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/SplashActivity.class b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/SplashActivity.class
new file mode 100644
index 00000000..c97b8ed7
Binary files /dev/null and b/src/app/build/intermediates/javac/debug/classes/net/micode/notes/ui/SplashActivity.class differ
diff --git a/src/app/build/intermediates/local_only_symbol_list/debug/R-def.txt b/src/app/build/intermediates/local_only_symbol_list/debug/R-def.txt
new file mode 100644
index 00000000..e0c21b7e
--- /dev/null
+++ b/src/app/build/intermediates/local_only_symbol_list/debug/R-def.txt
@@ -0,0 +1,311 @@
+R_DEF: Internal format may change without notice
+local
+array format_for_exported_note
+array menu_share_ways
+attr? fullscreenBackgroundColor
+attr? fullscreenTextColor
+color black_overlay
+color light_blue_600
+color light_blue_900
+color light_blue_A200
+color light_blue_A400
+color primary_text_dark
+color secondary_text_dark
+color user_query_highlight
+dimen text_font_size_large
+dimen text_font_size_medium
+dimen text_font_size_normal
+dimen text_font_size_small
+dimen text_font_size_super
+drawable a
+drawable abc
+drawable bg_btn_set_color
+drawable bg_color_btn_mask
+drawable call_record
+drawable clock
+drawable delete
+drawable dropdown_icon
+drawable edit_blue
+drawable edit_green
+drawable edit_red
+drawable edit_title_blue
+drawable edit_title_green
+drawable edit_title_red
+drawable edit_title_white
+drawable edit_title_yellow
+drawable edit_white
+drawable edit_yellow
+drawable font_large
+drawable font_normal
+drawable font_size_selector_bg
+drawable font_small
+drawable font_super
+drawable icon_app
+drawable icon_app_new
+drawable list_background
+drawable list_blue_down
+drawable list_blue_middle
+drawable list_blue_single
+drawable list_blue_up
+drawable list_folder
+drawable list_footer_bg
+drawable list_green_down
+drawable list_green_middle
+drawable list_green_single
+drawable list_green_up
+drawable list_red_down
+drawable list_red_middle
+drawable list_red_single
+drawable list_red_up
+drawable list_white_down
+drawable list_white_middle
+drawable list_white_single
+drawable list_white_up
+drawable list_yellow_down
+drawable list_yellow_middle
+drawable list_yellow_single
+drawable list_yellow_up
+drawable menu_delete
+drawable menu_move
+drawable new_note
+drawable new_note_normal
+drawable new_note_pressed
+drawable note_edit_color_selector_panel
+drawable notification
+drawable search_result
+drawable selected
+drawable splash
+drawable title_alert
+drawable title_bar_bg
+drawable widget_2x_blue
+drawable widget_2x_green
+drawable widget_2x_red
+drawable widget_2x_white
+drawable widget_2x_yellow
+drawable widget_4x_blue
+drawable widget_4x_green
+drawable widget_4x_red
+drawable widget_4x_white
+drawable widget_4x_yellow
+id account_dialog_subtitle
+id account_dialog_title
+id action_select_all
+id amPm
+id btn_new_note
+id btn_set_bg_color
+id cb_edit_item
+id date
+id delete
+id dummy_button
+id et_edit_text
+id et_foler_name
+id font_size_selector
+id fullscreen_content
+id fullscreen_content_controls
+id hour
+id iv_alert_icon
+id iv_bg_blue
+id iv_bg_blue_select
+id iv_bg_green
+id iv_bg_green_select
+id iv_bg_red
+id iv_bg_red_select
+id iv_bg_white
+id iv_bg_white_select
+id iv_bg_yellow
+id iv_bg_yellow_select
+id iv_large_select
+id iv_medium_select
+id iv_small_select
+id iv_super_select
+id ll_font_large
+id ll_font_normal
+id ll_font_small
+id ll_font_super
+id menu_alert
+id menu_delete
+id menu_delete_remind
+id menu_export_text
+id menu_font_size
+id menu_list_mode
+id menu_new_folder
+id menu_new_note
+id menu_search
+id menu_send_to_desktop
+id menu_setting
+id menu_share
+id menu_sync
+id minute
+id move
+id navigation_bar
+id note_bg_color_selector
+id note_edit_list
+id note_edit_view
+id note_item
+id note_title
+id notes_list
+id prefenerece_sync_status_textview
+id preference_sync_button
+id selection_menu
+id sv_note_edit
+id text_num
+id tv_alert_date
+id tv_folder_name
+id tv_modified_date
+id tv_name
+id tv_time
+id tv_title
+id tv_title_bar
+id widget_bg_image
+id widget_text
+layout account_dialog_title
+layout activity_splash
+layout add_account_text
+layout datetime_picker
+layout dialog_edit_text
+layout folder_list_item
+layout note_edit
+layout note_edit_list_item
+layout note_item
+layout note_list
+layout note_list_dropdown_menu
+layout note_list_footer
+layout settings_header
+layout widget_2x
+layout widget_4x
+menu call_note_edit
+menu call_record_folder
+menu note_edit
+menu note_list
+menu note_list_dropdown
+menu note_list_options
+menu sub_folder
+plurals search_results_title
+raw introduction
+string alert_message_delete_folder
+string alert_message_delete_note
+string alert_message_delete_notes
+string alert_title_delete
+string app_name
+string app_widget2x2
+string app_widget4x4
+string button_delete
+string call_record_folder_name
+string datetime_dialog_cancel
+string datetime_dialog_ok
+string delete_remind_time_message
+string dummy_button
+string dummy_content
+string error_note_empty_for_clock
+string error_note_empty_for_send_to_desktop
+string error_note_not_exist
+string error_sdcard_export
+string error_sdcard_unmounted
+string error_sync_cancelled
+string error_sync_internal
+string error_sync_network
+string failed_sdcard_export
+string file_name_txt_format
+string file_path
+string folder_exist
+string format_date_ymd
+string format_datetime_mdhm
+string format_exported_file_location
+string format_folder_files_count
+string format_move_notes_to_folder
+string hint_foler_name
+string info_note_enter_desktop
+string menu_alert
+string menu_create_folder
+string menu_delete
+string menu_deselect_all
+string menu_export_text
+string menu_folder_change_name
+string menu_folder_delete
+string menu_folder_view
+string menu_font_large
+string menu_font_normal
+string menu_font_size
+string menu_font_small
+string menu_font_super
+string menu_list_mode
+string menu_move
+string menu_move_parent_folder
+string menu_normal_mode
+string menu_remove_remind
+string menu_search
+string menu_select_all
+string menu_select_none
+string menu_select_title
+string menu_send_to_desktop
+string menu_setting
+string menu_share
+string menu_sync
+string menu_sync_cancel
+string menu_title_select_folder
+string note_alert_expired
+string note_link_email
+string note_link_other
+string note_link_tel
+string note_link_web
+string notealert_enter
+string notealert_ok
+string notelist_menu_new
+string notelist_string_info
+string preferences_account_summary
+string preferences_account_title
+string preferences_add_account
+string preferences_bg_random_appear_title
+string preferences_button_sync_cancel
+string preferences_button_sync_immediately
+string preferences_dialog_change_account_title
+string preferences_dialog_change_account_warn_msg
+string preferences_dialog_select_account_tips
+string preferences_dialog_select_account_title
+string preferences_last_sync_time
+string preferences_last_sync_time_format
+string preferences_menu_cancel
+string preferences_menu_change_account
+string preferences_menu_remove_account
+string preferences_title
+string preferences_toast_cannot_change_account
+string preferences_toast_success_set_accout
+string search
+string search_hint
+string search_label
+string search_setting_description
+string set_remind_time_message
+string success_sdcard_export
+string success_sync_account
+string sync_progress_init_list
+string sync_progress_login
+string sync_progress_syncing
+string ticker_cancel
+string ticker_fail
+string ticker_success
+string ticker_syncing
+string title_activity_fullscreen
+string title_activity_splash
+string widget_havenot_content
+string widget_under_visit_mode
+style HighlightTextAppearancePrimary
+style HighlightTextAppearanceSecondary
+style NoteActionBarStyle
+style NoteTheme
+style TextAppearanceLarge
+style TextAppearanceMedium
+style TextAppearanceNormal
+style TextAppearancePrimaryItem
+style TextAppearanceSecondaryItem
+style TextAppearanceSuper
+style TextAppearanceUnderMenuIcon
+style ThemeOverlay.Code.FullscreenContainer
+style Theme.Code
+style Theme.Code.Fullscreen
+style Widget.Theme.Code.ActionBar.Fullscreen
+style Widget.Theme.Code.ButtonBar.Fullscreen
+styleable FullscreenAttrs fullscreenBackgroundColor fullscreenTextColor
+xml preferences
+xml searchable
+xml widget_2x_info
+xml widget_4x_info
diff --git a/src/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt b/src/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt
index 465c3d80..694ef5c5 100644
--- a/src/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt
+++ b/src/app/build/intermediates/manifest_merge_blame_file/debug/manifest-merger-blame-debug-report.txt
@@ -20,262 +20,262 @@
20 android:versionName="0.1" >
21
22 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:24:5-44
+22-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:24:5-44
23 android:minSdkVersion="21"
-23-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:24:15-41
+23-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:24:15-41
24 android:targetSdkVersion="21" />
-24-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:24:5-44
+24-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:24:5-44
25
26
-26-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:26:5-81
-26-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:26:22-78
+26-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:26:5-81
+26-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:26:22-78
27
-27-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:27:5-88
-27-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:27:22-85
+27-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:27:5-88
+27-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:27:22-85
28
-28-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:28:5-67
-28-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:28:22-64
+28-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:28:5-67
+28-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:28:22-64
29
-29-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:29:5-72
-29-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:29:22-69
+29-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:29:5-72
+29-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:29:22-69
30
-30-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:30:5-74
-30-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:30:22-71
+30-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:30:5-74
+30-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:30:22-71
31
-31-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:31:5-80
-31-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:31:22-77
+31-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:31:5-80
+31-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:31:22-77
32
-32-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:32:5-71
-32-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:32:22-68
+32-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:32:5-71
+32-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:32:22-68
33
-33-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:33:5-74
-33-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:33:22-71
+33-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:33:5-74
+33-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:33:22-71
34
-34-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:34:5-81
-34-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:34:22-78
+34-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:34:5-81
+34-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:34:22-78
35
36 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:36:5-159:19
+36-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:36:5-159:19
37 android:debuggable="true"
38 android:icon="@drawable/icon_app_new"
-38-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:37:9-46
+38-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:37:9-46
39 android:label="@string/app_name"
-39-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:38:9-41
+39-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:38:9-41
40 android:testOnly="true" >
41 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:41:9-51:20
+41-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:41:9-51:20
42 android:name="net.micode.notes.ui.SplashActivity"
-42-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:41:19-52
+42-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:41:19-52
43 android:configChanges="orientation|keyboardHidden|screenSize"
-43-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:42:13-74
+43-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:42:13-74
44 android:label="@string/title_activity_splash"
-44-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:43:13-58
+44-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:43:13-58
45 android:theme="@style/Theme.Code.Fullscreen" >
-45-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:45:13-57
+45-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:45:13-57
46
-46-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:47:13-50:29
+46-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:47:13-50:29
47
-47-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:48:17-69
-47-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:48:25-66
+47-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:48:17-69
+47-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:48:25-66
48
49
-49-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:49:17-77
-49-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:49:27-74
+49-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:49:17-77
+49-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:49:27-74
50
51
52 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:53:9-61:20
+52-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:53:9-61:20
53 android:name="net.micode.notes.ui.NotesListActivity"
-53-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:54:13-49
+53-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:54:13-49
54 android:configChanges="keyboardHidden|orientation|screenSize"
-54-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:55:13-74
+54-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:55:13-74
55 android:label="@string/app_name"
-55-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:56:13-45
+55-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:56:13-45
56 android:launchMode="singleTop"
-56-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:57:13-43
+56-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:57:13-43
57 android:theme="@style/NoteTheme"
-57-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:58:13-45
+57-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:58:13-45
58 android:uiOptions="splitActionBarWhenNarrow"
-58-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:59:13-57
+58-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:59:13-57
59 android:windowSoftInputMode="adjustPan" >
-59-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:60:13-52
+59-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:60:13-52
60
61 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:64:9-95:20
+61-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:64:9-95:20
62 android:name="net.micode.notes.ui.NoteEditActivity"
-62-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:65:13-48
+62-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:65:13-48
63 android:configChanges="keyboardHidden|orientation|screenSize"
-63-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:66:13-74
+63-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:66:13-74
64 android:launchMode="singleTop"
-64-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:67:13-43
+64-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:67:13-43
65 android:theme="@style/NoteTheme" >
-65-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:68:13-45
+65-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:68:13-45
66
-66-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:70:13-77:29
-66-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:70:28-49
+66-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:70:13-77:29
+66-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:70:28-49
67
-67-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:72:17-69
-67-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:72:25-66
+67-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:72:17-69
+67-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:72:25-66
68
69
-69-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:73:17-76
-69-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:73:27-73
+69-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:73:17-76
+69-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:73:27-73
70
71
-71-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:75:17-78
-71-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:75:23-75
+71-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:75:17-78
+71-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:75:23-75
72
-72-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:75:17-78
-72-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:75:23-75
+72-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:75:17-78
+72-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:75:23-75
73
74
-74-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:79:13-85:29
+74-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:79:13-85:29
75
-75-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:80:17-79
-75-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:80:25-76
+75-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:80:17-79
+75-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:80:25-76
76
77
-77-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:73:17-76
-77-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:73:27-73
+77-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:73:17-76
+77-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:73:27-73
78
79
-79-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:75:17-78
-79-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:75:23-75
+79-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:75:17-78
+79-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:75:23-75
80
-80-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:75:17-78
-80-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:75:23-75
+80-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:75:17-78
+80-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:75:23-75
81
82
-82-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:87:13-90:29
+82-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:87:13-90:29
83
-83-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:88:17-71
-83-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:88:25-68
+83-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:88:17-71
+83-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:88:25-68
84
85
-85-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:73:17-76
-85-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:73:27-73
+85-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:73:17-76
+85-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:73:27-73
86
87
88 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:92:13-94:54
+88-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:92:13-94:54
89 android:name="android.app.searchable"
-89-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:93:17-54
+89-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:93:17-54
90 android:resource="@xml/searchable" />
-90-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:94:17-51
+90-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:94:17-51
91
92
93 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:97:9-100:43
+93-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:97:9-100:43
94 android:name="net.micode.notes.data.NotesProvider"
-94-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:98:13-63
+94-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:98:13-63
95 android:authorities="micode_notes"
-95-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:99:13-47
+95-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:99:13-47
96 android:multiprocess="true" />
-96-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:100:13-40
+96-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:100:13-40
97
98 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:102:9-114:20
+98-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:102:9-114:20
99 android:name="net.micode.notes.widget.NoteWidgetProvider_2x"
-99-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:103:13-57
+99-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:103:13-57
100 android:label="@string/app_widget2x2" >
-100-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:104:13-50
+100-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:104:13-50
101
-101-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:105:13-109:29
+101-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:105:13-109:29
102
-102-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:106:17-84
-102-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:106:25-81
+102-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:106:17-84
+102-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:106:25-81
103
-103-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:107:17-85
-103-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:107:25-82
+103-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:107:17-85
+103-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:107:25-82
104
-104-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:108:17-85
-104-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:108:25-82
+104-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:108:17-85
+104-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:108:25-82
105
106
107 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:111:13-113:58
+107-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:111:13-113:58
108 android:name="android.appwidget.provider"
-108-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:112:17-58
+108-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:112:17-58
109 android:resource="@xml/widget_2x_info" />
-109-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:113:17-55
+109-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:113:17-55
110
111 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:115:9-128:20
+111-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:115:9-128:20
112 android:name="net.micode.notes.widget.NoteWidgetProvider_4x"
-112-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:116:13-57
+112-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:116:13-57
113 android:label="@string/app_widget4x4" >
-113-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:117:13-50
+113-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:117:13-50
114
-114-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:105:13-109:29
+114-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:105:13-109:29
115
-115-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:106:17-84
-115-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:106:25-81
+115-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:106:17-84
+115-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:106:25-81
116
-116-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:107:17-85
-116-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:107:25-82
+116-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:107:17-85
+116-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:107:25-82
117
-117-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:108:17-85
-117-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:108:25-82
+117-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:108:17-85
+117-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:108:25-82
118
119
120 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:111:13-113:58
+120-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:111:13-113:58
121 android:name="android.appwidget.provider"
-121-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:112:17-58
+121-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:112:17-58
122 android:resource="@xml/widget_4x_info" />
-122-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:113:17-55
+122-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:113:17-55
123
124
-124-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:130:9-134:20
-124-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:130:19-55
+124-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:130:9-134:20
+124-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:130:19-55
125
-125-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:131:13-133:29
+125-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:131:13-133:29
126
-126-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:132:17-79
-126-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:132:25-76
+126-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:132:17-79
+126-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:132:25-76
127
128
129 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:136:9-138:50
+129-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:136:9-138:50
130 android:name="net.micode.notes.ui.AlarmReceiver"
-130-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:137:13-61
+130-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:137:13-61
131 android:process=":remote" />
-131-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:138:13-38
+131-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:138:13-38
132
133 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:140:9-144:87
+133-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:140:9-144:87
134 android:name="net.micode.notes.ui.AlarmAlertActivity"
-134-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:141:13-50
+134-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:141:13-50
135 android:label="@string/app_name"
-135-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:142:13-45
+135-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:142:13-45
136 android:launchMode="singleInstance"
-136-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:143:13-48
+136-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:143:13-48
137 android:theme="@android:style/Theme.Holo.Wallpaper.NoTitleBar" />
-137-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:144:13-75
+137-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:144:13-75
138 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:146:9-150:72
+138-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:146:9-150:72
139 android:name="net.micode.notes.ui.NotesPreferenceActivity"
-139-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:147:13-71
+139-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:147:13-71
140 android:label="@string/preferences_title"
-140-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:148:13-54
+140-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:148:13-54
141 android:launchMode="singleTop"
-141-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:149:13-43
+141-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:149:13-43
142 android:theme="@android:style/Theme.Holo.Light" />
-142-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:150:13-60
+142-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:150:13-60
143
144 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:152:9-154:48
+144-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:152:9-154:48
145 android:name="net.micode.notes.gtask.remote.GTaskSyncService"
-145-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:153:13-74
+145-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:153:13-74
146 android:exported="false" />
-146-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:154:13-37
+146-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:154:13-37
147
148 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:156:9-158:52
+148-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:156:9-158:52
149 android:name="android.app.default_searchable"
-149-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:157:13-58
+149-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:157:13-58
150 android:value=".ui.NoteEditActivity" />
-150-->C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:158:13-49
+150-->C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:158:13-49
151
152
153
diff --git a/src/app/build/intermediates/merged_res/debug/color_primary_text_dark.xml.flat b/src/app/build/intermediates/merged_res/debug/color_primary_text_dark.xml.flat
new file mode 100644
index 00000000..802be344
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/color_primary_text_dark.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/color_secondary_text_dark.xml.flat b/src/app/build/intermediates/merged_res/debug/color_secondary_text_dark.xml.flat
new file mode 100644
index 00000000..2d9ddb41
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/color_secondary_text_dark.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_a.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_a.png.flat
new file mode 100644
index 00000000..ea8c0ea0
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_a.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_abc.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_abc.png.flat
new file mode 100644
index 00000000..4ad828ba
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_abc.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_bg_btn_set_color.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_bg_btn_set_color.png.flat
new file mode 100644
index 00000000..a783113c
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_bg_btn_set_color.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_bg_color_btn_mask.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_bg_color_btn_mask.png.flat
new file mode 100644
index 00000000..a9576bb4
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_bg_color_btn_mask.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_call_record.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_call_record.png.flat
new file mode 100644
index 00000000..06928760
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_call_record.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_clock.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_clock.png.flat
new file mode 100644
index 00000000..a5cd8ef1
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_clock.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_delete.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_delete.png.flat
new file mode 100644
index 00000000..b5e283d6
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_delete.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_dropdown_icon.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_dropdown_icon.9.png.flat
new file mode 100644
index 00000000..74c78c03
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_dropdown_icon.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_blue.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_blue.9.png.flat
new file mode 100644
index 00000000..54369265
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_blue.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_green.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_green.9.png.flat
new file mode 100644
index 00000000..4d95a89b
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_green.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_red.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_red.9.png.flat
new file mode 100644
index 00000000..ce52bc13
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_red.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_title_blue.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_title_blue.9.png.flat
new file mode 100644
index 00000000..b376e80f
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_title_blue.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_title_green.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_title_green.9.png.flat
new file mode 100644
index 00000000..b8cc9ab2
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_title_green.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_title_red.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_title_red.9.png.flat
new file mode 100644
index 00000000..2af509b4
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_title_red.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_title_white.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_title_white.9.png.flat
new file mode 100644
index 00000000..f3a6c603
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_title_white.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_title_yellow.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_title_yellow.9.png.flat
new file mode 100644
index 00000000..8828ae3a
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_title_yellow.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_white.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_white.9.png.flat
new file mode 100644
index 00000000..8a98c38e
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_white.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_yellow.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_yellow.9.png.flat
new file mode 100644
index 00000000..4c9bdf9a
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_edit_yellow.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_font_large.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_font_large.png.flat
new file mode 100644
index 00000000..14225733
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_font_large.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_font_normal.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_font_normal.png.flat
new file mode 100644
index 00000000..704993a2
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_font_normal.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_font_size_selector_bg.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_font_size_selector_bg.9.png.flat
new file mode 100644
index 00000000..9a4b9890
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_font_size_selector_bg.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_font_small.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_font_small.png.flat
new file mode 100644
index 00000000..11857a49
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_font_small.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_font_super.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_font_super.png.flat
new file mode 100644
index 00000000..2227ab8a
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_font_super.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_icon_app.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_icon_app.png.flat
new file mode 100644
index 00000000..27a84125
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_icon_app.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_icon_app_new.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_icon_app_new.png.flat
new file mode 100644
index 00000000..89be355a
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_icon_app_new.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_background.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_background.png.flat
new file mode 100644
index 00000000..0bda0bc4
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_background.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_blue_down.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_blue_down.9.png.flat
new file mode 100644
index 00000000..75f3cd0f
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_blue_down.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_blue_middle.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_blue_middle.9.png.flat
new file mode 100644
index 00000000..f82dd6db
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_blue_middle.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_blue_single.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_blue_single.9.png.flat
new file mode 100644
index 00000000..d57fe3a8
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_blue_single.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_blue_up.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_blue_up.9.png.flat
new file mode 100644
index 00000000..683b6f18
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_blue_up.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_folder.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_folder.9.png.flat
new file mode 100644
index 00000000..e75e0563
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_folder.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_footer_bg.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_footer_bg.9.png.flat
new file mode 100644
index 00000000..3f892439
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_footer_bg.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_green_down.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_green_down.9.png.flat
new file mode 100644
index 00000000..6b24efc6
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_green_down.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_green_middle.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_green_middle.9.png.flat
new file mode 100644
index 00000000..4f7fa61a
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_green_middle.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_green_single.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_green_single.9.png.flat
new file mode 100644
index 00000000..725a39fd
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_green_single.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_green_up.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_green_up.9.png.flat
new file mode 100644
index 00000000..f7b11e83
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_green_up.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_red_down.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_red_down.9.png.flat
new file mode 100644
index 00000000..82de7394
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_red_down.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_red_middle.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_red_middle.9.png.flat
new file mode 100644
index 00000000..224f6990
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_red_middle.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_red_single.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_red_single.9.png.flat
new file mode 100644
index 00000000..6c1bc358
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_red_single.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_red_up.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_red_up.9.png.flat
new file mode 100644
index 00000000..d29584e6
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_red_up.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_white_down.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_white_down.9.png.flat
new file mode 100644
index 00000000..394cf644
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_white_down.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_white_middle.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_white_middle.9.png.flat
new file mode 100644
index 00000000..6a55c1fe
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_white_middle.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_white_single.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_white_single.9.png.flat
new file mode 100644
index 00000000..d3094aa6
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_white_single.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_white_up.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_white_up.9.png.flat
new file mode 100644
index 00000000..a3558dd0
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_white_up.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_yellow_down.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_yellow_down.9.png.flat
new file mode 100644
index 00000000..e9e827a8
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_yellow_down.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_yellow_middle.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_yellow_middle.9.png.flat
new file mode 100644
index 00000000..812fbcea
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_yellow_middle.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_yellow_single.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_yellow_single.9.png.flat
new file mode 100644
index 00000000..c4a34ba5
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_yellow_single.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_yellow_up.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_yellow_up.9.png.flat
new file mode 100644
index 00000000..a0b29638
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_list_yellow_up.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_menu_delete.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_menu_delete.png.flat
new file mode 100644
index 00000000..0d0a7c73
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_menu_delete.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_menu_move.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_menu_move.png.flat
new file mode 100644
index 00000000..7b7b9c90
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_menu_move.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_new_note_normal.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_new_note_normal.png.flat
new file mode 100644
index 00000000..ac802ba1
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_new_note_normal.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_new_note_pressed.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_new_note_pressed.png.flat
new file mode 100644
index 00000000..ee82d6c5
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_new_note_pressed.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_note_edit_color_selector_panel.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_note_edit_color_selector_panel.png.flat
new file mode 100644
index 00000000..8d48e8e9
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_note_edit_color_selector_panel.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_notification.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_notification.png.flat
new file mode 100644
index 00000000..dbeee0bb
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_notification.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_search_result.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_search_result.png.flat
new file mode 100644
index 00000000..e55822d3
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_search_result.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_selected.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_selected.png.flat
new file mode 100644
index 00000000..be2aeddd
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_selected.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_splash.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_splash.png.flat
new file mode 100644
index 00000000..8890de89
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_splash.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_title_alert.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_title_alert.png.flat
new file mode 100644
index 00000000..8f6daec1
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_title_alert.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_title_bar_bg.9.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_title_bar_bg.9.png.flat
new file mode 100644
index 00000000..87aeb207
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_title_bar_bg.9.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_2x_blue.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_2x_blue.png.flat
new file mode 100644
index 00000000..825e93dd
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_2x_blue.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_2x_green.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_2x_green.png.flat
new file mode 100644
index 00000000..e039b026
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_2x_green.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_2x_red.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_2x_red.png.flat
new file mode 100644
index 00000000..a2eb42b4
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_2x_red.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_2x_white.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_2x_white.png.flat
new file mode 100644
index 00000000..c7eff781
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_2x_white.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_2x_yellow.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_2x_yellow.png.flat
new file mode 100644
index 00000000..decfaad7
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_2x_yellow.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_4x_blue.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_4x_blue.png.flat
new file mode 100644
index 00000000..7c3cf3a8
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_4x_blue.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_4x_green.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_4x_green.png.flat
new file mode 100644
index 00000000..1c75d026
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_4x_green.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_4x_red.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_4x_red.png.flat
new file mode 100644
index 00000000..e82e879d
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_4x_red.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_4x_white.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_4x_white.png.flat
new file mode 100644
index 00000000..366fd2c0
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_4x_white.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_4x_yellow.png.flat b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_4x_yellow.png.flat
new file mode 100644
index 00000000..ac23b116
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable-hdpi_widget_4x_yellow.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable_new_note.xml.flat b/src/app/build/intermediates/merged_res/debug/drawable_new_note.xml.flat
new file mode 100644
index 00000000..8b4b3a5b
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable_new_note.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/drawable_splash.png.flat b/src/app/build/intermediates/merged_res/debug/drawable_splash.png.flat
new file mode 100644
index 00000000..b04617f4
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/drawable_splash.png.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/layout_account_dialog_title.xml.flat b/src/app/build/intermediates/merged_res/debug/layout_account_dialog_title.xml.flat
new file mode 100644
index 00000000..f049b473
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/layout_account_dialog_title.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/layout_activity_splash.xml.flat b/src/app/build/intermediates/merged_res/debug/layout_activity_splash.xml.flat
new file mode 100644
index 00000000..d9555b78
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/layout_activity_splash.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/layout_add_account_text.xml.flat b/src/app/build/intermediates/merged_res/debug/layout_add_account_text.xml.flat
new file mode 100644
index 00000000..a20beef6
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/layout_add_account_text.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/layout_datetime_picker.xml.flat b/src/app/build/intermediates/merged_res/debug/layout_datetime_picker.xml.flat
new file mode 100644
index 00000000..b41f1091
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/layout_datetime_picker.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/layout_dialog_edit_text.xml.flat b/src/app/build/intermediates/merged_res/debug/layout_dialog_edit_text.xml.flat
new file mode 100644
index 00000000..fbbbe598
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/layout_dialog_edit_text.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/layout_folder_list_item.xml.flat b/src/app/build/intermediates/merged_res/debug/layout_folder_list_item.xml.flat
new file mode 100644
index 00000000..b9fa2c74
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/layout_folder_list_item.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/layout_note_edit.xml.flat b/src/app/build/intermediates/merged_res/debug/layout_note_edit.xml.flat
new file mode 100644
index 00000000..cf987aae
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/layout_note_edit.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/layout_note_edit_list_item.xml.flat b/src/app/build/intermediates/merged_res/debug/layout_note_edit_list_item.xml.flat
new file mode 100644
index 00000000..5db0916a
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/layout_note_edit_list_item.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/layout_note_item.xml.flat b/src/app/build/intermediates/merged_res/debug/layout_note_item.xml.flat
new file mode 100644
index 00000000..9e4987a1
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/layout_note_item.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/layout_note_list.xml.flat b/src/app/build/intermediates/merged_res/debug/layout_note_list.xml.flat
new file mode 100644
index 00000000..4dcd5777
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/layout_note_list.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/layout_note_list_dropdown_menu.xml.flat b/src/app/build/intermediates/merged_res/debug/layout_note_list_dropdown_menu.xml.flat
new file mode 100644
index 00000000..69faebb9
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/layout_note_list_dropdown_menu.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/layout_note_list_footer.xml.flat b/src/app/build/intermediates/merged_res/debug/layout_note_list_footer.xml.flat
new file mode 100644
index 00000000..41045925
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/layout_note_list_footer.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/layout_settings_header.xml.flat b/src/app/build/intermediates/merged_res/debug/layout_settings_header.xml.flat
new file mode 100644
index 00000000..bc4acfc6
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/layout_settings_header.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/layout_widget_2x.xml.flat b/src/app/build/intermediates/merged_res/debug/layout_widget_2x.xml.flat
new file mode 100644
index 00000000..004ed33d
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/layout_widget_2x.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/layout_widget_4x.xml.flat b/src/app/build/intermediates/merged_res/debug/layout_widget_4x.xml.flat
new file mode 100644
index 00000000..70749912
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/layout_widget_4x.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/menu_call_note_edit.xml.flat b/src/app/build/intermediates/merged_res/debug/menu_call_note_edit.xml.flat
new file mode 100644
index 00000000..c89b09d6
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/menu_call_note_edit.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/menu_call_record_folder.xml.flat b/src/app/build/intermediates/merged_res/debug/menu_call_record_folder.xml.flat
new file mode 100644
index 00000000..504fc9c8
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/menu_call_record_folder.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/menu_note_edit.xml.flat b/src/app/build/intermediates/merged_res/debug/menu_note_edit.xml.flat
new file mode 100644
index 00000000..c2c61cc2
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/menu_note_edit.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/menu_note_list.xml.flat b/src/app/build/intermediates/merged_res/debug/menu_note_list.xml.flat
new file mode 100644
index 00000000..c138bc96
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/menu_note_list.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/menu_note_list_dropdown.xml.flat b/src/app/build/intermediates/merged_res/debug/menu_note_list_dropdown.xml.flat
new file mode 100644
index 00000000..6e3c761d
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/menu_note_list_dropdown.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/menu_note_list_options.xml.flat b/src/app/build/intermediates/merged_res/debug/menu_note_list_options.xml.flat
new file mode 100644
index 00000000..60513de4
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/menu_note_list_options.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/menu_sub_folder.xml.flat b/src/app/build/intermediates/merged_res/debug/menu_sub_folder.xml.flat
new file mode 100644
index 00000000..4e4f099b
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/menu_sub_folder.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/raw-zh-rCN_introduction.flat b/src/app/build/intermediates/merged_res/debug/raw-zh-rCN_introduction.flat
new file mode 100644
index 00000000..17cb0188
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/raw-zh-rCN_introduction.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/raw_introduction.flat b/src/app/build/intermediates/merged_res/debug/raw_introduction.flat
new file mode 100644
index 00000000..608c6fd4
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/raw_introduction.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-af_values-af.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-af_values-af.arsc.flat
new file mode 100644
index 00000000..b5363943
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-af_values-af.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-am_values-am.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-am_values-am.arsc.flat
new file mode 100644
index 00000000..1ca47ee8
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-am_values-am.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-ar_values-ar.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-ar_values-ar.arsc.flat
new file mode 100644
index 00000000..4dd5aaf3
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-ar_values-ar.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-bg_values-bg.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-bg_values-bg.arsc.flat
new file mode 100644
index 00000000..b50416be
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-bg_values-bg.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-bn-rBD_values-bn-rBD.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-bn-rBD_values-bn-rBD.arsc.flat
new file mode 100644
index 00000000..5a47fa1b
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-bn-rBD_values-bn-rBD.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-ca_values-ca.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-ca_values-ca.arsc.flat
new file mode 100644
index 00000000..ef4a260b
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-ca_values-ca.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-cs_values-cs.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-cs_values-cs.arsc.flat
new file mode 100644
index 00000000..824057b4
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-cs_values-cs.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-da_values-da.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-da_values-da.arsc.flat
new file mode 100644
index 00000000..776db7b2
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-da_values-da.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-de_values-de.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-de_values-de.arsc.flat
new file mode 100644
index 00000000..82a975d3
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-de_values-de.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-el_values-el.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-el_values-el.arsc.flat
new file mode 100644
index 00000000..1b70f1bd
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-el_values-el.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-en-rGB_values-en-rGB.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-en-rGB_values-en-rGB.arsc.flat
new file mode 100644
index 00000000..3b9403bf
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-en-rGB_values-en-rGB.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-en-rIN_values-en-rIN.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-en-rIN_values-en-rIN.arsc.flat
new file mode 100644
index 00000000..40fc8897
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-en-rIN_values-en-rIN.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-es-rUS_values-es-rUS.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-es-rUS_values-es-rUS.arsc.flat
new file mode 100644
index 00000000..e0208ffa
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-es-rUS_values-es-rUS.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-es_values-es.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-es_values-es.arsc.flat
new file mode 100644
index 00000000..a4747946
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-es_values-es.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-et-rEE_values-et-rEE.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-et-rEE_values-et-rEE.arsc.flat
new file mode 100644
index 00000000..34a127a8
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-et-rEE_values-et-rEE.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-eu-rES_values-eu-rES.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-eu-rES_values-eu-rES.arsc.flat
new file mode 100644
index 00000000..d1d3e85f
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-eu-rES_values-eu-rES.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-fa_values-fa.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-fa_values-fa.arsc.flat
new file mode 100644
index 00000000..f2b25c7f
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-fa_values-fa.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-fi_values-fi.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-fi_values-fi.arsc.flat
new file mode 100644
index 00000000..05e91046
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-fi_values-fi.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-fr-rCA_values-fr-rCA.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-fr-rCA_values-fr-rCA.arsc.flat
new file mode 100644
index 00000000..ca28e466
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-fr-rCA_values-fr-rCA.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-fr_values-fr.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-fr_values-fr.arsc.flat
new file mode 100644
index 00000000..ed0b1cfb
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-fr_values-fr.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-gl-rES_values-gl-rES.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-gl-rES_values-gl-rES.arsc.flat
new file mode 100644
index 00000000..de53b196
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-gl-rES_values-gl-rES.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat
new file mode 100644
index 00000000..e581be66
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-h720dp-v13_values-h720dp-v13.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat
new file mode 100644
index 00000000..d29d92f5
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-hdpi-v4_values-hdpi-v4.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-hi_values-hi.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-hi_values-hi.arsc.flat
new file mode 100644
index 00000000..c647e33d
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-hi_values-hi.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-hr_values-hr.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-hr_values-hr.arsc.flat
new file mode 100644
index 00000000..7bd3e4d3
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-hr_values-hr.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-hu_values-hu.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-hu_values-hu.arsc.flat
new file mode 100644
index 00000000..f37cf72e
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-hu_values-hu.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-hy-rAM_values-hy-rAM.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-hy-rAM_values-hy-rAM.arsc.flat
new file mode 100644
index 00000000..b3adf019
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-hy-rAM_values-hy-rAM.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-in_values-in.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-in_values-in.arsc.flat
new file mode 100644
index 00000000..57a649ba
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-in_values-in.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-is-rIS_values-is-rIS.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-is-rIS_values-is-rIS.arsc.flat
new file mode 100644
index 00000000..87b336b9
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-is-rIS_values-is-rIS.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-it_values-it.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-it_values-it.arsc.flat
new file mode 100644
index 00000000..9132f96d
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-it_values-it.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-iw_values-iw.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-iw_values-iw.arsc.flat
new file mode 100644
index 00000000..3516c781
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-iw_values-iw.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-ja_values-ja.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-ja_values-ja.arsc.flat
new file mode 100644
index 00000000..057bb14b
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-ja_values-ja.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-ka-rGE_values-ka-rGE.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-ka-rGE_values-ka-rGE.arsc.flat
new file mode 100644
index 00000000..08540b0b
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-ka-rGE_values-ka-rGE.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-kk-rKZ_values-kk-rKZ.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-kk-rKZ_values-kk-rKZ.arsc.flat
new file mode 100644
index 00000000..0113f89b
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-kk-rKZ_values-kk-rKZ.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-km-rKH_values-km-rKH.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-km-rKH_values-km-rKH.arsc.flat
new file mode 100644
index 00000000..7cc19ac0
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-km-rKH_values-km-rKH.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-kn-rIN_values-kn-rIN.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-kn-rIN_values-kn-rIN.arsc.flat
new file mode 100644
index 00000000..93bf37c3
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-kn-rIN_values-kn-rIN.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-ko_values-ko.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-ko_values-ko.arsc.flat
new file mode 100644
index 00000000..b3a1b224
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-ko_values-ko.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-ky-rKG_values-ky-rKG.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-ky-rKG_values-ky-rKG.arsc.flat
new file mode 100644
index 00000000..0b135a90
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-ky-rKG_values-ky-rKG.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-land_values-land.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-land_values-land.arsc.flat
new file mode 100644
index 00000000..98aa5b6c
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-land_values-land.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-large-v4_values-large-v4.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-large-v4_values-large-v4.arsc.flat
new file mode 100644
index 00000000..82593188
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-large-v4_values-large-v4.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-lo-rLA_values-lo-rLA.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-lo-rLA_values-lo-rLA.arsc.flat
new file mode 100644
index 00000000..cf512a34
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-lo-rLA_values-lo-rLA.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-lt_values-lt.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-lt_values-lt.arsc.flat
new file mode 100644
index 00000000..cf887bf9
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-lt_values-lt.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-lv_values-lv.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-lv_values-lv.arsc.flat
new file mode 100644
index 00000000..6fbd4374
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-lv_values-lv.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-mk-rMK_values-mk-rMK.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-mk-rMK_values-mk-rMK.arsc.flat
new file mode 100644
index 00000000..acf367d2
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-mk-rMK_values-mk-rMK.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-ml-rIN_values-ml-rIN.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-ml-rIN_values-ml-rIN.arsc.flat
new file mode 100644
index 00000000..47df53eb
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-ml-rIN_values-ml-rIN.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-mn-rMN_values-mn-rMN.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-mn-rMN_values-mn-rMN.arsc.flat
new file mode 100644
index 00000000..20c06a39
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-mn-rMN_values-mn-rMN.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-mr-rIN_values-mr-rIN.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-mr-rIN_values-mr-rIN.arsc.flat
new file mode 100644
index 00000000..c6b3c15d
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-mr-rIN_values-mr-rIN.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-ms-rMY_values-ms-rMY.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-ms-rMY_values-ms-rMY.arsc.flat
new file mode 100644
index 00000000..1e8f1643
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-ms-rMY_values-ms-rMY.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-my-rMM_values-my-rMM.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-my-rMM_values-my-rMM.arsc.flat
new file mode 100644
index 00000000..380ddd14
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-my-rMM_values-my-rMM.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-nb_values-nb.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-nb_values-nb.arsc.flat
new file mode 100644
index 00000000..f060c124
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-nb_values-nb.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-ne-rNP_values-ne-rNP.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-ne-rNP_values-ne-rNP.arsc.flat
new file mode 100644
index 00000000..9c367d4b
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-ne-rNP_values-ne-rNP.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-night-v8_values-night-v8.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-night-v8_values-night-v8.arsc.flat
new file mode 100644
index 00000000..91e8ef96
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-night-v8_values-night-v8.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-nl_values-nl.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-nl_values-nl.arsc.flat
new file mode 100644
index 00000000..2f69453e
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-nl_values-nl.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-pl_values-pl.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-pl_values-pl.arsc.flat
new file mode 100644
index 00000000..fb9bf37e
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-pl_values-pl.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-port_values-port.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-port_values-port.arsc.flat
new file mode 100644
index 00000000..54f5118f
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-port_values-port.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-pt-rPT_values-pt-rPT.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-pt-rPT_values-pt-rPT.arsc.flat
new file mode 100644
index 00000000..b096aac1
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-pt-rPT_values-pt-rPT.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-pt_values-pt.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-pt_values-pt.arsc.flat
new file mode 100644
index 00000000..59554f08
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-pt_values-pt.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-ro_values-ro.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-ro_values-ro.arsc.flat
new file mode 100644
index 00000000..4f731d4f
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-ro_values-ro.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-ru_values-ru.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-ru_values-ru.arsc.flat
new file mode 100644
index 00000000..90546950
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-ru_values-ru.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-si-rLK_values-si-rLK.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-si-rLK_values-si-rLK.arsc.flat
new file mode 100644
index 00000000..5b23381e
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-si-rLK_values-si-rLK.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-sk_values-sk.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-sk_values-sk.arsc.flat
new file mode 100644
index 00000000..55df701a
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-sk_values-sk.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-sl_values-sl.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-sl_values-sl.arsc.flat
new file mode 100644
index 00000000..58db0620
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-sl_values-sl.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-sr_values-sr.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-sr_values-sr.arsc.flat
new file mode 100644
index 00000000..32359d6d
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-sr_values-sr.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-sv_values-sv.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-sv_values-sv.arsc.flat
new file mode 100644
index 00000000..c9cb2701
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-sv_values-sv.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat
new file mode 100644
index 00000000..66ad84b7
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-sw600dp-v13_values-sw600dp-v13.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-sw_values-sw.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-sw_values-sw.arsc.flat
new file mode 100644
index 00000000..ab0795f2
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-sw_values-sw.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-ta-rIN_values-ta-rIN.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-ta-rIN_values-ta-rIN.arsc.flat
new file mode 100644
index 00000000..f404f9f7
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-ta-rIN_values-ta-rIN.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-te-rIN_values-te-rIN.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-te-rIN_values-te-rIN.arsc.flat
new file mode 100644
index 00000000..2f0514d9
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-te-rIN_values-te-rIN.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-th_values-th.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-th_values-th.arsc.flat
new file mode 100644
index 00000000..12ee787a
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-th_values-th.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-tl_values-tl.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-tl_values-tl.arsc.flat
new file mode 100644
index 00000000..6a1516fb
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-tl_values-tl.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-tr_values-tr.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-tr_values-tr.arsc.flat
new file mode 100644
index 00000000..5e10d71f
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-tr_values-tr.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-uk_values-uk.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-uk_values-uk.arsc.flat
new file mode 100644
index 00000000..6903ddbb
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-uk_values-uk.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-ur-rPK_values-ur-rPK.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-ur-rPK_values-ur-rPK.arsc.flat
new file mode 100644
index 00000000..6c72bfd8
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-ur-rPK_values-ur-rPK.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-uz-rUZ_values-uz-rUZ.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-uz-rUZ_values-uz-rUZ.arsc.flat
new file mode 100644
index 00000000..980170c6
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-uz-rUZ_values-uz-rUZ.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-v11_values-v11.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-v11_values-v11.arsc.flat
new file mode 100644
index 00000000..b7e8a1b7
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-v11_values-v11.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-v12_values-v12.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-v12_values-v12.arsc.flat
new file mode 100644
index 00000000..5c08d520
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-v12_values-v12.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-v14_values-v14.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-v14_values-v14.arsc.flat
new file mode 100644
index 00000000..c42b233a
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-v14_values-v14.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-v17_values-v17.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-v17_values-v17.arsc.flat
new file mode 100644
index 00000000..0dc5aaa9
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-v17_values-v17.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-v18_values-v18.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-v18_values-v18.arsc.flat
new file mode 100644
index 00000000..b7a3c182
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-v18_values-v18.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-v21_values-v21.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-v21_values-v21.arsc.flat
new file mode 100644
index 00000000..be6be464
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-v21_values-v21.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-vi_values-vi.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-vi_values-vi.arsc.flat
new file mode 100644
index 00000000..cf5806c7
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-vi_values-vi.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-w360dp-v13_values-w360dp-v13.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-w360dp-v13_values-w360dp-v13.arsc.flat
new file mode 100644
index 00000000..e2ce616f
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-w360dp-v13_values-w360dp-v13.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-w480dp-v13_values-w480dp-v13.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-w480dp-v13_values-w480dp-v13.arsc.flat
new file mode 100644
index 00000000..e02ad4f5
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-w480dp-v13_values-w480dp-v13.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-w500dp-v13_values-w500dp-v13.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-w500dp-v13_values-w500dp-v13.arsc.flat
new file mode 100644
index 00000000..cefd96ec
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-w500dp-v13_values-w500dp-v13.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-w600dp-v13_values-w600dp-v13.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-w600dp-v13_values-w600dp-v13.arsc.flat
new file mode 100644
index 00000000..f08b7ed7
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-w600dp-v13_values-w600dp-v13.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-w720dp-v13_values-w720dp-v13.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-w720dp-v13_values-w720dp-v13.arsc.flat
new file mode 100644
index 00000000..729417fd
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-w720dp-v13_values-w720dp-v13.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-xlarge-land-v4_values-xlarge-land-v4.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-xlarge-land-v4_values-xlarge-land-v4.arsc.flat
new file mode 100644
index 00000000..f0e24dca
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-xlarge-land-v4_values-xlarge-land-v4.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat
new file mode 100644
index 00000000..9eded62b
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-xlarge-v4_values-xlarge-v4.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-zh-rCN_values-zh-rCN.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-zh-rCN_values-zh-rCN.arsc.flat
new file mode 100644
index 00000000..a8337a6e
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-zh-rCN_values-zh-rCN.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-zh-rHK_values-zh-rHK.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-zh-rHK_values-zh-rHK.arsc.flat
new file mode 100644
index 00000000..af7015e2
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-zh-rHK_values-zh-rHK.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-zh-rTW_values-zh-rTW.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-zh-rTW_values-zh-rTW.arsc.flat
new file mode 100644
index 00000000..9ffcd9bf
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-zh-rTW_values-zh-rTW.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values-zu_values-zu.arsc.flat b/src/app/build/intermediates/merged_res/debug/values-zu_values-zu.arsc.flat
new file mode 100644
index 00000000..02df7d0d
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values-zu_values-zu.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/values_values.arsc.flat b/src/app/build/intermediates/merged_res/debug/values_values.arsc.flat
new file mode 100644
index 00000000..865e544b
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/values_values.arsc.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/xml_preferences.xml.flat b/src/app/build/intermediates/merged_res/debug/xml_preferences.xml.flat
new file mode 100644
index 00000000..e36a3382
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/xml_preferences.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/xml_searchable.xml.flat b/src/app/build/intermediates/merged_res/debug/xml_searchable.xml.flat
new file mode 100644
index 00000000..c4dc076d
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/xml_searchable.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/xml_widget_2x_info.xml.flat b/src/app/build/intermediates/merged_res/debug/xml_widget_2x_info.xml.flat
new file mode 100644
index 00000000..b960844a
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/xml_widget_2x_info.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res/debug/xml_widget_4x_info.xml.flat b/src/app/build/intermediates/merged_res/debug/xml_widget_4x_info.xml.flat
new file mode 100644
index 00000000..1605ca0a
Binary files /dev/null and b/src/app/build/intermediates/merged_res/debug/xml_widget_4x_info.xml.flat differ
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/debug.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/debug.json
new file mode 100644
index 00000000..810f07bf
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/debug.json
@@ -0,0 +1,2271 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-es-rUS_values-es-rUS.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-es-rUS\\values-es-rUS.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,415,524,632,717,818,941,1053,1165,1266,1374,1481,1588",
+ "endColumns": "119,108,107,84,100,122,111,111,100,107,106,106,121",
+ "endOffsets": "410,519,627,712,813,936,1048,1160,1261,1369,1476,1583,1705"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,175,284,392,477,578,701,813,925,1026,1134,1241,1348",
+ "endColumns": "119,108,107,84,100,122,111,111,100,107,106,106,121",
+ "endOffsets": "170,279,387,472,573,696,808,920,1021,1129,1236,1343,1465"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-vi_values-vi.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-vi\\values-vi.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,405,513,622,706,809,928,1032,1141,1242,1347,1461,1566",
+ "endColumns": "113,107,108,83,102,118,103,108,100,104,113,104,119",
+ "endOffsets": "400,508,617,701,804,923,1027,1136,1237,1342,1456,1561,1681"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,169,277,386,470,573,692,796,905,1006,1111,1225,1330",
+ "endColumns": "113,107,108,83,102,118,103,108,100,104,113,104,119",
+ "endOffsets": "164,272,381,465,568,687,791,900,1001,1106,1220,1325,1445"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-uk_values-uk.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-uk\\values-uk.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,401,503,609,695,803,921,1027,1134,1232,1340,1446,1555",
+ "endColumns": "109,101,105,85,107,117,105,106,97,107,105,108,123",
+ "endOffsets": "396,498,604,690,798,916,1022,1129,1227,1335,1441,1550,1674"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,165,267,373,459,567,685,791,898,996,1104,1210,1319",
+ "endColumns": "109,101,105,85,107,117,105,106,97,107,105,108,123",
+ "endOffsets": "160,262,368,454,562,680,786,893,991,1099,1205,1314,1438"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-kk-rKZ_values-kk-rKZ.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-kk-rKZ\\values-kk-rKZ.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,407,510,620,709,815,934,1037,1142,1240,1347,1456,1556",
+ "endColumns": "111,102,109,88,105,118,102,104,97,106,108,99,114",
+ "endOffsets": "402,505,615,704,810,929,1032,1137,1235,1342,1451,1551,1666"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,167,270,380,469,575,694,797,902,1000,1107,1216,1316",
+ "endColumns": "111,102,109,88,105,118,102,104,97,106,108,99,114",
+ "endOffsets": "162,265,375,464,570,689,792,897,995,1102,1211,1311,1426"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-mk-rMK_values-mk-rMK.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-mk-rMK\\values-mk-rMK.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,403,507,615,701,806,925,1031,1138,1239,1346,1457",
+ "endColumns": "107,103,107,85,104,118,105,106,100,106,110,103",
+ "endOffsets": "398,502,610,696,801,920,1026,1133,1234,1341,1452,1556"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,163,267,375,461,566,685,791,898,999,1106,1217",
+ "endColumns": "107,103,107,85,104,118,105,106,100,106,110,103",
+ "endOffsets": "158,262,370,456,561,680,786,893,994,1101,1212,1316"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-zh-rTW_values-zh-rTW.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values-zh-rTW\\strings.xml",
+ "from": {
+ "startLines": "122,72,71,70,69,19,20,21,112,113,121,120,26,76,77,75,74,73,89,88,87,79,61,29,30,80,37,114,68,64,39,45,50,40,60,59,58,54,53,51,52,55,56,46,67,57,65,44,49,48,47,63,43,62,41,42,66,28,34,36,33,35,32,31,25,24,96,95,98,110,103,102,104,105,107,106,97,101,99,100,94,108,109,119,117,116,118,27,78,86,91,90,92,85,84,83,82,22,23",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "6507,3575,3509,3436,3386,827,867,915,6057,6102,6453,6403,1199,3835,3903,3776,3710,3647,4565,4505,4442,4035,2957,1369,1422,4089,1768,6159,3327,3114,1878,2159,2405,1931,2897,2844,2793,2598,2550,2456,2504,2644,2691,2202,3268,2741,3157,2116,2358,2302,2247,3059,2072,3017,1981,2022,3209,1318,1623,1719,1576,1672,1529,1484,1148,1095,4940,4881,5081,5982,5392,5323,5456,5534,5717,5644,5015,5268,5138,5203,4832,5821,5904,6365,6258,6210,6303,1261,3980,4383,4678,4620,4745,4335,4290,4242,4191,963,1029",
+ "endLines": "124,72,71,70,69,19,20,21,112,113,121,120,26,76,77,75,74,73,89,88,87,79,61,29,30,80,37,114,68,64,39,45,50,40,60,59,58,54,53,51,52,55,56,46,67,57,65,44,49,48,47,63,43,62,41,42,66,28,34,36,33,35,32,31,25,24,96,95,98,110,103,102,104,105,107,106,97,101,99,100,94,108,109,119,117,116,118,27,78,86,91,90,92,85,84,83,82,22,23",
+ "endColumns": "14,71,65,72,49,39,47,47,44,56,53,49,61,67,76,58,65,62,54,59,62,53,59,52,61,83,79,49,58,42,52,42,50,49,59,52,50,45,47,47,45,46,49,44,58,51,51,42,46,55,54,54,43,41,40,49,58,50,48,48,46,46,46,44,50,52,74,58,56,73,63,68,77,109,103,72,65,54,64,64,48,82,77,37,44,47,61,56,54,58,66,57,61,47,44,47,50,65,65",
+ "endOffsets": "6679,3642,3570,3504,3431,862,910,958,6097,6154,6502,6448,1256,3898,3975,3830,3771,3705,4615,4560,4500,4084,3012,1417,1479,4168,1843,6204,3381,3152,1926,2197,2451,1976,2952,2892,2839,2639,2593,2499,2545,2686,2736,2242,3322,2788,3204,2154,2400,2353,2297,3109,2111,3054,2017,2067,3263,1364,1667,1763,1618,1714,1571,1524,1194,1143,5010,4935,5133,6051,5451,5387,5529,5639,5816,5712,5076,5318,5198,5263,4876,5899,5977,6398,6298,6253,6360,1313,4030,4437,4740,4673,4802,4378,4330,4285,4237,1024,1090"
+ },
+ "to": {
+ "startLines": "6,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "215,1651,1723,1789,1862,1912,1952,2000,2048,2093,2150,2204,2254,2316,2384,2461,2520,2586,2649,2704,2764,2827,2881,2941,2994,3056,3140,3220,3270,3329,3372,3425,3468,3519,3569,3629,3682,3733,3779,3827,3875,3921,3968,4018,4063,4122,4174,4226,4269,4316,4372,4427,4482,4526,4568,4609,4659,4718,4769,4818,4867,4914,4961,5008,5053,5104,5157,5232,5291,5348,5422,5486,5555,5633,5743,5847,5920,5986,6041,6106,6171,6220,6303,6381,6419,6464,6512,6574,6631,6686,6745,6812,6870,6932,6980,7025,7073,7124,7190",
+ "endLines": "8,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119",
+ "endColumns": "14,71,65,72,49,39,47,47,44,56,53,49,61,67,76,58,65,62,54,59,62,53,59,52,61,83,79,49,58,42,52,42,50,49,59,52,50,45,47,47,45,46,49,44,58,51,51,42,46,55,54,54,43,41,40,49,58,50,48,48,46,46,46,44,50,52,74,58,56,73,63,68,77,109,103,72,65,54,64,64,48,82,77,37,44,47,61,56,54,58,66,57,61,47,44,47,50,65,65",
+ "endOffsets": "379,1718,1784,1857,1907,1947,1995,2043,2088,2145,2199,2249,2311,2379,2456,2515,2581,2644,2699,2759,2822,2876,2936,2989,3051,3135,3215,3265,3324,3367,3420,3463,3514,3564,3624,3677,3728,3774,3822,3870,3916,3963,4013,4058,4117,4169,4221,4264,4311,4367,4422,4477,4521,4563,4604,4654,4713,4764,4813,4862,4909,4956,5003,5048,5099,5152,5227,5286,5343,5417,5481,5550,5628,5738,5842,5915,5981,6036,6101,6166,6215,6298,6376,6414,6459,6507,6569,6626,6681,6740,6807,6865,6927,6975,7020,7068,7119,7185,7251"
+ }
+ },
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-zh-rTW\\values-zh-rTW.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,390,483,583,665,762,870,966,1062,1157,1254,1349,1449",
+ "endColumns": "94,92,99,81,96,107,95,95,94,96,94,99,112",
+ "endOffsets": "385,478,578,660,757,865,961,1057,1152,1249,1344,1444,1557"
+ },
+ "to": {
+ "startLines": "9,10,11,12,13,14,15,16,17,18,19,20,21",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "384,479,572,672,754,851,959,1055,1151,1246,1343,1438,1538",
+ "endColumns": "94,92,99,81,96,107,95,95,94,96,94,99,112",
+ "endOffsets": "474,567,667,749,846,954,1050,1146,1241,1338,1433,1533,1646"
+ }
+ },
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values-zh-rTW\\arrays.xml",
+ "from": {
+ "startLines": "18",
+ "startColumns": "4",
+ "startOffsets": "712",
+ "endLines": "21",
+ "endColumns": "19",
+ "endOffsets": "817"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "105",
+ "endLines": "5",
+ "endColumns": "19",
+ "endOffsets": "210"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-lt_values-lt.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-lt\\values-lt.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,407,508,621,708,817,938,1047,1156,1256,1366,1470,1583",
+ "endColumns": "115,100,112,86,108,120,108,108,99,109,103,112,129",
+ "endOffsets": "402,503,616,703,812,933,1042,1151,1251,1361,1465,1578,1708"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,171,272,385,472,581,702,811,920,1020,1130,1234,1347",
+ "endColumns": "115,100,112,86,108,120,108,108,99,109,103,112,129",
+ "endOffsets": "166,267,380,467,576,697,806,915,1015,1125,1229,1342,1472"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-fa_values-fa.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-fa\\values-fa.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,401,504,615,703,806,921,1033,1136,1234,1344,1447,1556",
+ "endColumns": "109,102,110,87,102,114,111,102,97,109,102,108,124",
+ "endOffsets": "396,499,610,698,801,916,1028,1131,1229,1339,1442,1551,1676"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,165,268,379,467,570,685,797,900,998,1108,1211,1320",
+ "endColumns": "109,102,110,87,102,114,111,102,97,109,102,108,124",
+ "endOffsets": "160,263,374,462,565,680,792,895,993,1103,1206,1315,1440"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-mn-rMN_values-mn-rMN.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-mn-rMN\\values-mn-rMN.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,408,508,621,708,814,926,1035,1139,1236,1344,1445,1548",
+ "endColumns": "112,99,112,86,105,111,108,103,96,107,100,102,121",
+ "endOffsets": "403,503,616,703,809,921,1030,1134,1231,1339,1440,1543,1665"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,168,268,381,468,574,686,795,899,996,1104,1205,1308",
+ "endColumns": "112,99,112,86,105,111,108,103,96,107,100,102,121",
+ "endOffsets": "163,263,376,463,569,681,790,894,991,1099,1200,1303,1425"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-sv_values-sv.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-sv\\values-sv.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,397,500,611,696,798,911,1017,1117,1213,1318,1420,1522",
+ "endColumns": "105,102,110,84,101,112,105,99,95,104,101,101,116",
+ "endOffsets": "392,495,606,691,793,906,1012,1112,1208,1313,1415,1517,1634"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,161,264,375,460,562,675,781,881,977,1082,1184,1286",
+ "endColumns": "105,102,110,84,101,112,105,99,95,104,101,101,116",
+ "endOffsets": "156,259,370,455,557,670,776,876,972,1077,1179,1281,1398"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-ro_values-ro.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ro\\values-ro.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,412,516,629,717,829,950,1062,1175,1275,1389,1494,1600",
+ "endColumns": "120,103,112,87,111,120,111,112,99,113,104,105,120",
+ "endOffsets": "407,511,624,712,824,945,1057,1170,1270,1384,1489,1595,1716"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,176,280,393,481,593,714,826,939,1039,1153,1258,1364",
+ "endColumns": "120,103,112,87,111,120,111,112,99,113,104,105,120",
+ "endOffsets": "171,275,388,476,588,709,821,934,1034,1148,1253,1359,1480"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-af_values-af.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-af\\values-af.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,395,495,601,686,789,907,1014,1117,1214,1322,1424,1526",
+ "endColumns": "103,99,105,84,102,117,106,102,96,107,101,101,116",
+ "endOffsets": "390,490,596,681,784,902,1009,1112,1209,1317,1419,1521,1638"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,159,259,365,450,553,671,778,881,978,1086,1188,1290",
+ "endColumns": "103,99,105,84,102,117,106,102,96,107,101,101,116",
+ "endOffsets": "154,254,360,445,548,666,773,876,973,1081,1183,1285,1402"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-lv_values-lv.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-lv\\values-lv.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,411,519,628,714,818,940,1049,1161,1260,1371,1480,1585",
+ "endColumns": "119,107,108,85,103,121,108,111,98,110,108,104,118",
+ "endOffsets": "406,514,623,709,813,935,1044,1156,1255,1366,1475,1580,1699"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,175,283,392,478,582,704,813,925,1024,1135,1244,1349",
+ "endColumns": "119,107,108,85,103,121,108,111,98,110,108,104,118",
+ "endOffsets": "170,278,387,473,577,699,808,920,1019,1130,1239,1344,1463"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-de_values-de.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-de\\values-de.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,396,494,606,692,797,912,1023,1126,1225,1336,1438,1545",
+ "endColumns": "104,97,111,85,104,114,110,102,98,110,101,106,121",
+ "endOffsets": "391,489,601,687,792,907,1018,1121,1220,1331,1433,1540,1662"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,160,258,370,456,561,676,787,890,989,1100,1202,1309",
+ "endColumns": "104,97,111,85,104,114,110,102,98,110,101,106,121",
+ "endOffsets": "155,253,365,451,556,671,782,885,984,1095,1197,1304,1426"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-is-rIS_values-is-rIS.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-is-rIS\\values-is-rIS.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,395,492,604,689,790,904,1014,1122,1220,1329,1428,1531",
+ "endColumns": "99,96,111,84,100,113,109,107,97,108,98,102,117",
+ "endOffsets": "390,487,599,684,785,899,1009,1117,1215,1324,1423,1526,1644"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,155,252,364,449,550,664,774,882,980,1089,1188,1291",
+ "endColumns": "99,96,111,84,100,113,109,107,97,108,98,102,117",
+ "endOffsets": "150,247,359,444,545,659,769,877,975,1084,1183,1286,1404"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-kn-rIN_values-kn-rIN.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-kn-rIN\\values-kn-rIN.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,413,525,638,726,833,960,1076,1187,1286,1399,1503,1617",
+ "endColumns": "117,111,112,87,106,126,115,110,98,112,103,113,125",
+ "endOffsets": "408,520,633,721,828,955,1071,1182,1281,1394,1498,1612,1738"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,173,285,398,486,593,720,836,947,1046,1159,1263,1377",
+ "endColumns": "117,111,112,87,106,126,115,110,98,112,103,113,125",
+ "endOffsets": "168,280,393,481,588,715,831,942,1041,1154,1258,1372,1498"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-ur-rPK_values-ur-rPK.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ur-rPK\\values-ur-rPK.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,405,511,620,706,810,930,1038,1147,1249,1360,1460,1568",
+ "endColumns": "109,105,108,85,103,119,107,108,101,110,99,107,128",
+ "endOffsets": "400,506,615,701,805,925,1033,1142,1244,1355,1455,1563,1692"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,165,271,380,466,570,690,798,907,1009,1120,1220,1328",
+ "endColumns": "109,105,108,85,103,119,107,108,101,110,99,107,128",
+ "endOffsets": "160,266,375,461,565,685,793,902,1004,1115,1215,1323,1452"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-pl_values-pl.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-pl\\values-pl.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,407,509,617,703,812,931,1040,1149,1248,1357,1468,1576",
+ "endColumns": "115,101,107,85,108,118,108,108,98,108,110,107,122",
+ "endOffsets": "402,504,612,698,807,926,1035,1144,1243,1352,1463,1571,1694"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,171,273,381,467,576,695,804,913,1012,1121,1232,1340",
+ "endColumns": "115,101,107,85,108,118,108,108,98,108,110,107,122",
+ "endOffsets": "166,268,376,462,571,690,799,908,1007,1116,1227,1335,1458"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-am_values-am.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-am\\values-am.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,393,492,598,684,787,900,1000,1100,1196,1299,1398,1505",
+ "endColumns": "101,98,105,85,102,112,99,99,95,102,98,106,115",
+ "endOffsets": "388,487,593,679,782,895,995,1095,1191,1294,1393,1500,1616"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,157,256,362,448,551,664,764,864,960,1063,1162,1269",
+ "endColumns": "101,98,105,85,102,112,99,99,95,102,98,106,115",
+ "endOffsets": "152,251,357,443,546,659,759,859,955,1058,1157,1264,1380"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-w360dp-v13_values-w360dp-v13.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-w360dp\\values-w360dp.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "4",
+ "startOffsets": "294",
+ "endColumns": "54",
+ "endOffsets": "344"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "54",
+ "endOffsets": "105"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-zu_values-zu.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-zu\\values-zu.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,399,506,620,708,811,938,1042,1148,1246,1353,1459,1565",
+ "endColumns": "107,106,113,87,102,126,103,105,97,106,105,105,119",
+ "endOffsets": "394,501,615,703,806,933,1037,1143,1241,1348,1454,1560,1680"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,163,270,384,472,575,702,806,912,1010,1117,1223,1329",
+ "endColumns": "107,106,113,87,102,126,103,105,97,106,105,105,119",
+ "endOffsets": "158,265,379,467,570,697,801,907,1005,1112,1218,1324,1444"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-km-rKH_values-km-rKH.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-km-rKH\\values-km-rKH.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,398,498,610,697,801,919,1023,1128,1228,1338,1445,1553",
+ "endColumns": "102,99,111,86,103,117,103,104,99,109,106,107,122",
+ "endOffsets": "393,493,605,692,796,914,1018,1123,1223,1333,1440,1548,1671"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,158,258,370,457,561,679,783,888,988,1098,1205,1313",
+ "endColumns": "102,99,111,86,103,117,103,104,99,109,106,107,122",
+ "endOffsets": "153,253,365,452,556,674,778,883,983,1093,1200,1308,1431"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-xlarge-land-v4_values-xlarge-land-v4.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-xlarge-land\\values-xlarge-land.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "4",
+ "startOffsets": "299",
+ "endColumns": "63",
+ "endOffsets": "358"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "63",
+ "endOffsets": "114"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-fr-rCA_values-fr-rCA.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-fr-rCA\\values-fr-rCA.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,406,521,632,719,835,965,1075,1187,1290,1401,1508,1615",
+ "endColumns": "110,114,110,86,115,129,109,111,102,110,106,106,121",
+ "endOffsets": "401,516,627,714,830,960,1070,1182,1285,1396,1503,1610,1732"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,166,281,392,479,595,725,835,947,1050,1161,1268,1375",
+ "endColumns": "110,114,110,86,115,129,109,111,102,110,106,106,121",
+ "endOffsets": "161,276,387,474,590,720,830,942,1045,1156,1263,1370,1492"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-th_values-th.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-th\\values-th.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,396,494,602,691,793,903,1011,1115,1213,1321,1426,1527",
+ "endColumns": "104,97,107,88,101,109,107,103,97,107,104,100,115",
+ "endOffsets": "391,489,597,686,788,898,1006,1110,1208,1316,1421,1522,1638"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,160,258,366,455,557,667,775,879,977,1085,1190,1291",
+ "endColumns": "104,97,107,88,101,109,107,103,97,107,104,100,115",
+ "endOffsets": "155,253,361,450,552,662,770,874,972,1080,1185,1286,1402"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-w720dp-v13_values-w720dp-v13.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-w720dp\\values-w720dp.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "4",
+ "startOffsets": "293",
+ "endColumns": "76",
+ "endOffsets": "365"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "76",
+ "endOffsets": "127"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-xlarge-v4_values-xlarge-v4.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-xlarge\\values-xlarge.xml",
+ "from": {
+ "startLines": "4,7,8,9,10,11,12",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "293,609,673,740,807,873,939",
+ "endColumns": "76,63,66,66,65,65,54",
+ "endOffsets": "365,668,735,802,868,934,989"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "55,132,196,263,330,396,462",
+ "endColumns": "76,63,66,66,65,65,54",
+ "endOffsets": "127,191,258,325,391,457,512"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-tr_values-tr.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-tr\\values-tr.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,396,495,607,697,803,923,1030,1135,1231,1338,1440,1548",
+ "endColumns": "104,98,111,89,105,119,106,104,95,106,101,107,118",
+ "endOffsets": "391,490,602,692,798,918,1025,1130,1226,1333,1435,1543,1662"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,160,259,371,461,567,687,794,899,995,1102,1204,1312",
+ "endColumns": "104,98,111,89,105,119,106,104,95,106,101,107,118",
+ "endOffsets": "155,254,366,456,562,682,789,894,990,1097,1199,1307,1426"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-ka-rGE_values-ka-rGE.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ka-rGE\\values-ka-rGE.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,404,508,619,707,812,925,1038,1145,1243,1356,1460,1564",
+ "endColumns": "108,103,110,87,104,112,112,106,97,112,103,103,121",
+ "endOffsets": "399,503,614,702,807,920,1033,1140,1238,1351,1455,1559,1681"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,164,268,379,467,572,685,798,905,1003,1116,1220,1324",
+ "endColumns": "108,103,110,87,104,112,112,106,97,112,103,103,121",
+ "endOffsets": "159,263,374,462,567,680,793,900,998,1111,1215,1319,1441"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-ta-rIN_values-ta-rIN.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ta-rIN\\values-ta-rIN.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,409,514,629,718,825,951,1053,1157,1254,1364,1466,1573",
+ "endColumns": "113,104,114,88,106,125,101,103,96,109,101,106,118",
+ "endOffsets": "404,509,624,713,820,946,1048,1152,1249,1359,1461,1568,1687"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,169,274,389,478,585,711,813,917,1014,1124,1226,1333",
+ "endColumns": "113,104,114,88,106,125,101,103,96,109,101,106,118",
+ "endOffsets": "164,269,384,473,580,706,808,912,1009,1119,1221,1328,1447"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-et-rEE_values-et-rEE.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-et-rEE\\values-et-rEE.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,412,519,630,716,818,935,1046,1151,1250,1360,1461,1564",
+ "endColumns": "116,106,110,85,101,116,110,104,98,109,100,102,127",
+ "endOffsets": "407,514,625,711,813,930,1041,1146,1245,1355,1456,1559,1687"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,172,279,390,476,578,695,806,911,1010,1120,1221,1324",
+ "endColumns": "116,106,110,85,101,116,110,104,98,109,100,102,127",
+ "endOffsets": "167,274,385,471,573,690,801,906,1005,1115,1216,1319,1447"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-sk_values-sk.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-sk\\values-sk.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,398,498,609,695,803,921,1026,1135,1234,1340,1451,1560",
+ "endColumns": "106,99,110,85,107,117,104,108,98,105,110,108,123",
+ "endOffsets": "393,493,604,690,798,916,1021,1130,1229,1335,1446,1555,1679"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,162,262,373,459,567,685,790,899,998,1104,1215,1324",
+ "endColumns": "106,99,110,85,107,117,104,108,98,105,110,108,123",
+ "endOffsets": "157,257,368,454,562,680,785,894,993,1099,1210,1319,1443"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-port_values-port.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-port\\values-port.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "4",
+ "startOffsets": "291",
+ "endColumns": "55",
+ "endOffsets": "342"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "55",
+ "endOffsets": "106"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-en-rGB_values-en-rGB.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-en-rGB\\values-en-rGB.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,399,499,607,695,795,910,1013,1117,1216,1321,1424,1528",
+ "endColumns": "103,99,107,87,99,114,102,103,98,104,102,103,118",
+ "endOffsets": "394,494,602,690,790,905,1008,1112,1211,1316,1419,1523,1642"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,159,259,367,455,555,670,773,877,976,1081,1184,1288",
+ "endColumns": "103,99,107,87,99,114,102,103,98,104,102,103,118",
+ "endOffsets": "154,254,362,450,550,665,768,872,971,1076,1179,1283,1402"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-nl_values-nl.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-nl\\values-nl.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,409,514,621,707,815,935,1046,1150,1249,1364,1477,1580",
+ "endColumns": "117,104,106,85,107,119,110,103,98,114,112,102,117",
+ "endOffsets": "404,509,616,702,810,930,1041,1145,1244,1359,1472,1575,1693"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,173,278,385,471,579,699,810,914,1013,1128,1241,1344",
+ "endColumns": "117,104,106,85,107,119,110,103,98,114,112,102,117",
+ "endOffsets": "168,273,380,466,574,694,805,909,1008,1123,1236,1339,1457"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-w500dp-v13_values-w500dp-v13.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-w500dp\\values-w500dp.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "4",
+ "startOffsets": "294",
+ "endColumns": "54",
+ "endOffsets": "344"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "54",
+ "endOffsets": "105"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-ca_values-ca.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ca\\values-ca.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,409,515,622,705,813,939,1050,1159,1257,1367,1471,1579",
+ "endColumns": "117,105,106,82,107,125,110,108,97,109,103,107,122",
+ "endOffsets": "404,510,617,700,808,934,1045,1154,1252,1362,1466,1574,1697"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,173,279,386,469,577,703,814,923,1021,1131,1235,1343",
+ "endColumns": "117,105,106,82,107,125,110,108,97,109,103,107,122",
+ "endOffsets": "168,274,381,464,572,698,809,918,1016,1126,1230,1338,1461"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-in_values-in.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-in\\values-in.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,401,503,608,695,799,915,1018,1127,1228,1332,1440,1548",
+ "endColumns": "109,101,104,86,103,115,102,108,100,103,107,107,122",
+ "endOffsets": "396,498,603,690,794,910,1013,1122,1223,1327,1435,1543,1666"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,165,267,372,459,563,679,782,891,992,1096,1204,1312",
+ "endColumns": "109,101,104,86,103,115,102,108,100,103,107,107,122",
+ "endOffsets": "160,262,367,454,558,674,777,886,987,1091,1199,1307,1430"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-hu_values-hu.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-hu\\values-hu.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,399,504,619,703,815,945,1055,1166,1266,1377,1485,1604",
+ "endColumns": "107,104,114,83,111,129,109,110,99,110,107,118,133",
+ "endOffsets": "394,499,614,698,810,940,1050,1161,1261,1372,1480,1599,1733"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,163,268,383,467,579,709,819,930,1030,1141,1249,1368",
+ "endColumns": "107,104,114,83,111,129,109,110,99,110,107,118,133",
+ "endOffsets": "158,263,378,462,574,704,814,925,1025,1136,1244,1363,1497"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-pt-rPT_values-pt-rPT.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-pt-rPT\\values-pt-rPT.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,415,521,628,717,818,942,1049,1161,1263,1371,1478,1585",
+ "endColumns": "119,105,106,88,100,123,106,111,101,107,106,106,121",
+ "endOffsets": "410,516,623,712,813,937,1044,1156,1258,1366,1473,1580,1702"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,175,281,388,477,578,702,809,921,1023,1131,1238,1345",
+ "endColumns": "119,105,106,88,100,123,106,111,101,107,106,106,121",
+ "endOffsets": "170,276,383,472,573,697,804,916,1018,1126,1233,1340,1462"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-te-rIN_values-te-rIN.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-te-rIN\\values-te-rIN.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,409,518,629,719,824,949,1062,1170,1270,1381,1483,1600",
+ "endColumns": "113,108,110,89,104,124,112,107,99,110,101,116,126",
+ "endOffsets": "404,513,624,714,819,944,1057,1165,1265,1376,1478,1595,1722"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,169,278,389,479,584,709,822,930,1030,1141,1243,1360",
+ "endColumns": "113,108,110,89,104,124,112,107,99,110,101,116,126",
+ "endOffsets": "164,273,384,474,579,704,817,925,1025,1136,1238,1355,1482"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-ne-rNP_values-ne-rNP.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ne-rNP\\values-ne-rNP.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,400,504,612,703,810,937,1047,1163,1266,1381,1483,1598",
+ "endColumns": "104,103,107,90,106,126,109,115,102,114,101,114,130",
+ "endOffsets": "395,499,607,698,805,932,1042,1158,1261,1376,1478,1593,1724"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,160,264,372,463,570,697,807,923,1026,1141,1243,1358",
+ "endColumns": "104,103,107,90,106,126,109,115,102,114,101,114,130",
+ "endOffsets": "155,259,367,458,565,692,802,918,1021,1136,1238,1353,1484"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-fr_values-fr.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-fr\\values-fr.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,402,517,628,710,816,946,1056,1168,1271,1382,1489,1596",
+ "endColumns": "110,114,110,81,105,129,109,111,102,110,106,106,121",
+ "endOffsets": "397,512,623,705,811,941,1051,1163,1266,1377,1484,1591,1713"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,166,281,392,474,580,710,820,932,1035,1146,1253,1360",
+ "endColumns": "110,114,110,81,105,129,109,111,102,110,106,106,121",
+ "endOffsets": "161,276,387,469,575,705,815,927,1030,1141,1248,1355,1477"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-hdpi-v4_values-hdpi-v4.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-hdpi\\values-hdpi.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "4",
+ "startOffsets": "297",
+ "endLines": "8",
+ "endColumns": "13",
+ "endOffsets": "567"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endLines": "6",
+ "endColumns": "13",
+ "endOffsets": "325"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-lo-rLA_values-lo-rLA.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-lo-rLA\\values-lo-rLA.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,398,495,602,687,792,904,1011,1108,1206,1311,1414,1518",
+ "endColumns": "102,96,106,84,104,111,106,96,97,104,102,103,121",
+ "endOffsets": "393,490,597,682,787,899,1006,1103,1201,1306,1409,1513,1635"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,158,255,362,447,552,664,771,868,966,1071,1174,1278",
+ "endColumns": "102,96,106,84,104,111,106,96,97,104,102,103,121",
+ "endOffsets": "153,250,357,442,547,659,766,863,961,1066,1169,1273,1395"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-zh-rHK_values-zh-rHK.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-zh-rHK\\values-zh-rHK.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,390,483,583,665,762,870,966,1062,1157,1254,1349,1447",
+ "endColumns": "94,92,99,81,96,107,95,95,94,96,94,97,112",
+ "endOffsets": "385,478,578,660,757,865,961,1057,1152,1249,1344,1442,1555"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,150,243,343,425,522,630,726,822,917,1014,1109,1207",
+ "endColumns": "94,92,99,81,96,107,95,95,94,96,94,97,112",
+ "endOffsets": "145,238,338,420,517,625,721,817,912,1009,1104,1202,1315"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-w600dp-v13_values-w600dp-v13.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-w600dp\\values-w600dp.xml",
+ "from": {
+ "startLines": "4,5",
+ "startColumns": "4,4",
+ "startOffsets": "294,358",
+ "endColumns": "63,54",
+ "endOffsets": "353,408"
+ },
+ "to": {
+ "startLines": "2,3",
+ "startColumns": "4,4",
+ "startOffsets": "55,119",
+ "endColumns": "63,54",
+ "endOffsets": "114,169"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-da_values-da.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-da\\values-da.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,394,493,605,688,788,901,1010,1118,1214,1328,1432,1533",
+ "endColumns": "102,98,111,82,99,112,108,107,95,113,103,100,115",
+ "endOffsets": "389,488,600,683,783,896,1005,1113,1209,1323,1427,1528,1644"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,158,257,369,452,552,665,774,882,978,1092,1196,1297",
+ "endColumns": "102,98,111,82,99,112,108,107,95,113,103,100,115",
+ "endOffsets": "153,252,364,447,547,660,769,877,973,1087,1191,1292,1408"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-sr_values-sr.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-sr\\values-sr.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,400,503,609,695,799,917,1022,1130,1231,1335,1443,1544",
+ "endColumns": "108,102,105,85,103,117,104,107,100,103,107,100,127",
+ "endOffsets": "395,498,604,690,794,912,1017,1125,1226,1330,1438,1539,1667"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,164,267,373,459,563,681,786,894,995,1099,1207,1308",
+ "endColumns": "108,102,105,85,103,117,104,107,100,103,107,100,127",
+ "endOffsets": "159,262,368,454,558,676,781,889,990,1094,1202,1303,1431"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-hr_values-hr.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-hr\\values-hr.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,396,493,603,689,793,912,1016,1129,1235,1340,1453,1560",
+ "endColumns": "104,96,109,85,103,118,103,112,105,104,112,106,122",
+ "endOffsets": "391,488,598,684,788,907,1011,1124,1230,1335,1448,1555,1678"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,160,257,367,453,557,676,780,893,999,1104,1217,1324",
+ "endColumns": "104,96,109,85,103,118,103,112,105,104,112,106,122",
+ "endOffsets": "155,252,362,448,552,671,775,888,994,1099,1212,1319,1442"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-ms-rMY_values-ms-rMY.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ms-rMY\\values-ms-rMY.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,406,511,619,706,810,921,1033,1142,1239,1348,1451,1558",
+ "endColumns": "110,104,107,86,103,110,111,108,96,108,102,106,121",
+ "endOffsets": "401,506,614,701,805,916,1028,1137,1234,1343,1446,1553,1675"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,166,271,379,466,570,681,793,902,999,1108,1211,1318",
+ "endColumns": "110,104,107,86,103,110,111,108,96,108,102,106,121",
+ "endOffsets": "161,266,374,461,565,676,788,897,994,1103,1206,1313,1435"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-land_values-land.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-land\\values-land.xml",
+ "from": {
+ "startLines": "4,7,10,11,14,17,18",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "291,590,908,978,1285,1595,1666",
+ "endColumns": "61,71,69,69,63,70,67",
+ "endOffsets": "348,657,973,1043,1344,1661,1729"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "55,117,189,259,329,393,464",
+ "endColumns": "61,71,69,69,63,70,67",
+ "endOffsets": "112,184,254,324,388,459,527"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-hi_values-hi.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-hi\\values-hi.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,406,511,618,703,805,927,1036,1138,1236,1346,1446,1561",
+ "endColumns": "114,104,106,84,101,121,108,101,97,109,99,114,124",
+ "endOffsets": "401,506,613,698,800,922,1031,1133,1231,1341,1441,1556,1681"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,170,275,382,467,569,691,800,902,1000,1110,1210,1325",
+ "endColumns": "114,104,106,84,101,121,108,101,97,109,99,114,124",
+ "endOffsets": "165,270,377,462,564,686,795,897,995,1105,1205,1320,1445"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-pt_values-pt.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-pt\\values-pt.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,411,517,624,713,814,939,1046,1158,1260,1368,1475,1585",
+ "endColumns": "119,105,106,88,100,124,106,111,101,107,106,109,124",
+ "endOffsets": "406,512,619,708,809,934,1041,1153,1255,1363,1470,1580,1705"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,175,281,388,477,578,703,810,922,1024,1132,1239,1349",
+ "endColumns": "119,105,106,88,100,124,106,111,101,107,106,109,124",
+ "endOffsets": "170,276,383,472,573,698,805,917,1019,1127,1234,1344,1469"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-sw600dp-v13_values-sw600dp-v13.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-sw600dp\\values-sw600dp.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,11,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,364,434,504,583,899,1198,1269,1337",
+ "endColumns": "68,69,69,78,75,58,70,67,54",
+ "endOffsets": "359,429,499,578,654,953,1264,1332,1387"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10",
+ "startColumns": "4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,124,194,264,343,419,478,549,617",
+ "endColumns": "68,69,69,78,75,58,70,67,54",
+ "endOffsets": "119,189,259,338,414,473,544,612,667"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-hy-rAM_values-hy-rAM.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-hy-rAM\\values-hy-rAM.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,398,499,609,699,805,920,1027,1134,1233,1343,1450,1551",
+ "endColumns": "102,100,109,89,105,114,106,106,98,109,106,100,119",
+ "endOffsets": "393,494,604,694,800,915,1022,1129,1228,1338,1445,1546,1666"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,158,259,369,459,565,680,787,894,993,1103,1210,1311",
+ "endColumns": "102,100,109,89,105,114,106,106,98,109,106,100,119",
+ "endOffsets": "153,254,364,454,560,675,782,889,988,1098,1205,1306,1426"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-tl_values-tl.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-tl\\values-tl.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,410,518,635,723,829,950,1059,1170,1271,1381,1498,1606",
+ "endColumns": "118,107,116,87,105,120,108,110,100,109,116,107,122",
+ "endOffsets": "405,513,630,718,824,945,1054,1165,1266,1376,1493,1601,1724"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,174,282,399,487,593,714,823,934,1035,1145,1262,1370",
+ "endColumns": "118,107,116,87,105,120,108,110,100,109,116,107,122",
+ "endOffsets": "169,277,394,482,588,709,818,929,1030,1140,1257,1365,1488"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-v21_values-v21.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-v21\\values-v21.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,19,21,25,26,27,30,32,36,37,38,39,42,44,46,48,50,52,54,56,58,62,65,66,68,72,73,74,75,76,125,128,177,182,184,186,188,191,193,194,195,196,197,198,199,200,201,202,203,205,207,209,211,215,217,218,219,220,222,226,228,230,231,232,237,238,239,243,250,257,267",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "301,392,495,598,703,810,919,1028,1137,1246,1355,1462,1565,1925,2080,2481,2586,2707,3049,3196,3583,3686,3805,3912,4256,4403,4558,4729,4878,5043,5200,5351,5500,5895,6248,6395,6548,6936,7011,7100,7187,7288,10772,10958,14454,14893,15016,15139,15252,15435,15566,15683,15772,15883,16010,16111,16206,16329,16458,16575,16668,16803,16946,17081,17200,17401,17520,17613,17724,17780,17887,18082,18193,18326,18421,18512,18821,18934,19051,19431,19784,20149,20834",
+ "endLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,20,22,25,26,27,31,33,36,37,38,39,43,45,47,49,51,53,55,57,59,62,65,67,69,72,73,74,75,124,127,176,179,183,185,187,190,192,193,194,195,196,197,198,199,200,201,202,204,206,208,210,214,216,217,218,219,221,225,227,229,230,231,236,237,238,240,249,256,266,276",
+ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,12,12,12,111,146,12,12,74,88,86,100,12,12,12,12,12,12,12,12,12,116,88,110,126,100,94,122,128,116,92,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,12,112,116,12,12,12,12,12",
+ "endOffsets": "387,490,593,698,805,914,1023,1132,1241,1350,1457,1560,1679,2075,2230,2581,2702,2803,3191,3332,3681,3800,3907,4010,4398,4553,4724,4873,5038,5195,5346,5495,5644,6002,6390,6543,6690,7006,7095,7182,7283,10767,10953,14449,14647,15011,15134,15247,15430,15561,15678,15767,15878,16005,16106,16201,16324,16453,16570,16663,16798,16941,17076,17195,17396,17515,17608,17719,17775,17882,18077,18188,18321,18416,18507,18816,18929,19046,19185,19779,20144,20829,21515"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,44,46,48,49,50,52,54,55,56,57,58,107,110,159,162,164,166,168,171,173,174,175,176,177,178,179,180,181,182,183,185,187,189,191,195,197,198,199,200,202,206,208,210,211,212,217,218,219,221,228,235,245",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2942,3097,3268,3417,3582,3739,3890,4039,4188,4300,4447,4600,4747,4822,4911,4998,5099,8367,8553,11833,12031,12154,12277,12390,12573,12704,12821,12910,13021,13148,13249,13344,13467,13596,13713,13806,13941,14084,14219,14338,14539,14658,14751,14862,14918,15025,15220,15331,15464,15559,15650,15959,16072,16189,16328,16681,17046,17674",
+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,43,45,47,48,49,51,53,54,55,56,57,106,109,158,161,163,165,167,170,172,173,174,175,176,177,178,179,180,181,182,184,186,188,190,194,196,197,198,199,201,205,207,209,210,211,216,217,218,220,227,234,244,254",
+ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,12,12,12,111,146,12,12,74,88,86,100,12,12,12,12,12,12,12,12,12,116,88,110,126,100,94,122,128,116,92,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,12,112,116,12,12,12,12,12",
+ "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2937,3092,3263,3412,3577,3734,3885,4034,4183,4295,4442,4595,4742,4817,4906,4993,5094,8362,8548,11828,12026,12149,12272,12385,12568,12699,12816,12905,13016,13143,13244,13339,13462,13591,13708,13801,13936,14079,14214,14333,14534,14653,14746,14857,14913,15020,15215,15326,15459,15554,15645,15954,16067,16184,16323,16676,17041,17669,18298"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-cs_values-cs.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-cs\\values-cs.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,398,500,609,695,800,917,1021,1130,1229,1335,1445,1552",
+ "endColumns": "106,101,108,85,104,116,103,108,98,105,109,106,121",
+ "endOffsets": "393,495,604,690,795,912,1016,1125,1224,1330,1440,1547,1669"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,162,264,373,459,564,681,785,894,993,1099,1209,1316",
+ "endColumns": "106,101,108,85,104,116,103,108,98,105,109,106,121",
+ "endOffsets": "157,259,368,454,559,676,780,889,988,1094,1204,1311,1433"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-sw_values-sw.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-sw\\values-sw.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,394,492,600,690,795,912,1013,1122,1221,1328,1437,1542",
+ "endColumns": "102,97,107,89,104,116,100,108,98,106,108,104,118",
+ "endOffsets": "389,487,595,685,790,907,1008,1117,1216,1323,1432,1537,1656"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,158,256,364,454,559,676,777,886,985,1092,1201,1306",
+ "endColumns": "102,97,107,89,104,116,100,108,98,106,108,104,118",
+ "endOffsets": "153,251,359,449,554,671,772,881,980,1087,1196,1301,1420"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-gl-rES_values-gl-rES.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-gl-rES\\values-gl-rES.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,407,519,627,712,814,940,1047,1156,1255,1363,1466,1573",
+ "endColumns": "111,111,107,84,101,125,106,108,98,107,102,106,121",
+ "endOffsets": "402,514,622,707,809,935,1042,1151,1250,1358,1461,1568,1690"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,167,279,387,472,574,700,807,916,1015,1123,1226,1333",
+ "endColumns": "111,111,107,84,101,125,106,108,98,107,102,106,121",
+ "endOffsets": "162,274,382,467,569,695,802,911,1010,1118,1221,1328,1450"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-iw_values-iw.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-iw\\values-iw.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,395,494,602,686,787,901,1003,1107,1203,1306,1407,1507",
+ "endColumns": "103,98,107,83,100,113,101,103,95,102,100,99,115",
+ "endOffsets": "390,489,597,681,782,896,998,1102,1198,1301,1402,1502,1618"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,159,258,366,450,551,665,767,871,967,1070,1171,1271",
+ "endColumns": "103,98,107,83,100,113,101,103,95,102,100,99,115",
+ "endOffsets": "154,253,361,445,546,660,762,866,962,1065,1166,1266,1382"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-zh-rCN_values-zh-rCN.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values-zh-rCN\\arrays.xml",
+ "from": {
+ "startLines": "18",
+ "startColumns": "4",
+ "startOffsets": "712",
+ "endLines": "21",
+ "endColumns": "19",
+ "endOffsets": "817"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "105",
+ "endLines": "5",
+ "endColumns": "19",
+ "endOffsets": "210"
+ }
+ },
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values-zh-rCN\\strings.xml",
+ "from": {
+ "startLines": "121,71,70,69,68,19,20,21,112,113,120,119,26,77,78,76,75,74,90,89,88,80,60,29,30,81,72,114,67,63,38,44,49,39,59,58,57,53,52,50,51,54,55,45,66,56,64,43,48,47,46,62,42,61,40,41,65,28,34,36,33,35,32,31,25,24,97,96,99,111,104,103,105,106,108,107,98,102,100,101,95,109,110,118,116,115,117,27,79,87,92,91,93,86,85,84,83,22,23",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "6532,3495,3429,3356,3306,827,867,915,6083,6128,6478,6428,1199,3861,3929,3802,3737,3674,4592,4532,4469,4061,2877,1369,1422,4115,3568,6185,3247,3034,1798,2079,2325,1851,2817,2764,2713,2518,2470,2376,2424,2564,2611,2122,3188,2661,3077,2036,2278,2222,2167,2979,1992,2937,1901,1942,3129,1318,1623,1719,1576,1672,1529,1484,1148,1095,4967,4908,5108,6009,5419,5350,5483,5561,5744,5671,5042,5295,5165,5230,4859,5848,5931,6390,6283,6235,6328,1261,4006,4410,4705,4647,4772,4362,4317,4269,4218,963,1029",
+ "endLines": "123,71,70,69,68,19,20,21,112,113,120,119,26,77,78,76,75,74,90,89,88,80,60,29,30,81,72,114,67,63,38,44,49,39,59,58,57,53,52,50,51,54,55,45,66,56,64,43,48,47,46,62,42,61,40,41,65,28,34,36,33,35,32,31,25,24,97,96,99,111,104,103,105,106,108,107,98,102,100,101,95,109,110,118,116,115,117,27,79,87,92,91,93,86,85,84,83,22,23",
+ "endColumns": "14,72,65,72,49,39,47,47,44,56,53,49,61,67,76,58,64,62,54,59,62,53,59,52,61,84,80,49,58,42,52,42,50,49,59,52,50,45,47,47,45,46,49,44,58,51,51,42,46,55,54,54,43,41,40,49,58,50,48,48,46,46,46,44,50,52,74,58,56,73,63,68,77,109,103,72,65,54,64,64,48,82,77,37,44,47,61,56,54,58,66,57,61,47,44,47,50,65,65",
+ "endOffsets": "6704,3563,3490,3424,3351,862,910,958,6123,6180,6527,6473,1256,3924,4001,3856,3797,3732,4642,4587,4527,4110,2932,1417,1479,4195,3644,6230,3301,3072,1846,2117,2371,1896,2872,2812,2759,2559,2513,2419,2465,2606,2656,2162,3242,2708,3124,2074,2320,2273,2217,3029,2031,2974,1937,1987,3183,1364,1667,1763,1618,1714,1571,1524,1194,1143,5037,4962,5160,6078,5478,5414,5556,5666,5843,5739,5103,5345,5225,5290,4903,5926,6004,6423,6323,6278,6385,1313,4056,4464,4767,4700,4829,4405,4357,4312,4264,1024,1090"
+ },
+ "to": {
+ "startLines": "6,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "215,1649,1722,1788,1861,1911,1951,1999,2047,2092,2149,2203,2253,2315,2383,2460,2519,2584,2647,2702,2762,2825,2879,2939,2992,3054,3139,3220,3270,3329,3372,3425,3468,3519,3569,3629,3682,3733,3779,3827,3875,3921,3968,4018,4063,4122,4174,4226,4269,4316,4372,4427,4482,4526,4568,4609,4659,4718,4769,4818,4867,4914,4961,5008,5053,5104,5157,5232,5291,5348,5422,5486,5555,5633,5743,5847,5920,5986,6041,6106,6171,6220,6303,6381,6419,6464,6512,6574,6631,6686,6745,6812,6870,6932,6980,7025,7073,7124,7190",
+ "endLines": "8,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119",
+ "endColumns": "14,72,65,72,49,39,47,47,44,56,53,49,61,67,76,58,64,62,54,59,62,53,59,52,61,84,80,49,58,42,52,42,50,49,59,52,50,45,47,47,45,46,49,44,58,51,51,42,46,55,54,54,43,41,40,49,58,50,48,48,46,46,46,44,50,52,74,58,56,73,63,68,77,109,103,72,65,54,64,64,48,82,77,37,44,47,61,56,54,58,66,57,61,47,44,47,50,65,65",
+ "endOffsets": "379,1717,1783,1856,1906,1946,1994,2042,2087,2144,2198,2248,2310,2378,2455,2514,2579,2642,2697,2757,2820,2874,2934,2987,3049,3134,3215,3265,3324,3367,3420,3463,3514,3564,3624,3677,3728,3774,3822,3870,3916,3963,4013,4058,4117,4169,4221,4264,4311,4367,4422,4477,4521,4563,4604,4654,4713,4764,4813,4862,4909,4956,5003,5048,5099,5152,5227,5286,5343,5417,5481,5550,5628,5738,5842,5915,5981,6036,6101,6166,6215,6298,6376,6414,6459,6507,6569,6626,6681,6740,6807,6865,6927,6975,7020,7068,7119,7185,7251"
+ }
+ },
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-zh-rCN\\values-zh-rCN.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,391,486,586,668,765,871,967,1063,1158,1255,1350,1448",
+ "endColumns": "95,94,99,81,96,105,95,95,94,96,94,97,111",
+ "endOffsets": "386,481,581,663,760,866,962,1058,1153,1250,1345,1443,1555"
+ },
+ "to": {
+ "startLines": "9,10,11,12,13,14,15,16,17,18,19,20,21",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "384,480,575,675,757,854,960,1056,1152,1247,1344,1439,1537",
+ "endColumns": "95,94,99,81,96,105,95,95,94,96,94,97,111",
+ "endOffsets": "475,570,670,752,849,955,1051,1147,1242,1339,1434,1532,1644"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-fi_values-fi.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-fi\\values-fi.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,399,499,600,686,791,909,1016,1119,1216,1322,1421,1525",
+ "endColumns": "107,99,100,85,104,117,106,102,96,105,98,103,118",
+ "endOffsets": "394,494,595,681,786,904,1011,1114,1211,1317,1416,1520,1639"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,163,263,364,450,555,673,780,883,980,1086,1185,1289",
+ "endColumns": "107,99,100,85,104,117,106,102,96,105,98,103,118",
+ "endOffsets": "158,258,359,445,550,668,775,878,975,1081,1180,1284,1403"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values_values.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values\\themes.xml",
+ "from": {
+ "startLines": "2,4,10",
+ "startColumns": "4,4,4",
+ "startOffsets": "17,81,376",
+ "endLines": "2,8,13",
+ "endColumns": "62,12,12",
+ "endOffsets": "75,370,598"
+ },
+ "to": {
+ "startLines": "1487,1488,1498",
+ "startColumns": "4,4,4",
+ "startOffsets": "95821,95883,96649",
+ "endLines": "1487,1492,1501",
+ "endColumns": "61,12,12",
+ "endOffsets": "95878,96172,96871"
+ }
+ },
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values\\styles.xml",
+ "from": {
+ "startLines": "54,59,68,64,24,29,34,39,44,19,49,73,77",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "2066,2275,2648,2487,897,1081,1267,1453,1657,713,1864,2860,3036",
+ "endLines": "57,62,71,66,27,32,37,42,47,22,52,75,80",
+ "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12",
+ "endOffsets": "2269,2481,2854,2642,1075,1261,1447,1651,1858,891,2060,3030,3260"
+ },
+ "to": {
+ "startLines": "1214,1218,1222,1226,1437,1441,1445,1449,1453,1457,1461,1592,1595",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "76586,76794,77005,77215,93007,93190,93375,93560,93763,93969,94152,103874,104049",
+ "endLines": "1217,1221,1225,1228,1440,1444,1448,1452,1456,1460,1464,1594,1598",
+ "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12",
+ "endOffsets": "76789,77000,77210,77370,93185,93370,93555,93758,93964,94147,94348,104044,104273"
+ }
+ },
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values\\arrays.xml",
+ "from": {
+ "startLines": "19,26",
+ "startColumns": "4,4",
+ "startOffsets": "739,1047",
+ "endLines": "24,29",
+ "endColumns": "19,19",
+ "endOffsets": "1041,1162"
+ },
+ "to": {
+ "startLines": "2,8",
+ "startColumns": "4,4",
+ "startOffsets": "105,300",
+ "endLines": "7,11",
+ "endColumns": "19,19",
+ "endOffsets": "295,415"
+ }
+ },
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values\\colors.xml",
+ "from": {
+ "startLines": "23,19,20,21,22,18",
+ "startColumns": "4,4,4,4,4,4",
+ "startOffsets": "975,769,820,871,923,712",
+ "endColumns": "49,50,50,51,51,56",
+ "endOffsets": "1020,815,866,918,970,764"
+ },
+ "to": {
+ "startLines": "33,50,51,52,53,79",
+ "startColumns": "4,4,4,4,4,4",
+ "startOffsets": "1797,3113,3164,3215,3267,5004",
+ "endColumns": "49,50,50,51,51,56",
+ "endOffsets": "1842,3159,3210,3262,3314,5056"
+ }
+ },
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values\\values.xml",
+ "from": {
+ "startLines": "4,5,6,7,10,11,12,15,16,17,20,23,24,25,26,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,103,104,105,106,107,108,109,112,113,114,117,118,119,120,121,124,125,126,127,128,131,134,135,136,137,138,139,140,141,144,145,148,149,150,151,152,153,156,157,160,161,162,163,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,185,186,187,188,191,192,195,196,197,200,203,204,205,206,207,208,209,210,211,214,215,218,221,222,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,245,246,247,248,251,258,259,263,267,272,280,287,291,295,300,304,308,312,316,320,324,328,332,338,340,344,348,352,358,363,367,372,376,380,384,388,392,398,403,406,409,412,415,418,421,424,426,428,429,430,433,435,439,441,446,447,451,457,461,462,464,475,476,480,486,490,491,492,496,523,527,555,701,723,869,893,900,905,926,931,936,946,955,966,970,977,985,992,993,1002,1005,1008,1013,1017,1020,1023,1027,1031,1039,1044,1051,1057,1058,1062,1067,1069,1071,1074,1077,1079,1083,1090,1093,1096,1100,1102,1106,1108,1114,1116,1120,1132,1138,1143,1158,1161,1166,1176,1183,1221,1260,1270,1281,1283,1287,1291,1294,1297,1300,1303,1307,1310,1313,1316,1320,1323,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1345,1347,1348,1349,1350,1352,1354,1355,1356,1357,1358,1359,1360,1362,1364,1366,1368,1370,1372,1373,1375,1376,1378,1380,1382,1383,1384,1385,1386,1387,1388,1389,1391,1393,1397,1398,1399,1400,1401,1402,1404,1405,1406,1407,1408,1409,1411,1415,1419,1420,1421,1422,1423,1426,1428,1430,1432,1434,1436,1437,1438,1439,1441,1443,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1458,1459,1460,1462,1464,1465,1467,1468,1470,1472,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1486,1488,1489,1490,1492,1493,1494,1496,1498,1500,1502,1504,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "286,341,386,435,707,762,825,1133,1195,1268,1567,1877,1958,2019,2094,2411,2488,2566,2636,2707,2768,2830,2907,2985,3091,3197,3276,3356,3413,3471,3545,3620,3685,3751,3818,3886,3990,4096,4176,4257,4316,4375,4434,4493,4552,4615,4679,4737,4796,4867,4939,5011,5084,5141,5199,5272,5346,5420,5495,5567,5640,5710,21489,21558,21628,21698,21775,21854,21930,22239,22303,22368,22678,22755,22830,22899,22967,23276,23342,23439,23504,23573,23904,24195,24253,24310,24369,24441,24509,24577,24636,24940,25030,25353,25413,25479,25546,25612,25682,25987,26040,26385,26443,26508,26572,26862,26923,26984,27045,27107,27171,27235,27299,27364,27427,27487,27548,27607,27667,27729,27800,27860,28160,28227,28295,28363,28672,28758,29077,29139,29200,29489,29790,29847,29895,29944,29995,30029,30076,30125,30171,30435,30499,30793,31080,31140,31443,31517,31595,31688,31758,31836,31890,31960,32045,32097,32170,32244,32313,32388,32462,32536,32625,32695,32998,33076,33166,33254,33587,34088,34177,34424,34705,34990,35625,36102,36324,36546,36814,37041,37271,37501,37731,37961,38188,38427,38653,39135,39265,39637,39867,40115,40571,40854,41062,41435,41662,41908,42133,42382,42603,43085,43380,43602,43840,44054,44284,44507,44722,44930,45054,45178,45283,45400,45614,45760,46137,46223,46571,46659,46889,47291,47524,47606,47704,48321,48421,48657,49065,49304,49398,49456,49693,51739,51981,54159,63438,64705,74094,75612,76148,76478,77601,77857,78093,78640,79134,79807,80022,80550,81114,81489,81607,82145,82302,82446,82766,82936,83077,83206,83505,83808,84367,84629,84979,85332,85426,85732,85994,86119,86246,86485,86696,86815,87008,87463,87644,87766,88025,88138,88325,88427,88871,88995,89280,90167,90461,90791,91711,91883,92219,92885,93407,96296,99326,99966,100826,100939,101168,101506,101666,101818,101989,102156,102399,102569,102742,102913,103187,103386,103865,103949,104045,104141,104239,104339,104441,104543,104645,104747,104849,104949,105045,105157,105286,105409,105563,105717,105815,105929,106023,106163,106297,106393,106505,106605,106721,106817,106929,107069,107217,107381,107523,107681,107831,107972,108116,108251,108387,108529,108671,108783,108923,108991,109064,109138,109211,109285,109431,109575,109945,110011,110101,110181,110273,110371,110481,110559,110665,110757,110861,110971,111093,111256,111413,111493,111593,111683,111793,112117,112217,112329,112443,112559,112675,112769,112883,113001,113103,113223,113345,113427,113531,113651,113777,113871,113959,114071,114187,114309,114421,114596,114712,114798,114910,115034,115101,115227,115295,115423,115567,115695,115764,115859,115974,116087,116186,116295,116406,116517,116618,116723,116835,116965,117056,117179,117291,117377,117481,117589,117689,117807,117911,118015,118141,118229,118319,118429,118513,118567,118689,118795,118905,118989,5781,7384,7488,7589,7636,7884,8076,8426,8585,9014,9546,9767,9926,10185,11009,11402,11548,11676,12457,13042,13513,13731,19679,20604,21095",
+ "endLines": "4,5,6,7,10,11,12,15,16,17,20,23,24,25,26,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,103,104,105,106,107,108,109,112,113,114,117,118,119,120,121,124,125,126,127,128,131,134,135,136,137,138,139,140,141,144,145,148,149,150,151,152,153,156,157,160,161,162,163,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,185,186,187,188,191,192,195,196,197,200,203,204,205,206,207,208,209,210,211,214,215,218,221,222,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,245,246,247,248,257,258,262,266,271,277,286,290,294,299,303,307,311,315,319,323,327,331,335,339,341,347,351,355,362,366,369,375,379,383,387,391,395,402,405,408,411,414,417,420,423,425,427,428,429,432,434,436,440,445,446,450,456,460,461,463,474,475,479,485,489,490,491,495,522,526,554,700,722,868,890,899,904,925,930,935,945,954,965,969,976,984,991,992,1001,1004,1007,1012,1016,1019,1022,1026,1030,1038,1043,1050,1056,1057,1061,1066,1068,1070,1073,1076,1078,1082,1089,1092,1095,1099,1101,1105,1107,1113,1115,1119,1131,1137,1142,1157,1160,1165,1175,1180,1220,1259,1269,1278,1282,1286,1290,1293,1296,1299,1302,1306,1309,1312,1315,1319,1322,1325,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1344,1346,1347,1348,1349,1351,1353,1354,1355,1356,1357,1358,1359,1361,1363,1365,1367,1369,1371,1372,1374,1375,1377,1379,1381,1382,1383,1384,1385,1386,1387,1388,1390,1392,1394,1397,1398,1399,1400,1401,1403,1404,1405,1406,1407,1408,1410,1414,1418,1419,1420,1421,1422,1423,1427,1429,1431,1433,1435,1436,1437,1438,1440,1442,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1457,1458,1459,1461,1463,1464,1466,1467,1469,1471,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1485,1487,1488,1489,1491,1492,1493,1495,1497,1499,1501,1503,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100",
+ "endColumns": "54,44,48,40,54,62,75,61,72,67,77,80,60,74,75,76,77,69,70,60,61,76,77,105,105,78,79,56,57,73,74,64,65,66,67,103,105,79,80,58,58,58,58,58,62,63,57,58,70,71,71,72,56,57,72,73,73,74,71,72,69,70,68,69,69,76,78,75,76,63,64,68,76,74,68,67,76,65,96,64,68,98,58,57,56,58,71,67,67,58,62,89,90,59,65,66,65,69,63,52,112,57,64,63,48,60,60,60,61,63,63,63,64,62,59,60,58,59,61,70,59,67,66,67,67,67,85,86,61,60,56,71,56,47,48,50,33,46,48,45,31,63,61,54,59,69,73,77,92,69,77,53,69,84,51,72,73,68,74,73,73,88,69,70,77,89,87,95,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,57,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,12,12,97,113,93,12,12,95,111,99,115,95,111,12,12,12,12,12,12,140,12,134,12,12,12,111,139,67,72,73,72,73,12,12,12,65,89,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,91,12,12,12,12,12,93,113,117,12,12,12,81,103,119,125,93,87,111,115,121,111,12,115,85,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,12,12,90,122,12,85,103,12,12,12,12,12,12,87,89,109,83,53,121,105,109,83,125,1602,103,100,46,247,191,349,158,428,531,220,158,258,823,392,145,127,780,584,470,217,5947,924,490,152",
+ "endOffsets": "336,381,430,471,757,820,896,1190,1263,1331,1640,1953,2014,2089,2165,2483,2561,2631,2702,2763,2825,2902,2980,3086,3192,3271,3351,3408,3466,3540,3615,3680,3746,3813,3881,3985,4091,4171,4252,4311,4370,4429,4488,4547,4610,4674,4732,4791,4862,4934,5006,5079,5136,5194,5267,5341,5415,5490,5562,5635,5705,5776,21553,21623,21693,21770,21849,21925,22002,22298,22363,22432,22750,22825,22894,22962,23039,23337,23434,23499,23568,23667,23958,24248,24305,24364,24436,24504,24572,24631,24694,25025,25116,25408,25474,25541,25607,25677,25741,26035,26148,26438,26503,26567,26616,26918,26979,27040,27102,27166,27230,27294,27359,27422,27482,27543,27602,27662,27724,27795,27855,27923,28222,28290,28358,28426,28753,28840,29134,29195,29252,29556,29842,29890,29939,29990,30024,30071,30120,30166,30198,30494,30556,30843,31135,31205,31512,31590,31683,31753,31831,31885,31955,32040,32092,32165,32239,32308,32383,32457,32531,32620,32690,32761,33071,33161,33249,33345,34083,34172,34419,34700,34985,35378,36097,36319,36541,36809,37036,37266,37496,37726,37956,38183,38422,38648,38893,39260,39390,39862,40110,40329,40849,41057,41188,41657,41903,42128,42377,42598,42843,43375,43597,43835,44049,44279,44502,44717,44925,45049,45173,45278,45395,45609,45755,45895,46218,46566,46654,46884,47286,47519,47601,47699,48316,48416,48652,49060,49299,49393,49451,49688,51734,51976,54154,63433,64700,74089,75370,76143,76473,77596,77852,78088,78635,79129,79802,80017,80545,81109,81484,81602,82140,82297,82441,82761,82931,83072,83201,83500,83803,84362,84624,84974,85327,85421,85727,85989,86114,86241,86480,86691,86810,87003,87458,87639,87761,88020,88133,88320,88422,88866,88990,89275,90162,90456,90786,91706,91878,92214,92880,93165,96291,99321,99961,100585,100934,101163,101501,101661,101813,101984,102151,102394,102564,102737,102908,103182,103381,103628,103944,104040,104136,104234,104334,104436,104538,104640,104742,104844,104944,105040,105152,105281,105404,105558,105712,105810,105924,106018,106158,106292,106388,106500,106600,106716,106812,106924,107064,107212,107376,107518,107676,107826,107967,108111,108246,108382,108524,108666,108778,108918,108986,109059,109133,109206,109280,109426,109570,109708,110006,110096,110176,110268,110366,110476,110554,110660,110752,110856,110966,111088,111251,111408,111488,111588,111678,111788,111880,112212,112324,112438,112554,112670,112764,112878,112996,113098,113218,113340,113422,113526,113646,113772,113866,113954,114066,114182,114304,114416,114591,114707,114793,114905,115029,115096,115222,115290,115418,115562,115690,115759,115854,115969,116082,116181,116290,116401,116512,116613,116718,116830,116960,117051,117174,117286,117372,117476,117584,117684,117802,117906,118010,118136,118224,118314,118424,118508,118562,118684,118790,118900,118984,119110,7379,7483,7584,7631,7879,8071,8421,8580,9009,9541,9762,9921,10180,11004,11397,11543,11671,12452,13037,13508,13726,19674,20599,21090,21243"
+ },
+ "to": {
+ "startLines": "12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,284,298,299,300,301,302,309,310,314,318,323,329,336,340,344,349,353,357,361,365,369,373,377,381,385,387,389,393,397,401,406,410,413,417,421,425,429,433,437,442,445,448,451,454,457,460,463,465,467,468,469,472,474,476,478,483,484,488,494,498,499,501,512,513,517,523,527,528,529,533,560,564,592,737,759,904,926,933,938,959,964,969,979,988,999,1003,1010,1018,1025,1026,1035,1038,1041,1046,1050,1053,1056,1060,1064,1072,1077,1084,1090,1091,1095,1100,1102,1104,1107,1110,1112,1116,1123,1126,1129,1133,1135,1139,1141,1147,1149,1153,1165,1171,1176,1191,1194,1199,1209,1229,1267,1306,1316,1325,1327,1331,1335,1338,1341,1344,1347,1351,1354,1357,1360,1364,1367,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1387,1389,1390,1391,1392,1394,1396,1397,1398,1399,1400,1401,1402,1404,1406,1408,1410,1412,1414,1415,1417,1418,1420,1422,1424,1425,1426,1427,1428,1429,1430,1431,1433,1435,1465,1466,1467,1468,1469,1470,1472,1473,1474,1475,1476,1477,1479,1483,1493,1494,1495,1496,1497,1502,1504,1506,1508,1510,1512,1513,1514,1515,1517,1519,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1534,1535,1536,1538,1540,1541,1543,1544,1546,1548,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1562,1564,1565,1566,1568,1569,1570,1572,1574,1576,1578,1580,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1599,1600,1601,1602,1603,1604,1605,1606,1607,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "420,475,520,569,610,665,728,804,866,939,1007,1085,1166,1227,1302,1378,1455,1533,1603,1674,1735,1847,1924,2002,2108,2214,2293,2373,2430,2488,2562,2637,2702,2768,2835,2903,3007,3319,3399,3480,3539,3598,3657,3716,3775,3838,3902,3960,4019,4090,4162,4234,4307,4364,4422,4495,4569,4643,4718,4790,4863,4933,5061,5130,5200,5270,5347,5426,5502,5579,5643,5708,5777,5854,5929,5998,6066,6143,6209,6306,6371,6440,6539,6598,6656,6713,6772,6844,6912,6980,7039,7102,7192,7283,7343,7409,7476,7542,7612,7676,7729,7842,7900,7965,8029,8078,8139,8200,8261,8323,8387,8451,8515,8580,8643,8703,8764,8823,8883,8945,9016,9076,9144,9211,9279,9347,9415,9501,9588,9650,9711,10030,10102,10159,10207,10256,10307,10341,10388,10437,10483,10515,10579,10641,10696,10756,11178,11252,11330,11423,11493,11571,11625,11695,11780,11832,11905,11979,12048,12123,12197,12271,12360,18731,19773,19851,19941,20029,20125,20626,20715,20962,21243,21528,21921,22398,22620,22842,23110,23337,23567,23797,24027,24257,24484,24723,24949,25194,25324,25454,25684,25932,26151,26434,26642,26773,27000,27246,27471,27720,27941,28186,28481,28703,28941,29155,29385,29608,29823,30031,30155,30279,30384,30501,30715,30861,31001,31087,31435,31523,31753,32155,32388,32470,32568,33160,33260,33496,33904,34143,34237,34295,34532,36550,36792,38942,47656,48923,57747,59028,59564,59894,61017,61273,61509,62056,62550,63223,63438,63966,64530,64905,65023,65561,65718,65862,66182,66352,66493,66622,66921,67224,67783,68045,68395,68748,68842,69148,69410,69535,69662,69901,70112,70231,70424,70879,71060,71182,71441,71554,71741,71843,72287,72411,72696,73583,73877,74207,75127,75299,75635,76301,77375,80202,83170,83758,84352,84465,84694,85032,85192,85344,85515,85682,85925,86095,86268,86439,86713,86912,87159,87243,87339,87435,87533,87633,87735,87837,87939,88041,88143,88243,88339,88451,88580,88703,88857,89011,89109,89223,89317,89457,89591,89687,89799,89899,90015,90111,90223,90363,90511,90675,90817,90975,91125,91266,91410,91545,91681,91823,91965,92077,92217,92285,92358,92432,92505,92579,92725,92869,94353,94419,94509,94589,94681,94779,94889,94967,95073,95165,95269,95379,95501,95664,96177,96257,96357,96447,96557,96876,96976,97088,97202,97318,97434,97528,97642,97760,97862,97982,98104,98186,98290,98410,98536,98630,98718,98830,98946,99068,99180,99355,99471,99557,99669,99793,99860,99986,100054,100182,100326,100454,100523,100618,100733,100846,100945,101054,101165,101276,101377,101482,101594,101724,101815,101938,102050,102136,102240,102348,102448,102566,102670,102774,102900,102988,103078,103188,103272,103326,103448,103554,103664,103748,104278,105881,105985,106086,106133,106381,106573,106923,107082,107705,108237,108458,108617,108876,109700,110093,110239,110367,111148,111733,112204,112422,118370,119295,119786",
+ "endLines": "12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,284,298,299,300,301,308,309,313,317,322,328,335,339,343,348,352,356,360,364,368,372,376,380,384,386,388,392,396,400,405,409,412,416,420,424,428,432,436,441,444,447,450,453,456,459,462,464,466,467,468,471,473,475,477,482,483,487,493,497,498,500,511,512,516,522,526,527,528,532,559,563,591,736,758,903,925,932,937,958,963,968,978,987,998,1002,1009,1017,1024,1025,1034,1037,1040,1045,1049,1052,1055,1059,1063,1071,1076,1083,1089,1090,1094,1099,1101,1103,1106,1109,1111,1115,1122,1125,1128,1132,1134,1138,1140,1146,1148,1152,1164,1170,1175,1190,1193,1198,1208,1213,1266,1305,1315,1324,1326,1330,1334,1337,1340,1343,1346,1350,1353,1356,1359,1363,1366,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1386,1388,1389,1390,1391,1393,1395,1396,1397,1398,1399,1400,1401,1403,1405,1407,1409,1411,1413,1414,1416,1417,1419,1421,1423,1424,1425,1426,1427,1428,1429,1430,1432,1434,1436,1465,1466,1467,1468,1469,1471,1472,1473,1474,1475,1476,1478,1482,1486,1493,1494,1495,1496,1497,1503,1505,1507,1509,1511,1512,1513,1514,1516,1518,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1533,1534,1535,1537,1539,1540,1542,1543,1545,1547,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1561,1563,1564,1565,1567,1568,1569,1571,1573,1575,1577,1579,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1599,1600,1601,1602,1603,1604,1605,1606,1607,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627",
+ "endColumns": "54,44,48,40,54,62,75,61,72,67,77,80,60,74,75,76,77,69,70,60,61,76,77,105,105,78,79,56,57,73,74,64,65,66,67,103,105,79,80,58,58,58,58,58,62,63,57,58,70,71,71,72,56,57,72,73,73,74,71,72,69,70,68,69,69,76,78,75,76,63,64,68,76,74,68,67,76,65,96,64,68,98,58,57,56,58,71,67,67,58,62,89,90,59,65,66,65,69,63,52,112,57,64,63,48,60,60,60,61,63,63,63,64,62,59,60,58,59,61,70,59,67,66,67,67,67,85,86,61,60,56,71,56,47,48,50,33,46,48,45,31,63,61,54,59,69,73,77,92,69,77,53,69,84,51,72,73,68,74,73,73,88,69,70,77,89,87,95,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,57,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,12,12,97,113,93,12,12,95,111,99,115,95,111,12,12,12,12,12,12,140,12,134,12,12,12,111,139,67,72,73,72,73,12,12,12,65,89,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,91,12,12,12,12,12,93,113,117,12,12,12,81,103,119,125,93,87,111,115,121,111,12,115,85,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,12,12,90,122,12,85,103,12,12,12,12,12,12,87,89,109,83,53,121,105,109,83,125,1602,103,100,46,247,191,349,158,428,531,220,158,258,823,392,145,127,780,584,470,217,5947,924,490,152",
+ "endOffsets": "470,515,564,605,660,723,799,861,934,1002,1080,1161,1222,1297,1373,1450,1528,1598,1669,1730,1792,1919,1997,2103,2209,2288,2368,2425,2483,2557,2632,2697,2763,2830,2898,3002,3108,3394,3475,3534,3593,3652,3711,3770,3833,3897,3955,4014,4085,4157,4229,4302,4359,4417,4490,4564,4638,4713,4785,4858,4928,4999,5125,5195,5265,5342,5421,5497,5574,5638,5703,5772,5849,5924,5993,6061,6138,6204,6301,6366,6435,6534,6593,6651,6708,6767,6839,6907,6975,7034,7097,7187,7278,7338,7404,7471,7537,7607,7671,7724,7837,7895,7960,8024,8073,8134,8195,8256,8318,8382,8446,8510,8575,8638,8698,8759,8818,8878,8940,9011,9071,9139,9206,9274,9342,9410,9496,9583,9645,9706,9763,10097,10154,10202,10251,10302,10336,10383,10432,10478,10510,10574,10636,10691,10751,10821,11247,11325,11418,11488,11566,11620,11690,11775,11827,11900,11974,12043,12118,12192,12266,12355,12425,18797,19846,19936,20024,20120,20621,20710,20957,21238,21523,21916,22393,22615,22837,23105,23332,23562,23792,24022,24252,24479,24718,24944,25189,25319,25449,25679,25927,26146,26429,26637,26768,26995,27241,27466,27715,27936,28181,28476,28698,28936,29150,29380,29603,29818,30026,30150,30274,30379,30496,30710,30856,30996,31082,31430,31518,31748,32150,32383,32465,32563,33155,33255,33491,33899,34138,34232,34290,34527,36545,36787,38937,47651,48918,57742,59023,59559,59889,61012,61268,61504,62051,62545,63218,63433,63961,64525,64900,65018,65556,65713,65857,66177,66347,66488,66617,66916,67219,67778,68040,68390,68743,68837,69143,69405,69530,69657,69896,70107,70226,70419,70874,71055,71177,71436,71549,71736,71838,72282,72406,72691,73578,73872,74202,75122,75294,75630,76296,76581,80197,83165,83753,84347,84460,84689,85027,85187,85339,85510,85677,85920,86090,86263,86434,86708,86907,87154,87238,87334,87430,87528,87628,87730,87832,87934,88036,88138,88238,88334,88446,88575,88698,88852,89006,89104,89218,89312,89452,89586,89682,89794,89894,90010,90106,90218,90358,90506,90670,90812,90970,91120,91261,91405,91540,91676,91818,91960,92072,92212,92280,92353,92427,92500,92574,92720,92864,93002,94414,94504,94584,94676,94774,94884,94962,95068,95160,95264,95374,95496,95659,95816,96252,96352,96442,96552,96644,96971,97083,97197,97313,97429,97523,97637,97755,97857,97977,98099,98181,98285,98405,98531,98625,98713,98825,98941,99063,99175,99350,99466,99552,99664,99788,99855,99981,100049,100177,100321,100449,100518,100613,100728,100841,100940,101049,101160,101271,101372,101477,101589,101719,101810,101933,102045,102131,102235,102343,102443,102561,102665,102769,102895,102983,103073,103183,103267,103321,103443,103549,103659,103743,103869,105876,105980,106081,106128,106376,106568,106918,107077,107506,108232,108453,108612,108871,109695,110088,110234,110362,111143,111728,112199,112417,118365,119290,119781,119934"
+ }
+ },
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values\\strings.xml",
+ "from": {
+ "startLines": "127,71,74,73,72,18,19,20,117,118,126,125,25,134,135,80,81,79,78,77,93,92,91,83,38,37,63,28,29,84,40,75,119,70,66,41,47,52,42,62,61,60,56,55,53,54,57,58,48,69,59,67,46,51,50,49,65,45,64,43,44,68,27,33,35,32,34,31,30,24,23,100,99,103,115,108,107,109,110,112,111,101,102,106,104,105,98,113,114,124,122,121,123,26,82,90,95,94,96,89,88,87,86,132,133,21,22",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "8004,3894,4155,4059,3990,823,866,918,7502,7551,7946,7895,1278,8550,8604,4609,4703,4538,4454,4371,5570,5487,5385,4879,2000,1949,3393,1482,1535,4940,2093,4238,7614,3823,3578,2152,2467,2768,2210,3322,3261,3204,2982,2930,2827,2880,3032,3082,2514,3757,3142,3627,2420,2713,2625,2567,3516,2370,3471,2267,2310,3690,1427,1746,1854,1699,1801,1643,1595,1223,1170,6026,5959,6267,7405,6631,6550,6705,6794,7036,6957,6110,6185,6491,6331,6411,5904,7180,7302,7854,7727,7670,7780,1362,4811,5299,5705,5636,5785,5240,5185,5123,5063,8412,8485,970,1080",
+ "endLines": "131,71,74,73,72,18,19,20,117,118,126,125,25,134,135,80,81,79,78,77,93,92,91,83,38,37,63,28,29,84,40,75,119,70,66,41,47,52,42,62,61,60,56,55,53,54,57,58,48,69,59,67,46,51,50,49,65,45,64,43,44,68,27,33,35,32,34,31,30,24,23,100,99,103,115,108,107,109,110,112,111,101,102,106,104,105,98,113,114,124,122,121,123,26,82,90,95,94,96,89,88,87,86,132,133,21,22",
+ "endColumns": "14,95,82,95,68,42,51,51,48,62,57,50,83,53,47,93,107,70,83,82,65,82,101,60,61,50,77,52,59,104,58,101,54,70,48,57,46,58,56,70,60,56,49,51,52,49,49,59,52,65,61,62,46,54,87,57,61,49,44,42,59,66,54,54,52,46,52,55,47,54,52,83,66,63,95,73,80,88,162,143,78,74,81,58,79,79,54,121,102,40,52,56,73,64,67,85,79,68,93,58,54,61,59,72,64,109,89",
+ "endOffsets": "8407,3985,4233,4150,4054,861,913,965,7546,7609,7999,7941,1357,8599,8647,4698,4806,4604,4533,4449,5631,5565,5482,4935,2057,1995,3466,1530,1590,5040,2147,4335,7664,3889,3622,2205,2509,2822,2262,3388,3317,3256,3027,2977,2875,2925,3077,3137,2562,3818,3199,3685,2462,2763,2708,2620,3573,2415,3511,2305,2365,3752,1477,1796,1902,1741,1849,1694,1638,1273,1218,6105,6021,6326,7496,6700,6626,6789,6952,7175,7031,6180,6262,6545,6406,6486,5954,7297,7400,7890,7775,7722,7849,1422,4874,5380,5780,5700,5874,5294,5235,5180,5118,8480,8545,1075,1165"
+ },
+ "to": {
+ "startLines": "169,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,285,286,287,288,289,290,291,292,293,294,295,296,297",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "10826,12430,12526,12609,12705,12774,12817,12869,12921,12970,13033,13091,13142,13226,13280,13328,13422,13530,13601,13685,13768,13834,13917,14019,14080,14142,14193,14271,14324,14384,14489,14548,14650,14705,14776,14825,14883,14930,14989,15046,15117,15178,15235,15285,15337,15390,15440,15490,15550,15603,15669,15731,15794,15841,15896,15984,16042,16104,16154,16199,16242,16302,16369,16424,16479,16532,16579,16632,16688,16736,16791,16844,16928,16995,17059,17155,17229,17310,17399,17562,17706,17785,17860,17942,18001,18081,18161,18216,18338,18441,18482,18535,18592,18666,18802,18870,18956,19036,19105,19199,19258,19313,19375,19435,19508,19573,19683",
+ "endLines": "173,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,285,286,287,288,289,290,291,292,293,294,295,296,297",
+ "endColumns": "14,95,82,95,68,42,51,51,48,62,57,50,83,53,47,93,107,70,83,82,65,82,101,60,61,50,77,52,59,104,58,101,54,70,48,57,46,58,56,70,60,56,49,51,52,49,49,59,52,65,61,62,46,54,87,57,61,49,44,42,59,66,54,54,52,46,52,55,47,54,52,83,66,63,95,73,80,88,162,143,78,74,81,58,79,79,54,121,102,40,52,56,73,64,67,85,79,68,93,58,54,61,59,72,64,109,89",
+ "endOffsets": "11173,12521,12604,12700,12769,12812,12864,12916,12965,13028,13086,13137,13221,13275,13323,13417,13525,13596,13680,13763,13829,13912,14014,14075,14137,14188,14266,14319,14379,14484,14543,14645,14700,14771,14820,14878,14925,14984,15041,15112,15173,15230,15280,15332,15385,15435,15485,15545,15598,15664,15726,15789,15836,15891,15979,16037,16099,16149,16194,16237,16297,16364,16419,16474,16527,16574,16627,16683,16731,16786,16839,16923,16990,17054,17150,17224,17305,17394,17557,17701,17780,17855,17937,17996,18076,18156,18211,18333,18436,18477,18530,18587,18661,18726,18865,18951,19031,19100,19194,19253,19308,19370,19430,19503,19568,19678,19768"
+ }
+ },
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values\\dimens.xml",
+ "from": {
+ "startLines": "19,20,21,22,18",
+ "startColumns": "4,4,4,4,4",
+ "startOffsets": "764,816,869,922,712",
+ "endColumns": "51,52,52,51,51",
+ "endOffsets": "811,864,917,969,759"
+ },
+ "to": {
+ "startLines": "149,150,151,152,153",
+ "startColumns": "4,4,4,4,4",
+ "startOffsets": "9768,9820,9873,9926,9978",
+ "endColumns": "51,52,52,51,51",
+ "endOffsets": "9815,9868,9921,9973,10025"
+ }
+ },
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values\\attrs.xml",
+ "from": {
+ "startLines": "1",
+ "startColumns": "4",
+ "startOffsets": "16",
+ "endLines": "4",
+ "endColumns": "24",
+ "endOffsets": "207"
+ },
+ "to": {
+ "startLines": "1608",
+ "startColumns": "4",
+ "startOffsets": "107511",
+ "endLines": "1611",
+ "endColumns": "24",
+ "endOffsets": "107700"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-nb_values-nb.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-nb\\values-nb.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,399,494,608,694,794,907,1010,1109,1205,1309,1407,1508",
+ "endColumns": "107,94,113,85,99,112,102,98,95,103,97,100,115",
+ "endOffsets": "394,489,603,689,789,902,1005,1104,1200,1304,1402,1503,1619"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,163,258,372,458,558,671,774,873,969,1073,1171,1272",
+ "endColumns": "107,94,113,85,99,112,102,98,95,103,97,100,115",
+ "endOffsets": "158,253,367,453,553,666,769,868,964,1068,1166,1267,1383"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-es_values-es.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-es\\values-es.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,408,521,629,714,815,943,1050,1150,1249,1357,1464,1571",
+ "endColumns": "116,112,107,84,100,127,106,99,98,107,106,106,121",
+ "endOffsets": "403,516,624,709,810,938,1045,1145,1244,1352,1459,1566,1688"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,172,285,393,478,579,707,814,914,1013,1121,1228,1335",
+ "endColumns": "116,112,107,84,100,127,106,99,98,107,106,106,121",
+ "endOffsets": "167,280,388,473,574,702,809,909,1008,1116,1223,1330,1452"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-eu-rES_values-eu-rES.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-eu-rES\\values-eu-rES.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,404,502,612,698,804,928,1037,1147,1246,1355,1468,1579",
+ "endColumns": "108,97,109,85,105,123,108,109,98,108,112,110,136",
+ "endOffsets": "399,497,607,693,799,923,1032,1142,1241,1350,1463,1574,1711"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,164,262,372,458,564,688,797,907,1006,1115,1228,1339",
+ "endColumns": "108,97,109,85,105,123,108,109,98,108,112,110,136",
+ "endOffsets": "159,257,367,453,559,683,792,902,1001,1110,1223,1334,1471"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-v11_values-v11.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-v11\\values-v11.xml",
+ "from": {
+ "startLines": "4,10,16,22,28,34,42,43,44,49,56,58,60,67,68,69,120",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "301,720,1145,1573,1999,2428,3094,3183,3284,3692,4353,4460,4589,5194,5265,5348,9097",
+ "endLines": "9,15,21,27,33,39,42,43,48,53,57,59,64,67,68,119,171",
+ "endColumns": "12,12,12,12,12,12,88,100,12,12,12,12,12,70,82,12,12",
+ "endOffsets": "715,1140,1568,1994,2423,2848,3178,3279,3687,4107,4455,4584,4948,5260,5343,9092,12981"
+ },
+ "to": {
+ "startLines": "2,8,14,20,26,32,38,39,40,45,50,52,54,59,60,61,112",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,474,899,1327,1753,2182,2607,2696,2797,3205,3625,3732,3861,4225,4296,4379,8066",
+ "endLines": "7,13,19,25,31,37,38,39,44,49,51,53,58,59,60,111,163",
+ "endColumns": "12,12,12,12,12,12,88,100,12,12,12,12,12,70,82,12,12",
+ "endOffsets": "469,894,1322,1748,2177,2602,2691,2792,3200,3620,3727,3856,4220,4291,4374,8061,11888"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-ru_values-ru.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ru\\values-ru.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,406,508,620,706,811,931,1037,1145,1243,1352,1458,1566",
+ "endColumns": "114,101,111,85,104,119,105,107,97,108,105,107,135",
+ "endOffsets": "401,503,615,701,806,926,1032,1140,1238,1347,1453,1561,1697"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,170,272,384,470,575,695,801,909,1007,1116,1222,1330",
+ "endColumns": "114,101,111,85,104,119,105,107,97,108,105,107,135",
+ "endOffsets": "165,267,379,465,570,690,796,904,1002,1111,1217,1325,1461"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-en-rIN_values-en-rIN.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-en-rIN\\values-en-rIN.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,399,499,607,695,795,910,1013,1117,1216,1321,1424,1528",
+ "endColumns": "103,99,107,87,99,114,102,103,98,104,102,103,118",
+ "endOffsets": "394,494,602,690,790,905,1008,1112,1211,1316,1419,1523,1642"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,159,259,367,455,555,670,773,877,976,1081,1184,1288",
+ "endColumns": "103,99,107,87,99,114,102,103,98,104,102,103,118",
+ "endOffsets": "154,254,362,450,550,665,768,872,971,1076,1179,1283,1402"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-it_values-it.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-it\\values-it.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,400,500,609,693,802,927,1033,1141,1239,1343,1448,1555",
+ "endColumns": "108,99,108,83,108,124,105,107,97,103,104,106,121",
+ "endOffsets": "395,495,604,688,797,922,1028,1136,1234,1338,1443,1550,1672"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,164,264,373,457,566,691,797,905,1003,1107,1212,1319",
+ "endColumns": "108,99,108,83,108,124,105,107,97,103,104,106,121",
+ "endOffsets": "159,259,368,452,561,686,792,900,998,1102,1207,1314,1436"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-ar_values-ar.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ar\\values-ar.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,408,512,621,703,804,918,1023,1124,1220,1328,1431,1534",
+ "endColumns": "116,103,108,81,100,113,104,100,95,107,102,102,118",
+ "endOffsets": "403,507,616,698,799,913,1018,1119,1215,1323,1426,1529,1648"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,172,276,385,467,568,682,787,888,984,1092,1195,1298",
+ "endColumns": "116,103,108,81,100,113,104,100,95,107,102,102,118",
+ "endOffsets": "167,271,380,462,563,677,782,883,979,1087,1190,1293,1412"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-v12_values-v12.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-v12\\values-v12.xml",
+ "from": {
+ "startLines": "4,7,10,11",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "296,522,724,843",
+ "endLines": "6,9,10,11",
+ "endColumns": "12,12,118,94",
+ "endOffsets": "517,719,838,933"
+ },
+ "to": {
+ "startLines": "2,5,8,9",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,281,483,602",
+ "endLines": "4,7,8,9",
+ "endColumns": "12,12,118,94",
+ "endOffsets": "276,478,597,692"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-bg_values-bg.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-bg\\values-bg.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,406,513,618,704,809,930,1044,1153,1253,1367,1473,1581",
+ "endColumns": "114,106,104,85,104,120,113,108,99,113,105,107,122",
+ "endOffsets": "401,508,613,699,804,925,1039,1148,1248,1362,1468,1576,1699"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,170,277,382,468,573,694,808,917,1017,1131,1237,1345",
+ "endColumns": "114,106,104,85,104,120,113,108,99,113,105,107,122",
+ "endOffsets": "165,272,377,463,568,689,803,912,1012,1126,1232,1340,1463"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-ml-rIN_values-ml-rIN.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ml-rIN\\values-ml-rIN.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,414,532,648,741,846,978,1089,1195,1293,1407,1511,1622",
+ "endColumns": "118,117,115,92,104,131,110,105,97,113,103,110,127",
+ "endOffsets": "409,527,643,736,841,973,1084,1190,1288,1402,1506,1617,1745"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,174,292,408,501,606,738,849,955,1053,1167,1271,1382",
+ "endColumns": "118,117,115,92,104,131,110,105,97,113,103,110,127",
+ "endOffsets": "169,287,403,496,601,733,844,950,1048,1162,1266,1377,1505"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-ky-rKG_values-ky-rKG.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ky-rKG\\values-ky-rKG.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,399,494,613,697,804,921,1031,1138,1236,1342,1449,1550",
+ "endColumns": "103,94,118,83,106,116,109,106,97,105,106,100,123",
+ "endOffsets": "394,489,608,692,799,916,1026,1133,1231,1337,1444,1545,1669"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,159,254,373,457,564,681,791,898,996,1102,1209,1310",
+ "endColumns": "103,94,118,83,106,116,109,106,97,105,106,100,123",
+ "endOffsets": "154,249,368,452,559,676,786,893,991,1097,1204,1305,1429"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-ko_values-ko.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ko\\values-ko.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,386,480,582,664,762,868,966,1061,1156,1256,1352,1451",
+ "endColumns": "94,93,101,81,97,105,97,94,94,99,95,98,114",
+ "endOffsets": "381,475,577,659,757,863,961,1056,1151,1251,1347,1446,1561"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,150,244,346,428,526,632,730,825,920,1020,1116,1215",
+ "endColumns": "94,93,101,81,97,105,97,94,94,99,95,98,114",
+ "endOffsets": "145,239,341,423,521,627,725,820,915,1015,1111,1210,1325"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-v14_values-v14.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-v14\\values-v14.xml",
+ "from": {
+ "startLines": "4,11,12,13,19,27,28,29,32,33",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "301,818,889,972,1382,2040,2160,2223,2377,2440",
+ "endLines": "8,11,12,18,24,27,28,31,32,33",
+ "endColumns": "12,70,82,12,12,119,62,12,62,131",
+ "endOffsets": "572,884,967,1377,1799,2155,2218,2372,2435,2567"
+ },
+ "to": {
+ "startLines": "2,7,8,9,15,21,22,23,26,27",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,331,402,485,895,1317,1437,1500,1654,1717",
+ "endLines": "6,7,8,14,20,21,22,25,26,27",
+ "endColumns": "12,70,82,12,12,119,62,12,62,131",
+ "endOffsets": "326,397,480,890,1312,1432,1495,1649,1712,1844"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-el_values-el.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-el\\values-el.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,409,520,637,722,827,953,1064,1174,1276,1387,1496,1604",
+ "endColumns": "117,110,116,84,104,125,110,109,101,110,108,107,122",
+ "endOffsets": "404,515,632,717,822,948,1059,1169,1271,1382,1491,1599,1722"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,173,284,401,486,591,717,828,938,1040,1151,1260,1368",
+ "endColumns": "117,110,116,84,104,125,110,109,101,110,108,107,122",
+ "endOffsets": "168,279,396,481,586,712,823,933,1035,1146,1255,1363,1486"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-h720dp-v13_values-h720dp-v13.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-h720dp\\values-h720dp.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "4",
+ "startOffsets": "294",
+ "endColumns": "66",
+ "endOffsets": "356"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "66",
+ "endOffsets": "117"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-ja_values-ja.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ja\\values-ja.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,388,481,586,668,766,874,976,1075,1170,1273,1368,1464",
+ "endColumns": "96,92,104,81,97,107,101,98,94,102,94,95,110",
+ "endOffsets": "383,476,581,663,761,869,971,1070,1165,1268,1363,1459,1570"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,152,245,350,432,530,638,740,839,934,1037,1132,1228",
+ "endColumns": "96,92,104,81,97,107,101,98,94,102,94,95,110",
+ "endOffsets": "147,240,345,427,525,633,735,834,929,1032,1127,1223,1334"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-my-rMM_values-my-rMM.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-my-rMM\\values-my-rMM.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,404,509,626,719,831,967,1092,1204,1306,1432,1543,1653",
+ "endColumns": "108,104,116,92,111,135,124,111,101,125,110,109,122",
+ "endOffsets": "399,504,621,714,826,962,1087,1199,1301,1427,1538,1648,1771"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,164,269,386,479,591,727,852,964,1066,1192,1303,1413",
+ "endColumns": "108,104,116,92,111,135,124,111,101,125,110,109,122",
+ "endOffsets": "159,264,381,474,586,722,847,959,1061,1187,1298,1408,1531"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-bn-rBD_values-bn-rBD.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-bn-rBD\\values-bn-rBD.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,404,516,622,716,821,951,1061,1177,1284,1394,1500,1610",
+ "endColumns": "108,111,105,93,104,129,109,115,106,109,105,109,124",
+ "endOffsets": "399,511,617,711,816,946,1056,1172,1279,1389,1495,1605,1730"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,164,276,382,476,581,711,821,937,1044,1154,1260,1370",
+ "endColumns": "108,111,105,93,104,129,109,115,106,109,105,109,124",
+ "endOffsets": "159,271,377,471,576,706,816,932,1039,1149,1255,1365,1490"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-uz-rUZ_values-uz-rUZ.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-uz-rUZ\\values-uz-rUZ.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,400,504,621,707,818,934,1043,1150,1249,1357,1462",
+ "endColumns": "104,103,116,85,110,115,108,106,98,107,104,104",
+ "endOffsets": "395,499,616,702,813,929,1038,1145,1244,1352,1457,1562"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,160,264,381,467,578,694,803,910,1009,1117,1222",
+ "endColumns": "104,103,116,85,110,115,108,106,98,107,104,104",
+ "endOffsets": "155,259,376,462,573,689,798,905,1004,1112,1217,1322"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-v17_values-v17.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-v17\\values-v17.xml",
+ "from": {
+ "startLines": "4,7,11,15,18,21,24,28,32,35,38,41,45,48",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,468,696,1033,1191,1341,1513,1741,1983,2154,2328,2497,2770,2970",
+ "endLines": "6,10,14,17,20,23,27,31,34,37,40,44,47,50",
+ "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12",
+ "endOffsets": "463,691,1028,1186,1336,1508,1736,1978,2149,2323,2492,2765,2965,3213"
+ },
+ "to": {
+ "startLines": "2,5,9,13,16,19,22,26,30,33,36,39,43,46",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,228,456,793,951,1101,1273,1501,1743,1914,2088,2257,2530,2730",
+ "endLines": "4,8,12,15,18,21,25,29,32,35,38,42,45,48",
+ "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12",
+ "endOffsets": "223,451,788,946,1096,1268,1496,1738,1909,2083,2252,2525,2725,2973"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-night-v8_values-night-v8.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values-night\\themes.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "17",
+ "endLines": "5",
+ "endColumns": "12",
+ "endOffsets": "239"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endLines": "5",
+ "endColumns": "12",
+ "endOffsets": "277"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-w480dp-v13_values-w480dp-v13.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-w480dp\\values-w480dp.xml",
+ "from": {
+ "startLines": "4,7",
+ "startColumns": "4,4",
+ "startOffsets": "293,594",
+ "endColumns": "61,71",
+ "endOffsets": "350,661"
+ },
+ "to": {
+ "startLines": "2,3",
+ "startColumns": "4,4",
+ "startOffsets": "55,117",
+ "endColumns": "61,71",
+ "endOffsets": "112,184"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-si-rLK_values-si-rLK.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-si-rLK\\values-si-rLK.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,405,512,619,707,812,928,1037,1142,1240,1350,1449,1555",
+ "endColumns": "109,106,106,87,104,115,108,104,97,109,98,105,120",
+ "endOffsets": "400,507,614,702,807,923,1032,1137,1235,1345,1444,1550,1671"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,165,272,379,467,572,688,797,902,1000,1110,1209,1315",
+ "endColumns": "109,106,106,87,104,115,108,104,97,109,98,105,120",
+ "endOffsets": "160,267,374,462,567,683,792,897,995,1105,1204,1310,1431"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-v18_values-v18.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-v18\\values-v18.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "4",
+ "startOffsets": "291",
+ "endColumns": "48",
+ "endOffsets": "335"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "48",
+ "endOffsets": "99"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-large-v4_values-large-v4.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-large\\values-large.xml",
+ "from": {
+ "startLines": "4,7,8,11,12,13,14,15,16,19,20",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "292,592,664,961,1025,1092,1159,1225,1291,1589,1693",
+ "endColumns": "61,71,58,63,66,66,65,65,54,103,115",
+ "endOffsets": "349,659,718,1020,1087,1154,1220,1286,1341,1688,1804"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,117,189,248,312,379,446,512,578,633,737",
+ "endColumns": "61,71,58,63,66,66,65,65,54,103,115",
+ "endOffsets": "112,184,243,307,374,441,507,573,628,732,848"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-mr-rIN_values-mr-rIN.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-mr-rIN\\values-mr-rIN.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,413,519,626,716,817,932,1044,1146,1242,1351,1452,1567",
+ "endColumns": "117,105,106,89,100,114,111,101,95,108,100,114,122",
+ "endOffsets": "408,514,621,711,812,927,1039,1141,1237,1346,1447,1562,1685"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,173,279,386,476,577,692,804,906,1002,1111,1212,1327",
+ "endColumns": "117,105,106,89,100,114,111,101,95,108,100,114,122",
+ "endOffsets": "168,274,381,471,572,687,799,901,997,1106,1207,1322,1445"
+ }
+ }
+ ]
+ },
+ {
+ "outputFile": "net.micode.notes.app-merged_res-5:/values-sl_values-sl.arsc.flat",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-sl\\values-sl.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,398,505,613,700,803,922,1030,1139,1239,1352,1459,1563",
+ "endColumns": "106,106,107,86,102,118,107,108,99,112,106,103,116",
+ "endOffsets": "393,500,608,695,798,917,1025,1134,1234,1347,1454,1558,1675"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,162,269,377,464,567,686,794,903,1003,1116,1223,1327",
+ "endColumns": "106,106,107,86,102,118,107,108,99,112,106,103,116",
+ "endOffsets": "157,264,372,459,562,681,789,898,998,1111,1218,1322,1439"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-af.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-af.json
new file mode 100644
index 00000000..ca62603d
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-af.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-af/values-af.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-af\\values-af.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,395,495,601,686,789,907,1014,1117,1214,1322,1424,1526",
+ "endColumns": "103,99,105,84,102,117,106,102,96,107,101,101,116",
+ "endOffsets": "390,490,596,681,784,902,1009,1112,1209,1317,1419,1521,1638"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,159,259,365,450,553,671,778,881,978,1086,1188,1290",
+ "endColumns": "103,99,105,84,102,117,106,102,96,107,101,101,116",
+ "endOffsets": "154,254,360,445,548,666,773,876,973,1081,1183,1285,1402"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-am.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-am.json
new file mode 100644
index 00000000..ec5ebb0c
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-am.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-am/values-am.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-am\\values-am.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,393,492,598,684,787,900,1000,1100,1196,1299,1398,1505",
+ "endColumns": "101,98,105,85,102,112,99,99,95,102,98,106,115",
+ "endOffsets": "388,487,593,679,782,895,995,1095,1191,1294,1393,1500,1616"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,157,256,362,448,551,664,764,864,960,1063,1162,1269",
+ "endColumns": "101,98,105,85,102,112,99,99,95,102,98,106,115",
+ "endOffsets": "152,251,357,443,546,659,759,859,955,1058,1157,1264,1380"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ar.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ar.json
new file mode 100644
index 00000000..ec1af0b3
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ar.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-ar/values-ar.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ar\\values-ar.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,408,512,621,703,804,918,1023,1124,1220,1328,1431,1534",
+ "endColumns": "116,103,108,81,100,113,104,100,95,107,102,102,118",
+ "endOffsets": "403,507,616,698,799,913,1018,1119,1215,1323,1426,1529,1648"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,172,276,385,467,568,682,787,888,984,1092,1195,1298",
+ "endColumns": "116,103,108,81,100,113,104,100,95,107,102,102,118",
+ "endOffsets": "167,271,380,462,563,677,782,883,979,1087,1190,1293,1412"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bg.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bg.json
new file mode 100644
index 00000000..614167a3
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bg.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-bg/values-bg.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-bg\\values-bg.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,406,513,618,704,809,930,1044,1153,1253,1367,1473,1581",
+ "endColumns": "114,106,104,85,104,120,113,108,99,113,105,107,122",
+ "endOffsets": "401,508,613,699,804,925,1039,1148,1248,1362,1468,1576,1699"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,170,277,382,468,573,694,808,917,1017,1131,1237,1345",
+ "endColumns": "114,106,104,85,104,120,113,108,99,113,105,107,122",
+ "endOffsets": "165,272,377,463,568,689,803,912,1012,1126,1232,1340,1463"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bn-rBD.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bn-rBD.json
new file mode 100644
index 00000000..cf3274b2
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-bn-rBD.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-bn-rBD/values-bn-rBD.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-bn-rBD\\values-bn-rBD.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,404,516,622,716,821,951,1061,1177,1284,1394,1500,1610",
+ "endColumns": "108,111,105,93,104,129,109,115,106,109,105,109,124",
+ "endOffsets": "399,511,617,711,816,946,1056,1172,1279,1389,1495,1605,1730"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,164,276,382,476,581,711,821,937,1044,1154,1260,1370",
+ "endColumns": "108,111,105,93,104,129,109,115,106,109,105,109,124",
+ "endOffsets": "159,271,377,471,576,706,816,932,1039,1149,1255,1365,1490"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ca.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ca.json
new file mode 100644
index 00000000..de520615
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ca.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-ca/values-ca.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ca\\values-ca.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,409,515,622,705,813,939,1050,1159,1257,1367,1471,1579",
+ "endColumns": "117,105,106,82,107,125,110,108,97,109,103,107,122",
+ "endOffsets": "404,510,617,700,808,934,1045,1154,1252,1362,1466,1574,1697"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,173,279,386,469,577,703,814,923,1021,1131,1235,1343",
+ "endColumns": "117,105,106,82,107,125,110,108,97,109,103,107,122",
+ "endOffsets": "168,274,381,464,572,698,809,918,1016,1126,1230,1338,1461"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-cs.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-cs.json
new file mode 100644
index 00000000..8faaefb0
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-cs.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-cs/values-cs.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-cs\\values-cs.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,398,500,609,695,800,917,1021,1130,1229,1335,1445,1552",
+ "endColumns": "106,101,108,85,104,116,103,108,98,105,109,106,121",
+ "endOffsets": "393,495,604,690,795,912,1016,1125,1224,1330,1440,1547,1669"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,162,264,373,459,564,681,785,894,993,1099,1209,1316",
+ "endColumns": "106,101,108,85,104,116,103,108,98,105,109,106,121",
+ "endOffsets": "157,259,368,454,559,676,780,889,988,1094,1204,1311,1433"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-da.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-da.json
new file mode 100644
index 00000000..a73a5318
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-da.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-da/values-da.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-da\\values-da.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,394,493,605,688,788,901,1010,1118,1214,1328,1432,1533",
+ "endColumns": "102,98,111,82,99,112,108,107,95,113,103,100,115",
+ "endOffsets": "389,488,600,683,783,896,1005,1113,1209,1323,1427,1528,1644"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,158,257,369,452,552,665,774,882,978,1092,1196,1297",
+ "endColumns": "102,98,111,82,99,112,108,107,95,113,103,100,115",
+ "endOffsets": "153,252,364,447,547,660,769,877,973,1087,1191,1292,1408"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-de.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-de.json
new file mode 100644
index 00000000..e271b1ac
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-de.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-de/values-de.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-de\\values-de.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,396,494,606,692,797,912,1023,1126,1225,1336,1438,1545",
+ "endColumns": "104,97,111,85,104,114,110,102,98,110,101,106,121",
+ "endOffsets": "391,489,601,687,792,907,1018,1121,1220,1331,1433,1540,1662"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,160,258,370,456,561,676,787,890,989,1100,1202,1309",
+ "endColumns": "104,97,111,85,104,114,110,102,98,110,101,106,121",
+ "endOffsets": "155,253,365,451,556,671,782,885,984,1095,1197,1304,1426"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-el.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-el.json
new file mode 100644
index 00000000..0ad244ea
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-el.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-el/values-el.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-el\\values-el.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,409,520,637,722,827,953,1064,1174,1276,1387,1496,1604",
+ "endColumns": "117,110,116,84,104,125,110,109,101,110,108,107,122",
+ "endOffsets": "404,515,632,717,822,948,1059,1169,1271,1382,1491,1599,1722"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,173,284,401,486,591,717,828,938,1040,1151,1260,1368",
+ "endColumns": "117,110,116,84,104,125,110,109,101,110,108,107,122",
+ "endOffsets": "168,279,396,481,586,712,823,933,1035,1146,1255,1363,1486"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rGB.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rGB.json
new file mode 100644
index 00000000..0ae01132
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rGB.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-en-rGB/values-en-rGB.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-en-rGB\\values-en-rGB.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,399,499,607,695,795,910,1013,1117,1216,1321,1424,1528",
+ "endColumns": "103,99,107,87,99,114,102,103,98,104,102,103,118",
+ "endOffsets": "394,494,602,690,790,905,1008,1112,1211,1316,1419,1523,1642"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,159,259,367,455,555,670,773,877,976,1081,1184,1288",
+ "endColumns": "103,99,107,87,99,114,102,103,98,104,102,103,118",
+ "endOffsets": "154,254,362,450,550,665,768,872,971,1076,1179,1283,1402"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rIN.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rIN.json
new file mode 100644
index 00000000..691cfd72
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-en-rIN.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-en-rIN/values-en-rIN.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-en-rIN\\values-en-rIN.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,399,499,607,695,795,910,1013,1117,1216,1321,1424,1528",
+ "endColumns": "103,99,107,87,99,114,102,103,98,104,102,103,118",
+ "endOffsets": "394,494,602,690,790,905,1008,1112,1211,1316,1419,1523,1642"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,159,259,367,455,555,670,773,877,976,1081,1184,1288",
+ "endColumns": "103,99,107,87,99,114,102,103,98,104,102,103,118",
+ "endOffsets": "154,254,362,450,550,665,768,872,971,1076,1179,1283,1402"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es-rUS.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es-rUS.json
new file mode 100644
index 00000000..0fb17c78
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es-rUS.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-es-rUS/values-es-rUS.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-es-rUS\\values-es-rUS.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,415,524,632,717,818,941,1053,1165,1266,1374,1481,1588",
+ "endColumns": "119,108,107,84,100,122,111,111,100,107,106,106,121",
+ "endOffsets": "410,519,627,712,813,936,1048,1160,1261,1369,1476,1583,1705"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,175,284,392,477,578,701,813,925,1026,1134,1241,1348",
+ "endColumns": "119,108,107,84,100,122,111,111,100,107,106,106,121",
+ "endOffsets": "170,279,387,472,573,696,808,920,1021,1129,1236,1343,1465"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es.json
new file mode 100644
index 00000000..3c5eaf88
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-es.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-es/values-es.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-es\\values-es.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,408,521,629,714,815,943,1050,1150,1249,1357,1464,1571",
+ "endColumns": "116,112,107,84,100,127,106,99,98,107,106,106,121",
+ "endOffsets": "403,516,624,709,810,938,1045,1145,1244,1352,1459,1566,1688"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,172,285,393,478,579,707,814,914,1013,1121,1228,1335",
+ "endColumns": "116,112,107,84,100,127,106,99,98,107,106,106,121",
+ "endOffsets": "167,280,388,473,574,702,809,909,1008,1116,1223,1330,1452"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-et-rEE.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-et-rEE.json
new file mode 100644
index 00000000..cb9be472
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-et-rEE.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-et-rEE/values-et-rEE.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-et-rEE\\values-et-rEE.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,412,519,630,716,818,935,1046,1151,1250,1360,1461,1564",
+ "endColumns": "116,106,110,85,101,116,110,104,98,109,100,102,127",
+ "endOffsets": "407,514,625,711,813,930,1041,1146,1245,1355,1456,1559,1687"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,172,279,390,476,578,695,806,911,1010,1120,1221,1324",
+ "endColumns": "116,106,110,85,101,116,110,104,98,109,100,102,127",
+ "endOffsets": "167,274,385,471,573,690,801,906,1005,1115,1216,1319,1447"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-eu-rES.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-eu-rES.json
new file mode 100644
index 00000000..a91fee79
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-eu-rES.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-eu-rES/values-eu-rES.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-eu-rES\\values-eu-rES.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,404,502,612,698,804,928,1037,1147,1246,1355,1468,1579",
+ "endColumns": "108,97,109,85,105,123,108,109,98,108,112,110,136",
+ "endOffsets": "399,497,607,693,799,923,1032,1142,1241,1350,1463,1574,1711"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,164,262,372,458,564,688,797,907,1006,1115,1228,1339",
+ "endColumns": "108,97,109,85,105,123,108,109,98,108,112,110,136",
+ "endOffsets": "159,257,367,453,559,683,792,902,1001,1110,1223,1334,1471"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fa.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fa.json
new file mode 100644
index 00000000..390e407a
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fa.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-fa/values-fa.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-fa\\values-fa.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,401,504,615,703,806,921,1033,1136,1234,1344,1447,1556",
+ "endColumns": "109,102,110,87,102,114,111,102,97,109,102,108,124",
+ "endOffsets": "396,499,610,698,801,916,1028,1131,1229,1339,1442,1551,1676"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,165,268,379,467,570,685,797,900,998,1108,1211,1320",
+ "endColumns": "109,102,110,87,102,114,111,102,97,109,102,108,124",
+ "endOffsets": "160,263,374,462,565,680,792,895,993,1103,1206,1315,1440"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fi.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fi.json
new file mode 100644
index 00000000..b96d5039
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fi.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-fi/values-fi.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-fi\\values-fi.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,399,499,600,686,791,909,1016,1119,1216,1322,1421,1525",
+ "endColumns": "107,99,100,85,104,117,106,102,96,105,98,103,118",
+ "endOffsets": "394,494,595,681,786,904,1011,1114,1211,1317,1416,1520,1639"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,163,263,364,450,555,673,780,883,980,1086,1185,1289",
+ "endColumns": "107,99,100,85,104,117,106,102,96,105,98,103,118",
+ "endOffsets": "158,258,359,445,550,668,775,878,975,1081,1180,1284,1403"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr-rCA.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr-rCA.json
new file mode 100644
index 00000000..c7b0747b
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr-rCA.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-fr-rCA/values-fr-rCA.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-fr-rCA\\values-fr-rCA.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,406,521,632,719,835,965,1075,1187,1290,1401,1508,1615",
+ "endColumns": "110,114,110,86,115,129,109,111,102,110,106,106,121",
+ "endOffsets": "401,516,627,714,830,960,1070,1182,1285,1396,1503,1610,1732"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,166,281,392,479,595,725,835,947,1050,1161,1268,1375",
+ "endColumns": "110,114,110,86,115,129,109,111,102,110,106,106,121",
+ "endOffsets": "161,276,387,474,590,720,830,942,1045,1156,1263,1370,1492"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr.json
new file mode 100644
index 00000000..accc2def
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-fr.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-fr/values-fr.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-fr\\values-fr.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,402,517,628,710,816,946,1056,1168,1271,1382,1489,1596",
+ "endColumns": "110,114,110,81,105,129,109,111,102,110,106,106,121",
+ "endOffsets": "397,512,623,705,811,941,1051,1163,1266,1377,1484,1591,1713"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,166,281,392,474,580,710,820,932,1035,1146,1253,1360",
+ "endColumns": "110,114,110,81,105,129,109,111,102,110,106,106,121",
+ "endOffsets": "161,276,387,469,575,705,815,927,1030,1141,1248,1355,1477"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-gl-rES.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-gl-rES.json
new file mode 100644
index 00000000..f60ba0ec
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-gl-rES.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-gl-rES/values-gl-rES.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-gl-rES\\values-gl-rES.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,407,519,627,712,814,940,1047,1156,1255,1363,1466,1573",
+ "endColumns": "111,111,107,84,101,125,106,108,98,107,102,106,121",
+ "endOffsets": "402,514,622,707,809,935,1042,1151,1250,1358,1461,1568,1690"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,167,279,387,472,574,700,807,916,1015,1123,1226,1333",
+ "endColumns": "111,111,107,84,101,125,106,108,98,107,102,106,121",
+ "endOffsets": "162,274,382,467,569,695,802,911,1010,1118,1221,1328,1450"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-h720dp-v13.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-h720dp-v13.json
new file mode 100644
index 00000000..ea3394c2
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-h720dp-v13.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-h720dp-v13/values-h720dp-v13.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-h720dp\\values-h720dp.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "4",
+ "startOffsets": "294",
+ "endColumns": "66",
+ "endOffsets": "356"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "66",
+ "endOffsets": "117"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hdpi-v4.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hdpi-v4.json
new file mode 100644
index 00000000..9d64420a
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hdpi-v4.json
@@ -0,0 +1,28 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-hdpi-v4/values-hdpi-v4.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-hdpi\\values-hdpi.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "4",
+ "startOffsets": "297",
+ "endLines": "8",
+ "endColumns": "13",
+ "endOffsets": "567"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endLines": "6",
+ "endColumns": "13",
+ "endOffsets": "325"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hi.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hi.json
new file mode 100644
index 00000000..1f1f9750
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hi.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-hi/values-hi.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-hi\\values-hi.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,406,511,618,703,805,927,1036,1138,1236,1346,1446,1561",
+ "endColumns": "114,104,106,84,101,121,108,101,97,109,99,114,124",
+ "endOffsets": "401,506,613,698,800,922,1031,1133,1231,1341,1441,1556,1681"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,170,275,382,467,569,691,800,902,1000,1110,1210,1325",
+ "endColumns": "114,104,106,84,101,121,108,101,97,109,99,114,124",
+ "endOffsets": "165,270,377,462,564,686,795,897,995,1105,1205,1320,1445"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hr.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hr.json
new file mode 100644
index 00000000..8831bd47
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hr.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-hr/values-hr.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-hr\\values-hr.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,396,493,603,689,793,912,1016,1129,1235,1340,1453,1560",
+ "endColumns": "104,96,109,85,103,118,103,112,105,104,112,106,122",
+ "endOffsets": "391,488,598,684,788,907,1011,1124,1230,1335,1448,1555,1678"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,160,257,367,453,557,676,780,893,999,1104,1217,1324",
+ "endColumns": "104,96,109,85,103,118,103,112,105,104,112,106,122",
+ "endOffsets": "155,252,362,448,552,671,775,888,994,1099,1212,1319,1442"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hu.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hu.json
new file mode 100644
index 00000000..43689bd4
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hu.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-hu/values-hu.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-hu\\values-hu.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,399,504,619,703,815,945,1055,1166,1266,1377,1485,1604",
+ "endColumns": "107,104,114,83,111,129,109,110,99,110,107,118,133",
+ "endOffsets": "394,499,614,698,810,940,1050,1161,1261,1372,1480,1599,1733"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,163,268,383,467,579,709,819,930,1030,1141,1249,1368",
+ "endColumns": "107,104,114,83,111,129,109,110,99,110,107,118,133",
+ "endOffsets": "158,263,378,462,574,704,814,925,1025,1136,1244,1363,1497"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hy-rAM.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hy-rAM.json
new file mode 100644
index 00000000..8a1e400a
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-hy-rAM.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-hy-rAM/values-hy-rAM.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-hy-rAM\\values-hy-rAM.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,398,499,609,699,805,920,1027,1134,1233,1343,1450,1551",
+ "endColumns": "102,100,109,89,105,114,106,106,98,109,106,100,119",
+ "endOffsets": "393,494,604,694,800,915,1022,1129,1228,1338,1445,1546,1666"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,158,259,369,459,565,680,787,894,993,1103,1210,1311",
+ "endColumns": "102,100,109,89,105,114,106,106,98,109,106,100,119",
+ "endOffsets": "153,254,364,454,560,675,782,889,988,1098,1205,1306,1426"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-in.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-in.json
new file mode 100644
index 00000000..33860091
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-in.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-in/values-in.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-in\\values-in.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,401,503,608,695,799,915,1018,1127,1228,1332,1440,1548",
+ "endColumns": "109,101,104,86,103,115,102,108,100,103,107,107,122",
+ "endOffsets": "396,498,603,690,794,910,1013,1122,1223,1327,1435,1543,1666"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,165,267,372,459,563,679,782,891,992,1096,1204,1312",
+ "endColumns": "109,101,104,86,103,115,102,108,100,103,107,107,122",
+ "endOffsets": "160,262,367,454,558,674,777,886,987,1091,1199,1307,1430"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-is-rIS.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-is-rIS.json
new file mode 100644
index 00000000..55f9b3c2
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-is-rIS.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-is-rIS/values-is-rIS.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-is-rIS\\values-is-rIS.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,395,492,604,689,790,904,1014,1122,1220,1329,1428,1531",
+ "endColumns": "99,96,111,84,100,113,109,107,97,108,98,102,117",
+ "endOffsets": "390,487,599,684,785,899,1009,1117,1215,1324,1423,1526,1644"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,155,252,364,449,550,664,774,882,980,1089,1188,1291",
+ "endColumns": "99,96,111,84,100,113,109,107,97,108,98,102,117",
+ "endOffsets": "150,247,359,444,545,659,769,877,975,1084,1183,1286,1404"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-it.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-it.json
new file mode 100644
index 00000000..60634650
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-it.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-it/values-it.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-it\\values-it.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,400,500,609,693,802,927,1033,1141,1239,1343,1448,1555",
+ "endColumns": "108,99,108,83,108,124,105,107,97,103,104,106,121",
+ "endOffsets": "395,495,604,688,797,922,1028,1136,1234,1338,1443,1550,1672"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,164,264,373,457,566,691,797,905,1003,1107,1212,1319",
+ "endColumns": "108,99,108,83,108,124,105,107,97,103,104,106,121",
+ "endOffsets": "159,259,368,452,561,686,792,900,998,1102,1207,1314,1436"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-iw.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-iw.json
new file mode 100644
index 00000000..58acc0fa
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-iw.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-iw/values-iw.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-iw\\values-iw.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,395,494,602,686,787,901,1003,1107,1203,1306,1407,1507",
+ "endColumns": "103,98,107,83,100,113,101,103,95,102,100,99,115",
+ "endOffsets": "390,489,597,681,782,896,998,1102,1198,1301,1402,1502,1618"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,159,258,366,450,551,665,767,871,967,1070,1171,1271",
+ "endColumns": "103,98,107,83,100,113,101,103,95,102,100,99,115",
+ "endOffsets": "154,253,361,445,546,660,762,866,962,1065,1166,1266,1382"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ja.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ja.json
new file mode 100644
index 00000000..e551de39
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ja.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-ja/values-ja.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ja\\values-ja.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,388,481,586,668,766,874,976,1075,1170,1273,1368,1464",
+ "endColumns": "96,92,104,81,97,107,101,98,94,102,94,95,110",
+ "endOffsets": "383,476,581,663,761,869,971,1070,1165,1268,1363,1459,1570"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,152,245,350,432,530,638,740,839,934,1037,1132,1228",
+ "endColumns": "96,92,104,81,97,107,101,98,94,102,94,95,110",
+ "endOffsets": "147,240,345,427,525,633,735,834,929,1032,1127,1223,1334"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ka-rGE.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ka-rGE.json
new file mode 100644
index 00000000..40dfda9d
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ka-rGE.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-ka-rGE/values-ka-rGE.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ka-rGE\\values-ka-rGE.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,404,508,619,707,812,925,1038,1145,1243,1356,1460,1564",
+ "endColumns": "108,103,110,87,104,112,112,106,97,112,103,103,121",
+ "endOffsets": "399,503,614,702,807,920,1033,1140,1238,1351,1455,1559,1681"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,164,268,379,467,572,685,798,905,1003,1116,1220,1324",
+ "endColumns": "108,103,110,87,104,112,112,106,97,112,103,103,121",
+ "endOffsets": "159,263,374,462,567,680,793,900,998,1111,1215,1319,1441"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kk-rKZ.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kk-rKZ.json
new file mode 100644
index 00000000..0153854b
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kk-rKZ.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-kk-rKZ/values-kk-rKZ.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-kk-rKZ\\values-kk-rKZ.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,407,510,620,709,815,934,1037,1142,1240,1347,1456,1556",
+ "endColumns": "111,102,109,88,105,118,102,104,97,106,108,99,114",
+ "endOffsets": "402,505,615,704,810,929,1032,1137,1235,1342,1451,1551,1666"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,167,270,380,469,575,694,797,902,1000,1107,1216,1316",
+ "endColumns": "111,102,109,88,105,118,102,104,97,106,108,99,114",
+ "endOffsets": "162,265,375,464,570,689,792,897,995,1102,1211,1311,1426"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-km-rKH.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-km-rKH.json
new file mode 100644
index 00000000..2b24dfc0
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-km-rKH.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-km-rKH/values-km-rKH.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-km-rKH\\values-km-rKH.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,398,498,610,697,801,919,1023,1128,1228,1338,1445,1553",
+ "endColumns": "102,99,111,86,103,117,103,104,99,109,106,107,122",
+ "endOffsets": "393,493,605,692,796,914,1018,1123,1223,1333,1440,1548,1671"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,158,258,370,457,561,679,783,888,988,1098,1205,1313",
+ "endColumns": "102,99,111,86,103,117,103,104,99,109,106,107,122",
+ "endOffsets": "153,253,365,452,556,674,778,883,983,1093,1200,1308,1431"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kn-rIN.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kn-rIN.json
new file mode 100644
index 00000000..b43f99d9
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-kn-rIN.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-kn-rIN/values-kn-rIN.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-kn-rIN\\values-kn-rIN.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,413,525,638,726,833,960,1076,1187,1286,1399,1503,1617",
+ "endColumns": "117,111,112,87,106,126,115,110,98,112,103,113,125",
+ "endOffsets": "408,520,633,721,828,955,1071,1182,1281,1394,1498,1612,1738"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,173,285,398,486,593,720,836,947,1046,1159,1263,1377",
+ "endColumns": "117,111,112,87,106,126,115,110,98,112,103,113,125",
+ "endOffsets": "168,280,393,481,588,715,831,942,1041,1154,1258,1372,1498"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ko.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ko.json
new file mode 100644
index 00000000..9d44a58b
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ko.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-ko/values-ko.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ko\\values-ko.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,386,480,582,664,762,868,966,1061,1156,1256,1352,1451",
+ "endColumns": "94,93,101,81,97,105,97,94,94,99,95,98,114",
+ "endOffsets": "381,475,577,659,757,863,961,1056,1151,1251,1347,1446,1561"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,150,244,346,428,526,632,730,825,920,1020,1116,1215",
+ "endColumns": "94,93,101,81,97,105,97,94,94,99,95,98,114",
+ "endOffsets": "145,239,341,423,521,627,725,820,915,1015,1111,1210,1325"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ky-rKG.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ky-rKG.json
new file mode 100644
index 00000000..c38c2297
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ky-rKG.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-ky-rKG/values-ky-rKG.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ky-rKG\\values-ky-rKG.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,399,494,613,697,804,921,1031,1138,1236,1342,1449,1550",
+ "endColumns": "103,94,118,83,106,116,109,106,97,105,106,100,123",
+ "endOffsets": "394,489,608,692,799,916,1026,1133,1231,1337,1444,1545,1669"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,159,254,373,457,564,681,791,898,996,1102,1209,1310",
+ "endColumns": "103,94,118,83,106,116,109,106,97,105,106,100,123",
+ "endOffsets": "154,249,368,452,559,676,786,893,991,1097,1204,1305,1429"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-land.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-land.json
new file mode 100644
index 00000000..90449187
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-land.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-land/values-land.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-land\\values-land.xml",
+ "from": {
+ "startLines": "4,7,10,11,14,17,18",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "291,590,908,978,1285,1595,1666",
+ "endColumns": "61,71,69,69,63,70,67",
+ "endOffsets": "348,657,973,1043,1344,1661,1729"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "55,117,189,259,329,393,464",
+ "endColumns": "61,71,69,69,63,70,67",
+ "endOffsets": "112,184,254,324,388,459,527"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-large-v4.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-large-v4.json
new file mode 100644
index 00000000..12373f93
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-large-v4.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-large-v4/values-large-v4.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-large\\values-large.xml",
+ "from": {
+ "startLines": "4,7,8,11,12,13,14,15,16,19,20",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "292,592,664,961,1025,1092,1159,1225,1291,1589,1693",
+ "endColumns": "61,71,58,63,66,66,65,65,54,103,115",
+ "endOffsets": "349,659,718,1020,1087,1154,1220,1286,1341,1688,1804"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,117,189,248,312,379,446,512,578,633,737",
+ "endColumns": "61,71,58,63,66,66,65,65,54,103,115",
+ "endOffsets": "112,184,243,307,374,441,507,573,628,732,848"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lo-rLA.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lo-rLA.json
new file mode 100644
index 00000000..a61e8d37
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lo-rLA.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-lo-rLA/values-lo-rLA.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-lo-rLA\\values-lo-rLA.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,398,495,602,687,792,904,1011,1108,1206,1311,1414,1518",
+ "endColumns": "102,96,106,84,104,111,106,96,97,104,102,103,121",
+ "endOffsets": "393,490,597,682,787,899,1006,1103,1201,1306,1409,1513,1635"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,158,255,362,447,552,664,771,868,966,1071,1174,1278",
+ "endColumns": "102,96,106,84,104,111,106,96,97,104,102,103,121",
+ "endOffsets": "153,250,357,442,547,659,766,863,961,1066,1169,1273,1395"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lt.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lt.json
new file mode 100644
index 00000000..469b53e0
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lt.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-lt/values-lt.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-lt\\values-lt.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,407,508,621,708,817,938,1047,1156,1256,1366,1470,1583",
+ "endColumns": "115,100,112,86,108,120,108,108,99,109,103,112,129",
+ "endOffsets": "402,503,616,703,812,933,1042,1151,1251,1361,1465,1578,1708"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,171,272,385,472,581,702,811,920,1020,1130,1234,1347",
+ "endColumns": "115,100,112,86,108,120,108,108,99,109,103,112,129",
+ "endOffsets": "166,267,380,467,576,697,806,915,1015,1125,1229,1342,1472"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lv.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lv.json
new file mode 100644
index 00000000..d69ea31d
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-lv.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-lv/values-lv.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-lv\\values-lv.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,411,519,628,714,818,940,1049,1161,1260,1371,1480,1585",
+ "endColumns": "119,107,108,85,103,121,108,111,98,110,108,104,118",
+ "endOffsets": "406,514,623,709,813,935,1044,1156,1255,1366,1475,1580,1699"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,175,283,392,478,582,704,813,925,1024,1135,1244,1349",
+ "endColumns": "119,107,108,85,103,121,108,111,98,110,108,104,118",
+ "endOffsets": "170,278,387,473,577,699,808,920,1019,1130,1239,1344,1463"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mk-rMK.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mk-rMK.json
new file mode 100644
index 00000000..1c4c1644
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mk-rMK.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-mk-rMK/values-mk-rMK.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-mk-rMK\\values-mk-rMK.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,403,507,615,701,806,925,1031,1138,1239,1346,1457",
+ "endColumns": "107,103,107,85,104,118,105,106,100,106,110,103",
+ "endOffsets": "398,502,610,696,801,920,1026,1133,1234,1341,1452,1556"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,163,267,375,461,566,685,791,898,999,1106,1217",
+ "endColumns": "107,103,107,85,104,118,105,106,100,106,110,103",
+ "endOffsets": "158,262,370,456,561,680,786,893,994,1101,1212,1316"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ml-rIN.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ml-rIN.json
new file mode 100644
index 00000000..f5918862
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ml-rIN.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-ml-rIN/values-ml-rIN.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ml-rIN\\values-ml-rIN.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,414,532,648,741,846,978,1089,1195,1293,1407,1511,1622",
+ "endColumns": "118,117,115,92,104,131,110,105,97,113,103,110,127",
+ "endOffsets": "409,527,643,736,841,973,1084,1190,1288,1402,1506,1617,1745"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,174,292,408,501,606,738,849,955,1053,1167,1271,1382",
+ "endColumns": "118,117,115,92,104,131,110,105,97,113,103,110,127",
+ "endOffsets": "169,287,403,496,601,733,844,950,1048,1162,1266,1377,1505"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mn-rMN.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mn-rMN.json
new file mode 100644
index 00000000..b27ce87f
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mn-rMN.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-mn-rMN/values-mn-rMN.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-mn-rMN\\values-mn-rMN.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,408,508,621,708,814,926,1035,1139,1236,1344,1445,1548",
+ "endColumns": "112,99,112,86,105,111,108,103,96,107,100,102,121",
+ "endOffsets": "403,503,616,703,809,921,1030,1134,1231,1339,1440,1543,1665"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,168,268,381,468,574,686,795,899,996,1104,1205,1308",
+ "endColumns": "112,99,112,86,105,111,108,103,96,107,100,102,121",
+ "endOffsets": "163,263,376,463,569,681,790,894,991,1099,1200,1303,1425"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mr-rIN.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mr-rIN.json
new file mode 100644
index 00000000..686e2092
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-mr-rIN.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-mr-rIN/values-mr-rIN.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-mr-rIN\\values-mr-rIN.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,413,519,626,716,817,932,1044,1146,1242,1351,1452,1567",
+ "endColumns": "117,105,106,89,100,114,111,101,95,108,100,114,122",
+ "endOffsets": "408,514,621,711,812,927,1039,1141,1237,1346,1447,1562,1685"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,173,279,386,476,577,692,804,906,1002,1111,1212,1327",
+ "endColumns": "117,105,106,89,100,114,111,101,95,108,100,114,122",
+ "endOffsets": "168,274,381,471,572,687,799,901,997,1106,1207,1322,1445"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ms-rMY.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ms-rMY.json
new file mode 100644
index 00000000..aaaf15be
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ms-rMY.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-ms-rMY/values-ms-rMY.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ms-rMY\\values-ms-rMY.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,406,511,619,706,810,921,1033,1142,1239,1348,1451,1558",
+ "endColumns": "110,104,107,86,103,110,111,108,96,108,102,106,121",
+ "endOffsets": "401,506,614,701,805,916,1028,1137,1234,1343,1446,1553,1675"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,166,271,379,466,570,681,793,902,999,1108,1211,1318",
+ "endColumns": "110,104,107,86,103,110,111,108,96,108,102,106,121",
+ "endOffsets": "161,266,374,461,565,676,788,897,994,1103,1206,1313,1435"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-my-rMM.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-my-rMM.json
new file mode 100644
index 00000000..cee02a5f
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-my-rMM.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-my-rMM/values-my-rMM.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-my-rMM\\values-my-rMM.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,404,509,626,719,831,967,1092,1204,1306,1432,1543,1653",
+ "endColumns": "108,104,116,92,111,135,124,111,101,125,110,109,122",
+ "endOffsets": "399,504,621,714,826,962,1087,1199,1301,1427,1538,1648,1771"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,164,269,386,479,591,727,852,964,1066,1192,1303,1413",
+ "endColumns": "108,104,116,92,111,135,124,111,101,125,110,109,122",
+ "endOffsets": "159,264,381,474,586,722,847,959,1061,1187,1298,1408,1531"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nb.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nb.json
new file mode 100644
index 00000000..aafcc3ee
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nb.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-nb/values-nb.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-nb\\values-nb.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,399,494,608,694,794,907,1010,1109,1205,1309,1407,1508",
+ "endColumns": "107,94,113,85,99,112,102,98,95,103,97,100,115",
+ "endOffsets": "394,489,603,689,789,902,1005,1104,1200,1304,1402,1503,1619"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,163,258,372,458,558,671,774,873,969,1073,1171,1272",
+ "endColumns": "107,94,113,85,99,112,102,98,95,103,97,100,115",
+ "endOffsets": "158,253,367,453,553,666,769,868,964,1068,1166,1267,1383"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ne-rNP.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ne-rNP.json
new file mode 100644
index 00000000..48f09133
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ne-rNP.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-ne-rNP/values-ne-rNP.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ne-rNP\\values-ne-rNP.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,400,504,612,703,810,937,1047,1163,1266,1381,1483,1598",
+ "endColumns": "104,103,107,90,106,126,109,115,102,114,101,114,130",
+ "endOffsets": "395,499,607,698,805,932,1042,1158,1261,1376,1478,1593,1724"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,160,264,372,463,570,697,807,923,1026,1141,1243,1358",
+ "endColumns": "104,103,107,90,106,126,109,115,102,114,101,114,130",
+ "endOffsets": "155,259,367,458,565,692,802,918,1021,1136,1238,1353,1484"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-night-v8.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-night-v8.json
new file mode 100644
index 00000000..dfd782f9
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-night-v8.json
@@ -0,0 +1,28 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-night-v8/values-night-v8.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values-night\\themes.xml",
+ "from": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "17",
+ "endLines": "5",
+ "endColumns": "12",
+ "endOffsets": "239"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endLines": "5",
+ "endColumns": "12",
+ "endOffsets": "277"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nl.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nl.json
new file mode 100644
index 00000000..e9cda6b2
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-nl.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-nl/values-nl.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-nl\\values-nl.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,409,514,621,707,815,935,1046,1150,1249,1364,1477,1580",
+ "endColumns": "117,104,106,85,107,119,110,103,98,114,112,102,117",
+ "endOffsets": "404,509,616,702,810,930,1041,1145,1244,1359,1472,1575,1693"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,173,278,385,471,579,699,810,914,1013,1128,1241,1344",
+ "endColumns": "117,104,106,85,107,119,110,103,98,114,112,102,117",
+ "endOffsets": "168,273,380,466,574,694,805,909,1008,1123,1236,1339,1457"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pl.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pl.json
new file mode 100644
index 00000000..cb5ea0b2
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pl.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-pl/values-pl.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-pl\\values-pl.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,407,509,617,703,812,931,1040,1149,1248,1357,1468,1576",
+ "endColumns": "115,101,107,85,108,118,108,108,98,108,110,107,122",
+ "endOffsets": "402,504,612,698,807,926,1035,1144,1243,1352,1463,1571,1694"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,171,273,381,467,576,695,804,913,1012,1121,1232,1340",
+ "endColumns": "115,101,107,85,108,118,108,108,98,108,110,107,122",
+ "endOffsets": "166,268,376,462,571,690,799,908,1007,1116,1227,1335,1458"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-port.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-port.json
new file mode 100644
index 00000000..9c0dbe7f
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-port.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-port/values-port.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-port\\values-port.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "4",
+ "startOffsets": "291",
+ "endColumns": "55",
+ "endOffsets": "342"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "55",
+ "endOffsets": "106"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt-rPT.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt-rPT.json
new file mode 100644
index 00000000..f8c32ac8
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt-rPT.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-pt-rPT/values-pt-rPT.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-pt-rPT\\values-pt-rPT.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,415,521,628,717,818,942,1049,1161,1263,1371,1478,1585",
+ "endColumns": "119,105,106,88,100,123,106,111,101,107,106,106,121",
+ "endOffsets": "410,516,623,712,813,937,1044,1156,1258,1366,1473,1580,1702"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,175,281,388,477,578,702,809,921,1023,1131,1238,1345",
+ "endColumns": "119,105,106,88,100,123,106,111,101,107,106,106,121",
+ "endOffsets": "170,276,383,472,573,697,804,916,1018,1126,1233,1340,1462"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt.json
new file mode 100644
index 00000000..0d7ff787
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-pt.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-pt/values-pt.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-pt\\values-pt.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,411,517,624,713,814,939,1046,1158,1260,1368,1475,1585",
+ "endColumns": "119,105,106,88,100,124,106,111,101,107,106,109,124",
+ "endOffsets": "406,512,619,708,809,934,1041,1153,1255,1363,1470,1580,1705"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,175,281,388,477,578,703,810,922,1024,1132,1239,1349",
+ "endColumns": "119,105,106,88,100,124,106,111,101,107,106,109,124",
+ "endOffsets": "170,276,383,472,573,698,805,917,1019,1127,1234,1344,1469"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ro.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ro.json
new file mode 100644
index 00000000..658ea6cb
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ro.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-ro/values-ro.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ro\\values-ro.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,412,516,629,717,829,950,1062,1175,1275,1389,1494,1600",
+ "endColumns": "120,103,112,87,111,120,111,112,99,113,104,105,120",
+ "endOffsets": "407,511,624,712,824,945,1057,1170,1270,1384,1489,1595,1716"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,176,280,393,481,593,714,826,939,1039,1153,1258,1364",
+ "endColumns": "120,103,112,87,111,120,111,112,99,113,104,105,120",
+ "endOffsets": "171,275,388,476,588,709,821,934,1034,1148,1253,1359,1480"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ru.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ru.json
new file mode 100644
index 00000000..3454d1a4
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ru.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-ru/values-ru.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ru\\values-ru.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,406,508,620,706,811,931,1037,1145,1243,1352,1458,1566",
+ "endColumns": "114,101,111,85,104,119,105,107,97,108,105,107,135",
+ "endOffsets": "401,503,615,701,806,926,1032,1140,1238,1347,1453,1561,1697"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,170,272,384,470,575,695,801,909,1007,1116,1222,1330",
+ "endColumns": "114,101,111,85,104,119,105,107,97,108,105,107,135",
+ "endOffsets": "165,267,379,465,570,690,796,904,1002,1111,1217,1325,1461"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-si-rLK.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-si-rLK.json
new file mode 100644
index 00000000..0de4630e
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-si-rLK.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-si-rLK/values-si-rLK.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-si-rLK\\values-si-rLK.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,405,512,619,707,812,928,1037,1142,1240,1350,1449,1555",
+ "endColumns": "109,106,106,87,104,115,108,104,97,109,98,105,120",
+ "endOffsets": "400,507,614,702,807,923,1032,1137,1235,1345,1444,1550,1671"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,165,272,379,467,572,688,797,902,1000,1110,1209,1315",
+ "endColumns": "109,106,106,87,104,115,108,104,97,109,98,105,120",
+ "endOffsets": "160,267,374,462,567,683,792,897,995,1105,1204,1310,1431"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sk.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sk.json
new file mode 100644
index 00000000..fd423d64
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sk.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-sk/values-sk.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-sk\\values-sk.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,398,498,609,695,803,921,1026,1135,1234,1340,1451,1560",
+ "endColumns": "106,99,110,85,107,117,104,108,98,105,110,108,123",
+ "endOffsets": "393,493,604,690,798,916,1021,1130,1229,1335,1446,1555,1679"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,162,262,373,459,567,685,790,899,998,1104,1215,1324",
+ "endColumns": "106,99,110,85,107,117,104,108,98,105,110,108,123",
+ "endOffsets": "157,257,368,454,562,680,785,894,993,1099,1210,1319,1443"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sl.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sl.json
new file mode 100644
index 00000000..f599efeb
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sl.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-sl/values-sl.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-sl\\values-sl.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,398,505,613,700,803,922,1030,1139,1239,1352,1459,1563",
+ "endColumns": "106,106,107,86,102,118,107,108,99,112,106,103,116",
+ "endOffsets": "393,500,608,695,798,917,1025,1134,1234,1347,1454,1558,1675"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,162,269,377,464,567,686,794,903,1003,1116,1223,1327",
+ "endColumns": "106,106,107,86,102,118,107,108,99,112,106,103,116",
+ "endOffsets": "157,264,372,459,562,681,789,898,998,1111,1218,1322,1439"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sr.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sr.json
new file mode 100644
index 00000000..0e978950
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sr.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-sr/values-sr.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-sr\\values-sr.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,400,503,609,695,799,917,1022,1130,1231,1335,1443,1544",
+ "endColumns": "108,102,105,85,103,117,104,107,100,103,107,100,127",
+ "endOffsets": "395,498,604,690,794,912,1017,1125,1226,1330,1438,1539,1667"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,164,267,373,459,563,681,786,894,995,1099,1207,1308",
+ "endColumns": "108,102,105,85,103,117,104,107,100,103,107,100,127",
+ "endOffsets": "159,262,368,454,558,676,781,889,990,1094,1202,1303,1431"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sv.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sv.json
new file mode 100644
index 00000000..4e6c89ed
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sv.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-sv/values-sv.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-sv\\values-sv.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,397,500,611,696,798,911,1017,1117,1213,1318,1420,1522",
+ "endColumns": "105,102,110,84,101,112,105,99,95,104,101,101,116",
+ "endOffsets": "392,495,606,691,793,906,1012,1112,1208,1313,1415,1517,1634"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,161,264,375,460,562,675,781,881,977,1082,1184,1286",
+ "endColumns": "105,102,110,84,101,112,105,99,95,104,101,101,116",
+ "endOffsets": "156,259,370,455,557,670,776,876,972,1077,1179,1281,1398"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sw.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sw.json
new file mode 100644
index 00000000..465e0c49
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sw.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-sw/values-sw.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-sw\\values-sw.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,394,492,600,690,795,912,1013,1122,1221,1328,1437,1542",
+ "endColumns": "102,97,107,89,104,116,100,108,98,106,108,104,118",
+ "endOffsets": "389,487,595,685,790,907,1008,1117,1216,1323,1432,1537,1656"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,158,256,364,454,559,676,777,886,985,1092,1201,1306",
+ "endColumns": "102,97,107,89,104,116,100,108,98,106,108,104,118",
+ "endOffsets": "153,251,359,449,554,671,772,881,980,1087,1196,1301,1420"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sw600dp-v13.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sw600dp-v13.json
new file mode 100644
index 00000000..1afd63fd
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-sw600dp-v13.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-sw600dp-v13/values-sw600dp-v13.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-sw600dp\\values-sw600dp.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,11,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,364,434,504,583,899,1198,1269,1337",
+ "endColumns": "68,69,69,78,75,58,70,67,54",
+ "endOffsets": "359,429,499,578,654,953,1264,1332,1387"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10",
+ "startColumns": "4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,124,194,264,343,419,478,549,617",
+ "endColumns": "68,69,69,78,75,58,70,67,54",
+ "endOffsets": "119,189,259,338,414,473,544,612,667"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ta-rIN.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ta-rIN.json
new file mode 100644
index 00000000..e76f63d9
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ta-rIN.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-ta-rIN/values-ta-rIN.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ta-rIN\\values-ta-rIN.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,409,514,629,718,825,951,1053,1157,1254,1364,1466,1573",
+ "endColumns": "113,104,114,88,106,125,101,103,96,109,101,106,118",
+ "endOffsets": "404,509,624,713,820,946,1048,1152,1249,1359,1461,1568,1687"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,169,274,389,478,585,711,813,917,1014,1124,1226,1333",
+ "endColumns": "113,104,114,88,106,125,101,103,96,109,101,106,118",
+ "endOffsets": "164,269,384,473,580,706,808,912,1009,1119,1221,1328,1447"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-te-rIN.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-te-rIN.json
new file mode 100644
index 00000000..2db41e74
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-te-rIN.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-te-rIN/values-te-rIN.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-te-rIN\\values-te-rIN.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,409,518,629,719,824,949,1062,1170,1270,1381,1483,1600",
+ "endColumns": "113,108,110,89,104,124,112,107,99,110,101,116,126",
+ "endOffsets": "404,513,624,714,819,944,1057,1165,1265,1376,1478,1595,1722"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,169,278,389,479,584,709,822,930,1030,1141,1243,1360",
+ "endColumns": "113,108,110,89,104,124,112,107,99,110,101,116,126",
+ "endOffsets": "164,273,384,474,579,704,817,925,1025,1136,1238,1355,1482"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-th.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-th.json
new file mode 100644
index 00000000..1bf9eab2
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-th.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-th/values-th.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-th\\values-th.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,396,494,602,691,793,903,1011,1115,1213,1321,1426,1527",
+ "endColumns": "104,97,107,88,101,109,107,103,97,107,104,100,115",
+ "endOffsets": "391,489,597,686,788,898,1006,1110,1208,1316,1421,1522,1638"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,160,258,366,455,557,667,775,879,977,1085,1190,1291",
+ "endColumns": "104,97,107,88,101,109,107,103,97,107,104,100,115",
+ "endOffsets": "155,253,361,450,552,662,770,874,972,1080,1185,1286,1402"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tl.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tl.json
new file mode 100644
index 00000000..40b4297e
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tl.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-tl/values-tl.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-tl\\values-tl.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,410,518,635,723,829,950,1059,1170,1271,1381,1498,1606",
+ "endColumns": "118,107,116,87,105,120,108,110,100,109,116,107,122",
+ "endOffsets": "405,513,630,718,824,945,1054,1165,1266,1376,1493,1601,1724"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,174,282,399,487,593,714,823,934,1035,1145,1262,1370",
+ "endColumns": "118,107,116,87,105,120,108,110,100,109,116,107,122",
+ "endOffsets": "169,277,394,482,588,709,818,929,1030,1140,1257,1365,1488"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tr.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tr.json
new file mode 100644
index 00000000..58b7e736
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-tr.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-tr/values-tr.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-tr\\values-tr.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,396,495,607,697,803,923,1030,1135,1231,1338,1440,1548",
+ "endColumns": "104,98,111,89,105,119,106,104,95,106,101,107,118",
+ "endOffsets": "391,490,602,692,798,918,1025,1130,1226,1333,1435,1543,1662"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,160,259,371,461,567,687,794,899,995,1102,1204,1312",
+ "endColumns": "104,98,111,89,105,119,106,104,95,106,101,107,118",
+ "endOffsets": "155,254,366,456,562,682,789,894,990,1097,1199,1307,1426"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uk.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uk.json
new file mode 100644
index 00000000..1b2f0fe7
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uk.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-uk/values-uk.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-uk\\values-uk.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,401,503,609,695,803,921,1027,1134,1232,1340,1446,1555",
+ "endColumns": "109,101,105,85,107,117,105,106,97,107,105,108,123",
+ "endOffsets": "396,498,604,690,798,916,1022,1129,1227,1335,1441,1550,1674"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,165,267,373,459,567,685,791,898,996,1104,1210,1319",
+ "endColumns": "109,101,105,85,107,117,105,106,97,107,105,108,123",
+ "endOffsets": "160,262,368,454,562,680,786,893,991,1099,1205,1314,1438"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ur-rPK.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ur-rPK.json
new file mode 100644
index 00000000..a2114b2d
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-ur-rPK.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-ur-rPK/values-ur-rPK.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-ur-rPK\\values-ur-rPK.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,405,511,620,706,810,930,1038,1147,1249,1360,1460,1568",
+ "endColumns": "109,105,108,85,103,119,107,108,101,110,99,107,128",
+ "endOffsets": "400,506,615,701,805,925,1033,1142,1244,1355,1455,1563,1692"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,165,271,380,466,570,690,798,907,1009,1120,1220,1328",
+ "endColumns": "109,105,108,85,103,119,107,108,101,110,99,107,128",
+ "endOffsets": "160,266,375,461,565,685,793,902,1004,1115,1215,1323,1452"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uz-rUZ.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uz-rUZ.json
new file mode 100644
index 00000000..b1a070ee
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-uz-rUZ.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-uz-rUZ/values-uz-rUZ.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-uz-rUZ\\values-uz-rUZ.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,400,504,621,707,818,934,1043,1150,1249,1357,1462",
+ "endColumns": "104,103,116,85,110,115,108,106,98,107,104,104",
+ "endOffsets": "395,499,616,702,813,929,1038,1145,1244,1352,1457,1562"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,160,264,381,467,578,694,803,910,1009,1117,1222",
+ "endColumns": "104,103,116,85,110,115,108,106,98,107,104,104",
+ "endOffsets": "155,259,376,462,573,689,798,905,1004,1112,1217,1322"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v11.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v11.json
new file mode 100644
index 00000000..5c198e98
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v11.json
@@ -0,0 +1,28 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-v11/values-v11.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-v11\\values-v11.xml",
+ "from": {
+ "startLines": "4,10,16,22,28,34,42,43,44,49,56,58,60,67,68,69,120",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "301,720,1145,1573,1999,2428,3094,3183,3284,3692,4353,4460,4589,5194,5265,5348,9097",
+ "endLines": "9,15,21,27,33,39,42,43,48,53,57,59,64,67,68,119,171",
+ "endColumns": "12,12,12,12,12,12,88,100,12,12,12,12,12,70,82,12,12",
+ "endOffsets": "715,1140,1568,1994,2423,2848,3178,3279,3687,4107,4455,4584,4948,5260,5343,9092,12981"
+ },
+ "to": {
+ "startLines": "2,8,14,20,26,32,38,39,40,45,50,52,54,59,60,61,112",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,474,899,1327,1753,2182,2607,2696,2797,3205,3625,3732,3861,4225,4296,4379,8066",
+ "endLines": "7,13,19,25,31,37,38,39,44,49,51,53,58,59,60,111,163",
+ "endColumns": "12,12,12,12,12,12,88,100,12,12,12,12,12,70,82,12,12",
+ "endOffsets": "469,894,1322,1748,2177,2602,2691,2792,3200,3620,3727,3856,4220,4291,4374,8061,11888"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v12.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v12.json
new file mode 100644
index 00000000..d01602fc
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v12.json
@@ -0,0 +1,28 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-v12/values-v12.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-v12\\values-v12.xml",
+ "from": {
+ "startLines": "4,7,10,11",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "296,522,724,843",
+ "endLines": "6,9,10,11",
+ "endColumns": "12,12,118,94",
+ "endOffsets": "517,719,838,933"
+ },
+ "to": {
+ "startLines": "2,5,8,9",
+ "startColumns": "4,4,4,4",
+ "startOffsets": "55,281,483,602",
+ "endLines": "4,7,8,9",
+ "endColumns": "12,12,118,94",
+ "endOffsets": "276,478,597,692"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v14.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v14.json
new file mode 100644
index 00000000..d129e8b1
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v14.json
@@ -0,0 +1,28 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-v14/values-v14.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-v14\\values-v14.xml",
+ "from": {
+ "startLines": "4,11,12,13,19,27,28,29,32,33",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "301,818,889,972,1382,2040,2160,2223,2377,2440",
+ "endLines": "8,11,12,18,24,27,28,31,32,33",
+ "endColumns": "12,70,82,12,12,119,62,12,62,131",
+ "endOffsets": "572,884,967,1377,1799,2155,2218,2372,2435,2567"
+ },
+ "to": {
+ "startLines": "2,7,8,9,15,21,22,23,26,27",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,331,402,485,895,1317,1437,1500,1654,1717",
+ "endLines": "6,7,8,14,20,21,22,25,26,27",
+ "endColumns": "12,70,82,12,12,119,62,12,62,131",
+ "endOffsets": "326,397,480,890,1312,1432,1495,1649,1712,1844"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v17.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v17.json
new file mode 100644
index 00000000..eebd38bb
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v17.json
@@ -0,0 +1,28 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-v17/values-v17.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-v17\\values-v17.xml",
+ "from": {
+ "startLines": "4,7,11,15,18,21,24,28,32,35,38,41,45,48",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,468,696,1033,1191,1341,1513,1741,1983,2154,2328,2497,2770,2970",
+ "endLines": "6,10,14,17,20,23,27,31,34,37,40,44,47,50",
+ "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12",
+ "endOffsets": "463,691,1028,1186,1336,1508,1736,1978,2149,2323,2492,2765,2965,3213"
+ },
+ "to": {
+ "startLines": "2,5,9,13,16,19,22,26,30,33,36,39,43,46",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,228,456,793,951,1101,1273,1501,1743,1914,2088,2257,2530,2730",
+ "endLines": "4,8,12,15,18,21,25,29,32,35,38,42,45,48",
+ "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12,12",
+ "endOffsets": "223,451,788,946,1096,1268,1496,1738,1909,2083,2252,2525,2725,2973"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v18.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v18.json
new file mode 100644
index 00000000..1e8eb5b9
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v18.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-v18/values-v18.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-v18\\values-v18.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "4",
+ "startOffsets": "291",
+ "endColumns": "48",
+ "endOffsets": "335"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "48",
+ "endOffsets": "99"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v21.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v21.json
new file mode 100644
index 00000000..47b9574e
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-v21.json
@@ -0,0 +1,28 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-v21/values-v21.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-v21\\values-v21.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,19,21,25,26,27,30,32,36,37,38,39,42,44,46,48,50,52,54,56,58,62,65,66,68,72,73,74,75,76,125,128,177,182,184,186,188,191,193,194,195,196,197,198,199,200,201,202,203,205,207,209,211,215,217,218,219,220,222,226,228,230,231,232,237,238,239,243,250,257,267",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "301,392,495,598,703,810,919,1028,1137,1246,1355,1462,1565,1925,2080,2481,2586,2707,3049,3196,3583,3686,3805,3912,4256,4403,4558,4729,4878,5043,5200,5351,5500,5895,6248,6395,6548,6936,7011,7100,7187,7288,10772,10958,14454,14893,15016,15139,15252,15435,15566,15683,15772,15883,16010,16111,16206,16329,16458,16575,16668,16803,16946,17081,17200,17401,17520,17613,17724,17780,17887,18082,18193,18326,18421,18512,18821,18934,19051,19431,19784,20149,20834",
+ "endLines": "4,5,6,7,8,9,10,11,12,13,14,15,16,20,22,25,26,27,31,33,36,37,38,39,43,45,47,49,51,53,55,57,59,62,65,67,69,72,73,74,75,124,127,176,179,183,185,187,190,192,193,194,195,196,197,198,199,200,201,202,204,206,208,210,214,216,217,218,219,221,225,227,229,230,231,236,237,238,240,249,256,266,276",
+ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,12,12,12,111,146,12,12,74,88,86,100,12,12,12,12,12,12,12,12,12,116,88,110,126,100,94,122,128,116,92,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,12,112,116,12,12,12,12,12",
+ "endOffsets": "387,490,593,698,805,914,1023,1132,1241,1350,1457,1560,1679,2075,2230,2581,2702,2803,3191,3332,3681,3800,3907,4010,4398,4553,4724,4873,5038,5195,5346,5495,5644,6002,6390,6543,6690,7006,7095,7182,7283,10767,10953,14449,14647,15011,15134,15247,15430,15561,15678,15767,15878,16005,16106,16201,16324,16453,16570,16663,16798,16941,17076,17195,17396,17515,17608,17719,17775,17882,18077,18188,18321,18416,18507,18816,18929,19046,19185,19779,20144,20829,21515"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,15,17,19,20,21,22,24,26,27,28,29,30,32,34,36,38,40,42,44,46,48,49,50,52,54,55,56,57,58,107,110,159,162,164,166,168,171,173,174,175,176,177,178,179,180,181,182,183,185,187,189,191,195,197,198,199,200,202,206,208,210,211,212,217,218,219,221,228,235,245",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,146,249,352,457,564,673,782,891,1000,1109,1216,1319,1438,1593,1748,1853,1974,2075,2222,2363,2466,2585,2692,2795,2942,3097,3268,3417,3582,3739,3890,4039,4188,4300,4447,4600,4747,4822,4911,4998,5099,8367,8553,11833,12031,12154,12277,12390,12573,12704,12821,12910,13021,13148,13249,13344,13467,13596,13713,13806,13941,14084,14219,14338,14539,14658,14751,14862,14918,15025,15220,15331,15464,15559,15650,15959,16072,16189,16328,16681,17046,17674",
+ "endLines": "2,3,4,5,6,7,8,9,10,11,12,13,14,16,18,19,20,21,23,25,26,27,28,29,31,33,35,37,39,41,43,45,47,48,49,51,53,54,55,56,57,106,109,158,161,163,165,167,170,172,173,174,175,176,177,178,179,180,181,182,184,186,188,190,194,196,197,198,199,201,205,207,209,210,211,216,217,218,220,227,234,244,254",
+ "endColumns": "90,102,102,104,106,108,108,108,108,108,106,102,118,12,12,104,120,100,12,12,102,118,106,102,12,12,12,12,12,12,12,12,12,111,146,12,12,74,88,86,100,12,12,12,12,12,12,12,12,12,116,88,110,126,100,94,122,128,116,92,12,12,12,12,12,12,92,110,55,12,12,12,12,94,90,12,112,116,12,12,12,12,12",
+ "endOffsets": "141,244,347,452,559,668,777,886,995,1104,1211,1314,1433,1588,1743,1848,1969,2070,2217,2358,2461,2580,2687,2790,2937,3092,3263,3412,3577,3734,3885,4034,4183,4295,4442,4595,4742,4817,4906,4993,5094,8362,8548,11828,12026,12149,12272,12385,12568,12699,12816,12905,13016,13143,13244,13339,13462,13591,13708,13801,13936,14079,14214,14333,14534,14653,14746,14857,14913,15020,15215,15326,15459,15554,15645,15954,16067,16184,16323,16676,17041,17669,18298"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-vi.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-vi.json
new file mode 100644
index 00000000..ec241a47
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-vi.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-vi/values-vi.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-vi\\values-vi.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,405,513,622,706,809,928,1032,1141,1242,1347,1461,1566",
+ "endColumns": "113,107,108,83,102,118,103,108,100,104,113,104,119",
+ "endOffsets": "400,508,617,701,804,923,1027,1136,1237,1342,1456,1561,1681"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,169,277,386,470,573,692,796,905,1006,1111,1225,1330",
+ "endColumns": "113,107,108,83,102,118,103,108,100,104,113,104,119",
+ "endOffsets": "164,272,381,465,568,687,791,900,1001,1106,1220,1325,1445"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w360dp-v13.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w360dp-v13.json
new file mode 100644
index 00000000..ccf72354
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w360dp-v13.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-w360dp-v13/values-w360dp-v13.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-w360dp\\values-w360dp.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "4",
+ "startOffsets": "294",
+ "endColumns": "54",
+ "endOffsets": "344"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "54",
+ "endOffsets": "105"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w480dp-v13.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w480dp-v13.json
new file mode 100644
index 00000000..ce912fda
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w480dp-v13.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-w480dp-v13/values-w480dp-v13.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-w480dp\\values-w480dp.xml",
+ "from": {
+ "startLines": "4,7",
+ "startColumns": "4,4",
+ "startOffsets": "293,594",
+ "endColumns": "61,71",
+ "endOffsets": "350,661"
+ },
+ "to": {
+ "startLines": "2,3",
+ "startColumns": "4,4",
+ "startOffsets": "55,117",
+ "endColumns": "61,71",
+ "endOffsets": "112,184"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w500dp-v13.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w500dp-v13.json
new file mode 100644
index 00000000..40d11105
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w500dp-v13.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-w500dp-v13/values-w500dp-v13.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-w500dp\\values-w500dp.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "4",
+ "startOffsets": "294",
+ "endColumns": "54",
+ "endOffsets": "344"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "54",
+ "endOffsets": "105"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w600dp-v13.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w600dp-v13.json
new file mode 100644
index 00000000..a003a009
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w600dp-v13.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-w600dp-v13/values-w600dp-v13.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-w600dp\\values-w600dp.xml",
+ "from": {
+ "startLines": "4,5",
+ "startColumns": "4,4",
+ "startOffsets": "294,358",
+ "endColumns": "63,54",
+ "endOffsets": "353,408"
+ },
+ "to": {
+ "startLines": "2,3",
+ "startColumns": "4,4",
+ "startOffsets": "55,119",
+ "endColumns": "63,54",
+ "endOffsets": "114,169"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w720dp-v13.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w720dp-v13.json
new file mode 100644
index 00000000..c0476279
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-w720dp-v13.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-w720dp-v13/values-w720dp-v13.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-w720dp\\values-w720dp.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "4",
+ "startOffsets": "293",
+ "endColumns": "76",
+ "endOffsets": "365"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "76",
+ "endOffsets": "127"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-xlarge-land-v4.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-xlarge-land-v4.json
new file mode 100644
index 00000000..82da0596
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-xlarge-land-v4.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-xlarge-land-v4/values-xlarge-land-v4.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-xlarge-land\\values-xlarge-land.xml",
+ "from": {
+ "startLines": "4",
+ "startColumns": "4",
+ "startOffsets": "299",
+ "endColumns": "63",
+ "endOffsets": "358"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "55",
+ "endColumns": "63",
+ "endOffsets": "114"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-xlarge-v4.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-xlarge-v4.json
new file mode 100644
index 00000000..2c9f078d
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-xlarge-v4.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-xlarge-v4/values-xlarge-v4.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-xlarge\\values-xlarge.xml",
+ "from": {
+ "startLines": "4,7,8,9,10,11,12",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "293,609,673,740,807,873,939",
+ "endColumns": "76,63,66,66,65,65,54",
+ "endOffsets": "365,668,735,802,868,934,989"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8",
+ "startColumns": "4,4,4,4,4,4,4",
+ "startOffsets": "55,132,196,263,330,396,462",
+ "endColumns": "76,63,66,66,65,65,54",
+ "endOffsets": "127,191,258,325,391,457,512"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rCN.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rCN.json
new file mode 100644
index 00000000..7cd8b879
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rCN.json
@@ -0,0 +1,64 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-zh-rCN/values-zh-rCN.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values-zh-rCN\\arrays.xml",
+ "from": {
+ "startLines": "18",
+ "startColumns": "4",
+ "startOffsets": "712",
+ "endLines": "21",
+ "endColumns": "19",
+ "endOffsets": "817"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "105",
+ "endLines": "5",
+ "endColumns": "19",
+ "endOffsets": "210"
+ }
+ },
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values-zh-rCN\\strings.xml",
+ "from": {
+ "startLines": "121,71,70,69,68,19,20,21,112,113,120,119,26,77,78,76,75,74,90,89,88,80,60,29,30,81,72,114,67,63,38,44,49,39,59,58,57,53,52,50,51,54,55,45,66,56,64,43,48,47,46,62,42,61,40,41,65,28,34,36,33,35,32,31,25,24,97,96,99,111,104,103,105,106,108,107,98,102,100,101,95,109,110,118,116,115,117,27,79,87,92,91,93,86,85,84,83,22,23",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "6532,3495,3429,3356,3306,827,867,915,6083,6128,6478,6428,1199,3861,3929,3802,3737,3674,4592,4532,4469,4061,2877,1369,1422,4115,3568,6185,3247,3034,1798,2079,2325,1851,2817,2764,2713,2518,2470,2376,2424,2564,2611,2122,3188,2661,3077,2036,2278,2222,2167,2979,1992,2937,1901,1942,3129,1318,1623,1719,1576,1672,1529,1484,1148,1095,4967,4908,5108,6009,5419,5350,5483,5561,5744,5671,5042,5295,5165,5230,4859,5848,5931,6390,6283,6235,6328,1261,4006,4410,4705,4647,4772,4362,4317,4269,4218,963,1029",
+ "endLines": "123,71,70,69,68,19,20,21,112,113,120,119,26,77,78,76,75,74,90,89,88,80,60,29,30,81,72,114,67,63,38,44,49,39,59,58,57,53,52,50,51,54,55,45,66,56,64,43,48,47,46,62,42,61,40,41,65,28,34,36,33,35,32,31,25,24,97,96,99,111,104,103,105,106,108,107,98,102,100,101,95,109,110,118,116,115,117,27,79,87,92,91,93,86,85,84,83,22,23",
+ "endColumns": "14,72,65,72,49,39,47,47,44,56,53,49,61,67,76,58,64,62,54,59,62,53,59,52,61,84,80,49,58,42,52,42,50,49,59,52,50,45,47,47,45,46,49,44,58,51,51,42,46,55,54,54,43,41,40,49,58,50,48,48,46,46,46,44,50,52,74,58,56,73,63,68,77,109,103,72,65,54,64,64,48,82,77,37,44,47,61,56,54,58,66,57,61,47,44,47,50,65,65",
+ "endOffsets": "6704,3563,3490,3424,3351,862,910,958,6123,6180,6527,6473,1256,3924,4001,3856,3797,3732,4642,4587,4527,4110,2932,1417,1479,4195,3644,6230,3301,3072,1846,2117,2371,1896,2872,2812,2759,2559,2513,2419,2465,2606,2656,2162,3242,2708,3124,2074,2320,2273,2217,3029,2031,2974,1937,1987,3183,1364,1667,1763,1618,1714,1571,1524,1194,1143,5037,4962,5160,6078,5478,5414,5556,5666,5843,5739,5103,5345,5225,5290,4903,5926,6004,6423,6323,6278,6385,1313,4056,4464,4767,4700,4829,4405,4357,4312,4264,1024,1090"
+ },
+ "to": {
+ "startLines": "6,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "215,1649,1722,1788,1861,1911,1951,1999,2047,2092,2149,2203,2253,2315,2383,2460,2519,2584,2647,2702,2762,2825,2879,2939,2992,3054,3139,3220,3270,3329,3372,3425,3468,3519,3569,3629,3682,3733,3779,3827,3875,3921,3968,4018,4063,4122,4174,4226,4269,4316,4372,4427,4482,4526,4568,4609,4659,4718,4769,4818,4867,4914,4961,5008,5053,5104,5157,5232,5291,5348,5422,5486,5555,5633,5743,5847,5920,5986,6041,6106,6171,6220,6303,6381,6419,6464,6512,6574,6631,6686,6745,6812,6870,6932,6980,7025,7073,7124,7190",
+ "endLines": "8,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119",
+ "endColumns": "14,72,65,72,49,39,47,47,44,56,53,49,61,67,76,58,64,62,54,59,62,53,59,52,61,84,80,49,58,42,52,42,50,49,59,52,50,45,47,47,45,46,49,44,58,51,51,42,46,55,54,54,43,41,40,49,58,50,48,48,46,46,46,44,50,52,74,58,56,73,63,68,77,109,103,72,65,54,64,64,48,82,77,37,44,47,61,56,54,58,66,57,61,47,44,47,50,65,65",
+ "endOffsets": "379,1717,1783,1856,1906,1946,1994,2042,2087,2144,2198,2248,2310,2378,2455,2514,2579,2642,2697,2757,2820,2874,2934,2987,3049,3134,3215,3265,3324,3367,3420,3463,3514,3564,3624,3677,3728,3774,3822,3870,3916,3963,4013,4058,4117,4169,4221,4264,4311,4367,4422,4477,4521,4563,4604,4654,4713,4764,4813,4862,4909,4956,5003,5048,5099,5152,5227,5286,5343,5417,5481,5550,5628,5738,5842,5915,5981,6036,6101,6166,6215,6298,6376,6414,6459,6507,6569,6626,6681,6740,6807,6865,6927,6975,7020,7068,7119,7185,7251"
+ }
+ },
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-zh-rCN\\values-zh-rCN.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,391,486,586,668,765,871,967,1063,1158,1255,1350,1448",
+ "endColumns": "95,94,99,81,96,105,95,95,94,96,94,97,111",
+ "endOffsets": "386,481,581,663,760,866,962,1058,1153,1250,1345,1443,1555"
+ },
+ "to": {
+ "startLines": "9,10,11,12,13,14,15,16,17,18,19,20,21",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "384,480,575,675,757,854,960,1056,1152,1247,1344,1439,1537",
+ "endColumns": "95,94,99,81,96,105,95,95,94,96,94,97,111",
+ "endOffsets": "475,570,670,752,849,955,1051,1147,1242,1339,1434,1532,1644"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rHK.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rHK.json
new file mode 100644
index 00000000..7cb193ce
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rHK.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-zh-rHK/values-zh-rHK.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-zh-rHK\\values-zh-rHK.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,390,483,583,665,762,870,966,1062,1157,1254,1349,1447",
+ "endColumns": "94,92,99,81,96,107,95,95,94,96,94,97,112",
+ "endOffsets": "385,478,578,660,757,865,961,1057,1152,1249,1344,1442,1555"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,150,243,343,425,522,630,726,822,917,1014,1109,1207",
+ "endColumns": "94,92,99,81,96,107,95,95,94,96,94,97,112",
+ "endOffsets": "145,238,338,420,517,625,721,817,912,1009,1104,1202,1315"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rTW.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rTW.json
new file mode 100644
index 00000000..1bcbaaf9
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zh-rTW.json
@@ -0,0 +1,64 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-zh-rTW/values-zh-rTW.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values-zh-rTW\\strings.xml",
+ "from": {
+ "startLines": "122,72,71,70,69,19,20,21,112,113,121,120,26,76,77,75,74,73,89,88,87,79,61,29,30,80,37,114,68,64,39,45,50,40,60,59,58,54,53,51,52,55,56,46,67,57,65,44,49,48,47,63,43,62,41,42,66,28,34,36,33,35,32,31,25,24,96,95,98,110,103,102,104,105,107,106,97,101,99,100,94,108,109,119,117,116,118,27,78,86,91,90,92,85,84,83,82,22,23",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "6507,3575,3509,3436,3386,827,867,915,6057,6102,6453,6403,1199,3835,3903,3776,3710,3647,4565,4505,4442,4035,2957,1369,1422,4089,1768,6159,3327,3114,1878,2159,2405,1931,2897,2844,2793,2598,2550,2456,2504,2644,2691,2202,3268,2741,3157,2116,2358,2302,2247,3059,2072,3017,1981,2022,3209,1318,1623,1719,1576,1672,1529,1484,1148,1095,4940,4881,5081,5982,5392,5323,5456,5534,5717,5644,5015,5268,5138,5203,4832,5821,5904,6365,6258,6210,6303,1261,3980,4383,4678,4620,4745,4335,4290,4242,4191,963,1029",
+ "endLines": "124,72,71,70,69,19,20,21,112,113,121,120,26,76,77,75,74,73,89,88,87,79,61,29,30,80,37,114,68,64,39,45,50,40,60,59,58,54,53,51,52,55,56,46,67,57,65,44,49,48,47,63,43,62,41,42,66,28,34,36,33,35,32,31,25,24,96,95,98,110,103,102,104,105,107,106,97,101,99,100,94,108,109,119,117,116,118,27,78,86,91,90,92,85,84,83,82,22,23",
+ "endColumns": "14,71,65,72,49,39,47,47,44,56,53,49,61,67,76,58,65,62,54,59,62,53,59,52,61,83,79,49,58,42,52,42,50,49,59,52,50,45,47,47,45,46,49,44,58,51,51,42,46,55,54,54,43,41,40,49,58,50,48,48,46,46,46,44,50,52,74,58,56,73,63,68,77,109,103,72,65,54,64,64,48,82,77,37,44,47,61,56,54,58,66,57,61,47,44,47,50,65,65",
+ "endOffsets": "6679,3642,3570,3504,3431,862,910,958,6097,6154,6502,6448,1256,3898,3975,3830,3771,3705,4615,4560,4500,4084,3012,1417,1479,4168,1843,6204,3381,3152,1926,2197,2451,1976,2952,2892,2839,2639,2593,2499,2545,2686,2736,2242,3322,2788,3204,2154,2400,2353,2297,3109,2111,3054,2017,2067,3263,1364,1667,1763,1618,1714,1571,1524,1194,1143,5010,4935,5133,6051,5451,5387,5529,5639,5816,5712,5076,5318,5198,5263,4876,5899,5977,6398,6298,6253,6360,1313,4030,4437,4740,4673,4802,4378,4330,4285,4237,1024,1090"
+ },
+ "to": {
+ "startLines": "6,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "215,1651,1723,1789,1862,1912,1952,2000,2048,2093,2150,2204,2254,2316,2384,2461,2520,2586,2649,2704,2764,2827,2881,2941,2994,3056,3140,3220,3270,3329,3372,3425,3468,3519,3569,3629,3682,3733,3779,3827,3875,3921,3968,4018,4063,4122,4174,4226,4269,4316,4372,4427,4482,4526,4568,4609,4659,4718,4769,4818,4867,4914,4961,5008,5053,5104,5157,5232,5291,5348,5422,5486,5555,5633,5743,5847,5920,5986,6041,6106,6171,6220,6303,6381,6419,6464,6512,6574,6631,6686,6745,6812,6870,6932,6980,7025,7073,7124,7190",
+ "endLines": "8,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119",
+ "endColumns": "14,71,65,72,49,39,47,47,44,56,53,49,61,67,76,58,65,62,54,59,62,53,59,52,61,83,79,49,58,42,52,42,50,49,59,52,50,45,47,47,45,46,49,44,58,51,51,42,46,55,54,54,43,41,40,49,58,50,48,48,46,46,46,44,50,52,74,58,56,73,63,68,77,109,103,72,65,54,64,64,48,82,77,37,44,47,61,56,54,58,66,57,61,47,44,47,50,65,65",
+ "endOffsets": "379,1718,1784,1857,1907,1947,1995,2043,2088,2145,2199,2249,2311,2379,2456,2515,2581,2644,2699,2759,2822,2876,2936,2989,3051,3135,3215,3265,3324,3367,3420,3463,3514,3564,3624,3677,3728,3774,3822,3870,3916,3963,4013,4058,4117,4169,4221,4264,4311,4367,4422,4477,4521,4563,4604,4654,4713,4764,4813,4862,4909,4956,5003,5048,5099,5152,5227,5286,5343,5417,5481,5550,5628,5738,5842,5915,5981,6036,6101,6166,6215,6298,6376,6414,6459,6507,6569,6626,6681,6740,6807,6865,6927,6975,7020,7068,7119,7185,7251"
+ }
+ },
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-zh-rTW\\values-zh-rTW.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "295,390,483,583,665,762,870,966,1062,1157,1254,1349,1449",
+ "endColumns": "94,92,99,81,96,107,95,95,94,96,94,99,112",
+ "endOffsets": "385,478,578,660,757,865,961,1057,1152,1249,1344,1444,1557"
+ },
+ "to": {
+ "startLines": "9,10,11,12,13,14,15,16,17,18,19,20,21",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "384,479,572,672,754,851,959,1055,1151,1246,1343,1438,1538",
+ "endColumns": "94,92,99,81,96,107,95,95,94,96,94,99,112",
+ "endOffsets": "474,567,667,749,846,954,1050,1146,1241,1338,1433,1533,1646"
+ }
+ },
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values-zh-rTW\\arrays.xml",
+ "from": {
+ "startLines": "18",
+ "startColumns": "4",
+ "startOffsets": "712",
+ "endLines": "21",
+ "endColumns": "19",
+ "endOffsets": "817"
+ },
+ "to": {
+ "startLines": "2",
+ "startColumns": "4",
+ "startOffsets": "105",
+ "endLines": "5",
+ "endColumns": "19",
+ "endOffsets": "210"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zu.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zu.json
new file mode 100644
index 00000000..e06dc18d
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values-zu.json
@@ -0,0 +1,26 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values-zu/values-zu.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values-zu\\values-zu.xml",
+ "from": {
+ "startLines": "4,5,6,7,8,9,10,11,12,13,14,15,16",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "291,399,506,620,708,811,938,1042,1148,1246,1353,1459,1565",
+ "endColumns": "107,106,113,87,102,126,103,105,97,106,105,105,119",
+ "endOffsets": "394,501,615,703,806,933,1037,1143,1241,1348,1454,1560,1680"
+ },
+ "to": {
+ "startLines": "2,3,4,5,6,7,8,9,10,11,12,13,14",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "55,163,270,384,472,575,702,806,912,1010,1117,1223,1329",
+ "endColumns": "107,106,113,87,102,126,103,105,97,106,105,105,119",
+ "endOffsets": "158,265,379,467,570,697,801,907,1005,1112,1218,1324,1444"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values.json
new file mode 100644
index 00000000..548b2303
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/multi-v2/values.json
@@ -0,0 +1,157 @@
+{
+ "logs": [
+ {
+ "outputFile": "net.micode.notes.app-mergeDebugResources-3:/values/values.xml",
+ "map": [
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values\\themes.xml",
+ "from": {
+ "startLines": "2,4,10",
+ "startColumns": "4,4,4",
+ "startOffsets": "17,81,376",
+ "endLines": "2,8,13",
+ "endColumns": "62,12,12",
+ "endOffsets": "75,370,598"
+ },
+ "to": {
+ "startLines": "1487,1488,1498",
+ "startColumns": "4,4,4",
+ "startOffsets": "95821,95883,96649",
+ "endLines": "1487,1492,1501",
+ "endColumns": "61,12,12",
+ "endOffsets": "95878,96172,96871"
+ }
+ },
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values\\styles.xml",
+ "from": {
+ "startLines": "54,59,68,64,24,29,34,39,44,19,49,73,77",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "2066,2275,2648,2487,897,1081,1267,1453,1657,713,1864,2860,3036",
+ "endLines": "57,62,71,66,27,32,37,42,47,22,52,75,80",
+ "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12",
+ "endOffsets": "2269,2481,2854,2642,1075,1261,1447,1651,1858,891,2060,3030,3260"
+ },
+ "to": {
+ "startLines": "1214,1218,1222,1226,1437,1441,1445,1449,1453,1457,1461,1592,1595",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "76586,76794,77005,77215,93007,93190,93375,93560,93763,93969,94152,103874,104049",
+ "endLines": "1217,1221,1225,1228,1440,1444,1448,1452,1456,1460,1464,1594,1598",
+ "endColumns": "12,12,12,12,12,12,12,12,12,12,12,12,12",
+ "endOffsets": "76789,77000,77210,77370,93185,93370,93555,93758,93964,94147,94348,104044,104273"
+ }
+ },
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values\\arrays.xml",
+ "from": {
+ "startLines": "19,26",
+ "startColumns": "4,4",
+ "startOffsets": "739,1047",
+ "endLines": "24,29",
+ "endColumns": "19,19",
+ "endOffsets": "1041,1162"
+ },
+ "to": {
+ "startLines": "2,8",
+ "startColumns": "4,4",
+ "startOffsets": "105,300",
+ "endLines": "7,11",
+ "endColumns": "19,19",
+ "endOffsets": "295,415"
+ }
+ },
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values\\colors.xml",
+ "from": {
+ "startLines": "23,19,20,21,22,18",
+ "startColumns": "4,4,4,4,4,4",
+ "startOffsets": "975,769,820,871,923,712",
+ "endColumns": "49,50,50,51,51,56",
+ "endOffsets": "1020,815,866,918,970,764"
+ },
+ "to": {
+ "startLines": "33,50,51,52,53,79",
+ "startColumns": "4,4,4,4,4,4",
+ "startOffsets": "1797,3113,3164,3215,3267,5004",
+ "endColumns": "49,50,50,51,51,56",
+ "endOffsets": "1842,3159,3210,3262,3314,5056"
+ }
+ },
+ {
+ "source": "C:\\Users\\huigenb\\.gradle\\caches\\transforms-3\\1dbc0f7261c89eb9b9e5c125a3979522\\transformed\\appcompat-v7-22.2.1\\res\\values\\values.xml",
+ "from": {
+ "startLines": "4,5,6,7,10,11,12,15,16,17,20,23,24,25,26,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,103,104,105,106,107,108,109,112,113,114,117,118,119,120,121,124,125,126,127,128,131,134,135,136,137,138,139,140,141,144,145,148,149,150,151,152,153,156,157,160,161,162,163,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,185,186,187,188,191,192,195,196,197,200,203,204,205,206,207,208,209,210,211,214,215,218,221,222,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,245,246,247,248,251,258,259,263,267,272,280,287,291,295,300,304,308,312,316,320,324,328,332,338,340,344,348,352,358,363,367,372,376,380,384,388,392,398,403,406,409,412,415,418,421,424,426,428,429,430,433,435,439,441,446,447,451,457,461,462,464,475,476,480,486,490,491,492,496,523,527,555,701,723,869,893,900,905,926,931,936,946,955,966,970,977,985,992,993,1002,1005,1008,1013,1017,1020,1023,1027,1031,1039,1044,1051,1057,1058,1062,1067,1069,1071,1074,1077,1079,1083,1090,1093,1096,1100,1102,1106,1108,1114,1116,1120,1132,1138,1143,1158,1161,1166,1176,1183,1221,1260,1270,1281,1283,1287,1291,1294,1297,1300,1303,1307,1310,1313,1316,1320,1323,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1345,1347,1348,1349,1350,1352,1354,1355,1356,1357,1358,1359,1360,1362,1364,1366,1368,1370,1372,1373,1375,1376,1378,1380,1382,1383,1384,1385,1386,1387,1388,1389,1391,1393,1397,1398,1399,1400,1401,1402,1404,1405,1406,1407,1408,1409,1411,1415,1419,1420,1421,1422,1423,1426,1428,1430,1432,1434,1436,1437,1438,1439,1441,1443,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1458,1459,1460,1462,1464,1465,1467,1468,1470,1472,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1486,1488,1489,1490,1492,1493,1494,1496,1498,1500,1502,1504,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "286,341,386,435,707,762,825,1133,1195,1268,1567,1877,1958,2019,2094,2411,2488,2566,2636,2707,2768,2830,2907,2985,3091,3197,3276,3356,3413,3471,3545,3620,3685,3751,3818,3886,3990,4096,4176,4257,4316,4375,4434,4493,4552,4615,4679,4737,4796,4867,4939,5011,5084,5141,5199,5272,5346,5420,5495,5567,5640,5710,21489,21558,21628,21698,21775,21854,21930,22239,22303,22368,22678,22755,22830,22899,22967,23276,23342,23439,23504,23573,23904,24195,24253,24310,24369,24441,24509,24577,24636,24940,25030,25353,25413,25479,25546,25612,25682,25987,26040,26385,26443,26508,26572,26862,26923,26984,27045,27107,27171,27235,27299,27364,27427,27487,27548,27607,27667,27729,27800,27860,28160,28227,28295,28363,28672,28758,29077,29139,29200,29489,29790,29847,29895,29944,29995,30029,30076,30125,30171,30435,30499,30793,31080,31140,31443,31517,31595,31688,31758,31836,31890,31960,32045,32097,32170,32244,32313,32388,32462,32536,32625,32695,32998,33076,33166,33254,33587,34088,34177,34424,34705,34990,35625,36102,36324,36546,36814,37041,37271,37501,37731,37961,38188,38427,38653,39135,39265,39637,39867,40115,40571,40854,41062,41435,41662,41908,42133,42382,42603,43085,43380,43602,43840,44054,44284,44507,44722,44930,45054,45178,45283,45400,45614,45760,46137,46223,46571,46659,46889,47291,47524,47606,47704,48321,48421,48657,49065,49304,49398,49456,49693,51739,51981,54159,63438,64705,74094,75612,76148,76478,77601,77857,78093,78640,79134,79807,80022,80550,81114,81489,81607,82145,82302,82446,82766,82936,83077,83206,83505,83808,84367,84629,84979,85332,85426,85732,85994,86119,86246,86485,86696,86815,87008,87463,87644,87766,88025,88138,88325,88427,88871,88995,89280,90167,90461,90791,91711,91883,92219,92885,93407,96296,99326,99966,100826,100939,101168,101506,101666,101818,101989,102156,102399,102569,102742,102913,103187,103386,103865,103949,104045,104141,104239,104339,104441,104543,104645,104747,104849,104949,105045,105157,105286,105409,105563,105717,105815,105929,106023,106163,106297,106393,106505,106605,106721,106817,106929,107069,107217,107381,107523,107681,107831,107972,108116,108251,108387,108529,108671,108783,108923,108991,109064,109138,109211,109285,109431,109575,109945,110011,110101,110181,110273,110371,110481,110559,110665,110757,110861,110971,111093,111256,111413,111493,111593,111683,111793,112117,112217,112329,112443,112559,112675,112769,112883,113001,113103,113223,113345,113427,113531,113651,113777,113871,113959,114071,114187,114309,114421,114596,114712,114798,114910,115034,115101,115227,115295,115423,115567,115695,115764,115859,115974,116087,116186,116295,116406,116517,116618,116723,116835,116965,117056,117179,117291,117377,117481,117589,117689,117807,117911,118015,118141,118229,118319,118429,118513,118567,118689,118795,118905,118989,5781,7384,7488,7589,7636,7884,8076,8426,8585,9014,9546,9767,9926,10185,11009,11402,11548,11676,12457,13042,13513,13731,19679,20604,21095",
+ "endLines": "4,5,6,7,10,11,12,15,16,17,20,23,24,25,26,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,103,104,105,106,107,108,109,112,113,114,117,118,119,120,121,124,125,126,127,128,131,134,135,136,137,138,139,140,141,144,145,148,149,150,151,152,153,156,157,160,161,162,163,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,185,186,187,188,191,192,195,196,197,200,203,204,205,206,207,208,209,210,211,214,215,218,221,222,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,245,246,247,248,257,258,262,266,271,277,286,290,294,299,303,307,311,315,319,323,327,331,335,339,341,347,351,355,362,366,369,375,379,383,387,391,395,402,405,408,411,414,417,420,423,425,427,428,429,432,434,436,440,445,446,450,456,460,461,463,474,475,479,485,489,490,491,495,522,526,554,700,722,868,890,899,904,925,930,935,945,954,965,969,976,984,991,992,1001,1004,1007,1012,1016,1019,1022,1026,1030,1038,1043,1050,1056,1057,1061,1066,1068,1070,1073,1076,1078,1082,1089,1092,1095,1099,1101,1105,1107,1113,1115,1119,1131,1137,1142,1157,1160,1165,1175,1180,1220,1259,1269,1278,1282,1286,1290,1293,1296,1299,1302,1306,1309,1312,1315,1319,1322,1325,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1344,1346,1347,1348,1349,1351,1353,1354,1355,1356,1357,1358,1359,1361,1363,1365,1367,1369,1371,1372,1374,1375,1377,1379,1381,1382,1383,1384,1385,1386,1387,1388,1390,1392,1394,1397,1398,1399,1400,1401,1403,1404,1405,1406,1407,1408,1410,1414,1418,1419,1420,1421,1422,1423,1427,1429,1431,1433,1435,1436,1437,1438,1440,1442,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1457,1458,1459,1461,1463,1464,1466,1467,1469,1471,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1485,1487,1488,1489,1491,1492,1493,1495,1497,1499,1501,1503,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100",
+ "endColumns": "54,44,48,40,54,62,75,61,72,67,77,80,60,74,75,76,77,69,70,60,61,76,77,105,105,78,79,56,57,73,74,64,65,66,67,103,105,79,80,58,58,58,58,58,62,63,57,58,70,71,71,72,56,57,72,73,73,74,71,72,69,70,68,69,69,76,78,75,76,63,64,68,76,74,68,67,76,65,96,64,68,98,58,57,56,58,71,67,67,58,62,89,90,59,65,66,65,69,63,52,112,57,64,63,48,60,60,60,61,63,63,63,64,62,59,60,58,59,61,70,59,67,66,67,67,67,85,86,61,60,56,71,56,47,48,50,33,46,48,45,31,63,61,54,59,69,73,77,92,69,77,53,69,84,51,72,73,68,74,73,73,88,69,70,77,89,87,95,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,57,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,12,12,97,113,93,12,12,95,111,99,115,95,111,12,12,12,12,12,12,140,12,134,12,12,12,111,139,67,72,73,72,73,12,12,12,65,89,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,91,12,12,12,12,12,93,113,117,12,12,12,81,103,119,125,93,87,111,115,121,111,12,115,85,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,12,12,90,122,12,85,103,12,12,12,12,12,12,87,89,109,83,53,121,105,109,83,125,1602,103,100,46,247,191,349,158,428,531,220,158,258,823,392,145,127,780,584,470,217,5947,924,490,152",
+ "endOffsets": "336,381,430,471,757,820,896,1190,1263,1331,1640,1953,2014,2089,2165,2483,2561,2631,2702,2763,2825,2902,2980,3086,3192,3271,3351,3408,3466,3540,3615,3680,3746,3813,3881,3985,4091,4171,4252,4311,4370,4429,4488,4547,4610,4674,4732,4791,4862,4934,5006,5079,5136,5194,5267,5341,5415,5490,5562,5635,5705,5776,21553,21623,21693,21770,21849,21925,22002,22298,22363,22432,22750,22825,22894,22962,23039,23337,23434,23499,23568,23667,23958,24248,24305,24364,24436,24504,24572,24631,24694,25025,25116,25408,25474,25541,25607,25677,25741,26035,26148,26438,26503,26567,26616,26918,26979,27040,27102,27166,27230,27294,27359,27422,27482,27543,27602,27662,27724,27795,27855,27923,28222,28290,28358,28426,28753,28840,29134,29195,29252,29556,29842,29890,29939,29990,30024,30071,30120,30166,30198,30494,30556,30843,31135,31205,31512,31590,31683,31753,31831,31885,31955,32040,32092,32165,32239,32308,32383,32457,32531,32620,32690,32761,33071,33161,33249,33345,34083,34172,34419,34700,34985,35378,36097,36319,36541,36809,37036,37266,37496,37726,37956,38183,38422,38648,38893,39260,39390,39862,40110,40329,40849,41057,41188,41657,41903,42128,42377,42598,42843,43375,43597,43835,44049,44279,44502,44717,44925,45049,45173,45278,45395,45609,45755,45895,46218,46566,46654,46884,47286,47519,47601,47699,48316,48416,48652,49060,49299,49393,49451,49688,51734,51976,54154,63433,64700,74089,75370,76143,76473,77596,77852,78088,78635,79129,79802,80017,80545,81109,81484,81602,82140,82297,82441,82761,82931,83072,83201,83500,83803,84362,84624,84974,85327,85421,85727,85989,86114,86241,86480,86691,86810,87003,87458,87639,87761,88020,88133,88320,88422,88866,88990,89275,90162,90456,90786,91706,91878,92214,92880,93165,96291,99321,99961,100585,100934,101163,101501,101661,101813,101984,102151,102394,102564,102737,102908,103182,103381,103628,103944,104040,104136,104234,104334,104436,104538,104640,104742,104844,104944,105040,105152,105281,105404,105558,105712,105810,105924,106018,106158,106292,106388,106500,106600,106716,106812,106924,107064,107212,107376,107518,107676,107826,107967,108111,108246,108382,108524,108666,108778,108918,108986,109059,109133,109206,109280,109426,109570,109708,110006,110096,110176,110268,110366,110476,110554,110660,110752,110856,110966,111088,111251,111408,111488,111588,111678,111788,111880,112212,112324,112438,112554,112670,112764,112878,112996,113098,113218,113340,113422,113526,113646,113772,113866,113954,114066,114182,114304,114416,114591,114707,114793,114905,115029,115096,115222,115290,115418,115562,115690,115759,115854,115969,116082,116181,116290,116401,116512,116613,116718,116830,116960,117051,117174,117286,117372,117476,117584,117684,117802,117906,118010,118136,118224,118314,118424,118508,118562,118684,118790,118900,118984,119110,7379,7483,7584,7631,7879,8071,8421,8580,9009,9541,9762,9921,10180,11004,11397,11543,11671,12452,13037,13508,13726,19674,20599,21090,21243"
+ },
+ "to": {
+ "startLines": "12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,284,298,299,300,301,302,309,310,314,318,323,329,336,340,344,349,353,357,361,365,369,373,377,381,385,387,389,393,397,401,406,410,413,417,421,425,429,433,437,442,445,448,451,454,457,460,463,465,467,468,469,472,474,476,478,483,484,488,494,498,499,501,512,513,517,523,527,528,529,533,560,564,592,737,759,904,926,933,938,959,964,969,979,988,999,1003,1010,1018,1025,1026,1035,1038,1041,1046,1050,1053,1056,1060,1064,1072,1077,1084,1090,1091,1095,1100,1102,1104,1107,1110,1112,1116,1123,1126,1129,1133,1135,1139,1141,1147,1149,1153,1165,1171,1176,1191,1194,1199,1209,1229,1267,1306,1316,1325,1327,1331,1335,1338,1341,1344,1347,1351,1354,1357,1360,1364,1367,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1387,1389,1390,1391,1392,1394,1396,1397,1398,1399,1400,1401,1402,1404,1406,1408,1410,1412,1414,1415,1417,1418,1420,1422,1424,1425,1426,1427,1428,1429,1430,1431,1433,1435,1465,1466,1467,1468,1469,1470,1472,1473,1474,1475,1476,1477,1479,1483,1493,1494,1495,1496,1497,1502,1504,1506,1508,1510,1512,1513,1514,1515,1517,1519,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1534,1535,1536,1538,1540,1541,1543,1544,1546,1548,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1562,1564,1565,1566,1568,1569,1570,1572,1574,1576,1578,1580,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1599,1600,1601,1602,1603,1604,1605,1606,1607,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "420,475,520,569,610,665,728,804,866,939,1007,1085,1166,1227,1302,1378,1455,1533,1603,1674,1735,1847,1924,2002,2108,2214,2293,2373,2430,2488,2562,2637,2702,2768,2835,2903,3007,3319,3399,3480,3539,3598,3657,3716,3775,3838,3902,3960,4019,4090,4162,4234,4307,4364,4422,4495,4569,4643,4718,4790,4863,4933,5061,5130,5200,5270,5347,5426,5502,5579,5643,5708,5777,5854,5929,5998,6066,6143,6209,6306,6371,6440,6539,6598,6656,6713,6772,6844,6912,6980,7039,7102,7192,7283,7343,7409,7476,7542,7612,7676,7729,7842,7900,7965,8029,8078,8139,8200,8261,8323,8387,8451,8515,8580,8643,8703,8764,8823,8883,8945,9016,9076,9144,9211,9279,9347,9415,9501,9588,9650,9711,10030,10102,10159,10207,10256,10307,10341,10388,10437,10483,10515,10579,10641,10696,10756,11178,11252,11330,11423,11493,11571,11625,11695,11780,11832,11905,11979,12048,12123,12197,12271,12360,18731,19773,19851,19941,20029,20125,20626,20715,20962,21243,21528,21921,22398,22620,22842,23110,23337,23567,23797,24027,24257,24484,24723,24949,25194,25324,25454,25684,25932,26151,26434,26642,26773,27000,27246,27471,27720,27941,28186,28481,28703,28941,29155,29385,29608,29823,30031,30155,30279,30384,30501,30715,30861,31001,31087,31435,31523,31753,32155,32388,32470,32568,33160,33260,33496,33904,34143,34237,34295,34532,36550,36792,38942,47656,48923,57747,59028,59564,59894,61017,61273,61509,62056,62550,63223,63438,63966,64530,64905,65023,65561,65718,65862,66182,66352,66493,66622,66921,67224,67783,68045,68395,68748,68842,69148,69410,69535,69662,69901,70112,70231,70424,70879,71060,71182,71441,71554,71741,71843,72287,72411,72696,73583,73877,74207,75127,75299,75635,76301,77375,80202,83170,83758,84352,84465,84694,85032,85192,85344,85515,85682,85925,86095,86268,86439,86713,86912,87159,87243,87339,87435,87533,87633,87735,87837,87939,88041,88143,88243,88339,88451,88580,88703,88857,89011,89109,89223,89317,89457,89591,89687,89799,89899,90015,90111,90223,90363,90511,90675,90817,90975,91125,91266,91410,91545,91681,91823,91965,92077,92217,92285,92358,92432,92505,92579,92725,92869,94353,94419,94509,94589,94681,94779,94889,94967,95073,95165,95269,95379,95501,95664,96177,96257,96357,96447,96557,96876,96976,97088,97202,97318,97434,97528,97642,97760,97862,97982,98104,98186,98290,98410,98536,98630,98718,98830,98946,99068,99180,99355,99471,99557,99669,99793,99860,99986,100054,100182,100326,100454,100523,100618,100733,100846,100945,101054,101165,101276,101377,101482,101594,101724,101815,101938,102050,102136,102240,102348,102448,102566,102670,102774,102900,102988,103078,103188,103272,103326,103448,103554,103664,103748,104278,105881,105985,106086,106133,106381,106573,106923,107082,107705,108237,108458,108617,108876,109700,110093,110239,110367,111148,111733,112204,112422,118370,119295,119786",
+ "endLines": "12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,284,298,299,300,301,308,309,313,317,322,328,335,339,343,348,352,356,360,364,368,372,376,380,384,386,388,392,396,400,405,409,412,416,420,424,428,432,436,441,444,447,450,453,456,459,462,464,466,467,468,471,473,475,477,482,483,487,493,497,498,500,511,512,516,522,526,527,528,532,559,563,591,736,758,903,925,932,937,958,963,968,978,987,998,1002,1009,1017,1024,1025,1034,1037,1040,1045,1049,1052,1055,1059,1063,1071,1076,1083,1089,1090,1094,1099,1101,1103,1106,1109,1111,1115,1122,1125,1128,1132,1134,1138,1140,1146,1148,1152,1164,1170,1175,1190,1193,1198,1208,1213,1266,1305,1315,1324,1326,1330,1334,1337,1340,1343,1346,1350,1353,1356,1359,1363,1366,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1386,1388,1389,1390,1391,1393,1395,1396,1397,1398,1399,1400,1401,1403,1405,1407,1409,1411,1413,1414,1416,1417,1419,1421,1423,1424,1425,1426,1427,1428,1429,1430,1432,1434,1436,1465,1466,1467,1468,1469,1471,1472,1473,1474,1475,1476,1478,1482,1486,1493,1494,1495,1496,1497,1503,1505,1507,1509,1511,1512,1513,1514,1516,1518,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1533,1534,1535,1537,1539,1540,1542,1543,1545,1547,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1561,1563,1564,1565,1567,1568,1569,1571,1573,1575,1577,1579,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1599,1600,1601,1602,1603,1604,1605,1606,1607,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627",
+ "endColumns": "54,44,48,40,54,62,75,61,72,67,77,80,60,74,75,76,77,69,70,60,61,76,77,105,105,78,79,56,57,73,74,64,65,66,67,103,105,79,80,58,58,58,58,58,62,63,57,58,70,71,71,72,56,57,72,73,73,74,71,72,69,70,68,69,69,76,78,75,76,63,64,68,76,74,68,67,76,65,96,64,68,98,58,57,56,58,71,67,67,58,62,89,90,59,65,66,65,69,63,52,112,57,64,63,48,60,60,60,61,63,63,63,64,62,59,60,58,59,61,70,59,67,66,67,67,67,85,86,61,60,56,71,56,47,48,50,33,46,48,45,31,63,61,54,59,69,73,77,92,69,77,53,69,84,51,72,73,68,74,73,73,88,69,70,77,89,87,95,12,88,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,104,116,12,12,12,12,12,87,12,12,12,81,12,12,99,12,12,12,93,57,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,117,12,12,12,12,12,12,12,12,12,12,12,12,12,93,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,83,95,95,97,99,101,101,101,101,101,99,95,111,128,122,12,12,97,113,93,12,12,95,111,99,115,95,111,12,12,12,12,12,12,140,12,134,12,12,12,111,139,67,72,73,72,73,12,12,12,65,89,79,91,97,12,77,105,91,103,109,12,12,12,79,99,89,109,91,12,12,12,12,12,93,113,117,12,12,12,81,103,119,125,93,87,111,115,121,111,12,115,85,12,12,66,12,67,12,12,12,68,94,114,112,98,108,110,110,100,104,12,12,90,122,12,85,103,12,12,12,12,12,12,87,89,109,83,53,121,105,109,83,125,1602,103,100,46,247,191,349,158,428,531,220,158,258,823,392,145,127,780,584,470,217,5947,924,490,152",
+ "endOffsets": "470,515,564,605,660,723,799,861,934,1002,1080,1161,1222,1297,1373,1450,1528,1598,1669,1730,1792,1919,1997,2103,2209,2288,2368,2425,2483,2557,2632,2697,2763,2830,2898,3002,3108,3394,3475,3534,3593,3652,3711,3770,3833,3897,3955,4014,4085,4157,4229,4302,4359,4417,4490,4564,4638,4713,4785,4858,4928,4999,5125,5195,5265,5342,5421,5497,5574,5638,5703,5772,5849,5924,5993,6061,6138,6204,6301,6366,6435,6534,6593,6651,6708,6767,6839,6907,6975,7034,7097,7187,7278,7338,7404,7471,7537,7607,7671,7724,7837,7895,7960,8024,8073,8134,8195,8256,8318,8382,8446,8510,8575,8638,8698,8759,8818,8878,8940,9011,9071,9139,9206,9274,9342,9410,9496,9583,9645,9706,9763,10097,10154,10202,10251,10302,10336,10383,10432,10478,10510,10574,10636,10691,10751,10821,11247,11325,11418,11488,11566,11620,11690,11775,11827,11900,11974,12043,12118,12192,12266,12355,12425,18797,19846,19936,20024,20120,20621,20710,20957,21238,21523,21916,22393,22615,22837,23105,23332,23562,23792,24022,24252,24479,24718,24944,25189,25319,25449,25679,25927,26146,26429,26637,26768,26995,27241,27466,27715,27936,28181,28476,28698,28936,29150,29380,29603,29818,30026,30150,30274,30379,30496,30710,30856,30996,31082,31430,31518,31748,32150,32383,32465,32563,33155,33255,33491,33899,34138,34232,34290,34527,36545,36787,38937,47651,48918,57742,59023,59559,59889,61012,61268,61504,62051,62545,63218,63433,63961,64525,64900,65018,65556,65713,65857,66177,66347,66488,66617,66916,67219,67778,68040,68390,68743,68837,69143,69405,69530,69657,69896,70107,70226,70419,70874,71055,71177,71436,71549,71736,71838,72282,72406,72691,73578,73872,74202,75122,75294,75630,76296,76581,80197,83165,83753,84347,84460,84689,85027,85187,85339,85510,85677,85920,86090,86263,86434,86708,86907,87154,87238,87334,87430,87528,87628,87730,87832,87934,88036,88138,88238,88334,88446,88575,88698,88852,89006,89104,89218,89312,89452,89586,89682,89794,89894,90010,90106,90218,90358,90506,90670,90812,90970,91120,91261,91405,91540,91676,91818,91960,92072,92212,92280,92353,92427,92500,92574,92720,92864,93002,94414,94504,94584,94676,94774,94884,94962,95068,95160,95264,95374,95496,95659,95816,96252,96352,96442,96552,96644,96971,97083,97197,97313,97429,97523,97637,97755,97857,97977,98099,98181,98285,98405,98531,98625,98713,98825,98941,99063,99175,99350,99466,99552,99664,99788,99855,99981,100049,100177,100321,100449,100518,100613,100728,100841,100940,101049,101160,101271,101372,101477,101589,101719,101810,101933,102045,102131,102235,102343,102443,102561,102665,102769,102895,102983,103073,103183,103267,103321,103443,103549,103659,103743,103869,105876,105980,106081,106128,106376,106568,106918,107077,107506,108232,108453,108612,108871,109695,110088,110234,110362,111143,111728,112199,112417,118365,119290,119781,119934"
+ }
+ },
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values\\strings.xml",
+ "from": {
+ "startLines": "127,71,74,73,72,18,19,20,117,118,126,125,25,134,135,80,81,79,78,77,93,92,91,83,38,37,63,28,29,84,40,75,119,70,66,41,47,52,42,62,61,60,56,55,53,54,57,58,48,69,59,67,46,51,50,49,65,45,64,43,44,68,27,33,35,32,34,31,30,24,23,100,99,103,115,108,107,109,110,112,111,101,102,106,104,105,98,113,114,124,122,121,123,26,82,90,95,94,96,89,88,87,86,132,133,21,22",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "8004,3894,4155,4059,3990,823,866,918,7502,7551,7946,7895,1278,8550,8604,4609,4703,4538,4454,4371,5570,5487,5385,4879,2000,1949,3393,1482,1535,4940,2093,4238,7614,3823,3578,2152,2467,2768,2210,3322,3261,3204,2982,2930,2827,2880,3032,3082,2514,3757,3142,3627,2420,2713,2625,2567,3516,2370,3471,2267,2310,3690,1427,1746,1854,1699,1801,1643,1595,1223,1170,6026,5959,6267,7405,6631,6550,6705,6794,7036,6957,6110,6185,6491,6331,6411,5904,7180,7302,7854,7727,7670,7780,1362,4811,5299,5705,5636,5785,5240,5185,5123,5063,8412,8485,970,1080",
+ "endLines": "131,71,74,73,72,18,19,20,117,118,126,125,25,134,135,80,81,79,78,77,93,92,91,83,38,37,63,28,29,84,40,75,119,70,66,41,47,52,42,62,61,60,56,55,53,54,57,58,48,69,59,67,46,51,50,49,65,45,64,43,44,68,27,33,35,32,34,31,30,24,23,100,99,103,115,108,107,109,110,112,111,101,102,106,104,105,98,113,114,124,122,121,123,26,82,90,95,94,96,89,88,87,86,132,133,21,22",
+ "endColumns": "14,95,82,95,68,42,51,51,48,62,57,50,83,53,47,93,107,70,83,82,65,82,101,60,61,50,77,52,59,104,58,101,54,70,48,57,46,58,56,70,60,56,49,51,52,49,49,59,52,65,61,62,46,54,87,57,61,49,44,42,59,66,54,54,52,46,52,55,47,54,52,83,66,63,95,73,80,88,162,143,78,74,81,58,79,79,54,121,102,40,52,56,73,64,67,85,79,68,93,58,54,61,59,72,64,109,89",
+ "endOffsets": "8407,3985,4233,4150,4054,861,913,965,7546,7609,7999,7941,1357,8599,8647,4698,4806,4604,4533,4449,5631,5565,5482,4935,2057,1995,3466,1530,1590,5040,2147,4335,7664,3889,3622,2205,2509,2822,2262,3388,3317,3256,3027,2977,2875,2925,3077,3137,2562,3818,3199,3685,2462,2763,2708,2620,3573,2415,3511,2305,2365,3752,1477,1796,1902,1741,1849,1694,1638,1273,1218,6105,6021,6326,7496,6700,6626,6789,6952,7175,7031,6180,6262,6545,6406,6486,5954,7297,7400,7890,7775,7722,7849,1422,4874,5380,5780,5700,5874,5294,5235,5180,5118,8480,8545,1075,1165"
+ },
+ "to": {
+ "startLines": "169,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,285,286,287,288,289,290,291,292,293,294,295,296,297",
+ "startColumns": "4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4",
+ "startOffsets": "10826,12430,12526,12609,12705,12774,12817,12869,12921,12970,13033,13091,13142,13226,13280,13328,13422,13530,13601,13685,13768,13834,13917,14019,14080,14142,14193,14271,14324,14384,14489,14548,14650,14705,14776,14825,14883,14930,14989,15046,15117,15178,15235,15285,15337,15390,15440,15490,15550,15603,15669,15731,15794,15841,15896,15984,16042,16104,16154,16199,16242,16302,16369,16424,16479,16532,16579,16632,16688,16736,16791,16844,16928,16995,17059,17155,17229,17310,17399,17562,17706,17785,17860,17942,18001,18081,18161,18216,18338,18441,18482,18535,18592,18666,18802,18870,18956,19036,19105,19199,19258,19313,19375,19435,19508,19573,19683",
+ "endLines": "173,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,285,286,287,288,289,290,291,292,293,294,295,296,297",
+ "endColumns": "14,95,82,95,68,42,51,51,48,62,57,50,83,53,47,93,107,70,83,82,65,82,101,60,61,50,77,52,59,104,58,101,54,70,48,57,46,58,56,70,60,56,49,51,52,49,49,59,52,65,61,62,46,54,87,57,61,49,44,42,59,66,54,54,52,46,52,55,47,54,52,83,66,63,95,73,80,88,162,143,78,74,81,58,79,79,54,121,102,40,52,56,73,64,67,85,79,68,93,58,54,61,59,72,64,109,89",
+ "endOffsets": "11173,12521,12604,12700,12769,12812,12864,12916,12965,13028,13086,13137,13221,13275,13323,13417,13525,13596,13680,13763,13829,13912,14014,14075,14137,14188,14266,14319,14379,14484,14543,14645,14700,14771,14820,14878,14925,14984,15041,15112,15173,15230,15280,15332,15385,15435,15485,15545,15598,15664,15726,15789,15836,15891,15979,16037,16099,16149,16194,16237,16297,16364,16419,16474,16527,16574,16627,16683,16731,16786,16839,16923,16990,17054,17150,17224,17305,17394,17557,17701,17780,17855,17937,17996,18076,18156,18211,18333,18436,18477,18530,18587,18661,18726,18865,18951,19031,19100,19194,19253,19308,19370,19430,19503,19568,19678,19768"
+ }
+ },
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values\\dimens.xml",
+ "from": {
+ "startLines": "19,20,21,22,18",
+ "startColumns": "4,4,4,4,4",
+ "startOffsets": "764,816,869,922,712",
+ "endColumns": "51,52,52,51,51",
+ "endOffsets": "811,864,917,969,759"
+ },
+ "to": {
+ "startLines": "149,150,151,152,153",
+ "startColumns": "4,4,4,4,4",
+ "startOffsets": "9768,9820,9873,9926,9978",
+ "endColumns": "51,52,52,51,51",
+ "endOffsets": "9815,9868,9921,9973,10025"
+ }
+ },
+ {
+ "source": "C:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\src\\main\\res\\values\\attrs.xml",
+ "from": {
+ "startLines": "1",
+ "startColumns": "4",
+ "startOffsets": "16",
+ "endLines": "4",
+ "endColumns": "24",
+ "endOffsets": "207"
+ },
+ "to": {
+ "startLines": "1608",
+ "startColumns": "4",
+ "startOffsets": "107511",
+ "endLines": "1611",
+ "endColumns": "24",
+ "endOffsets": "107700"
+ }
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/single/debug.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/single/debug.json
new file mode 100644
index 00000000..84fa553e
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/single/debug.json
@@ -0,0 +1,406 @@
+[
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_list_red_middle.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/list_red_middle.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_title_bar_bg.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/title_bar_bg.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/layout_note_list_dropdown_menu.xml.flat",
+ "source": "net.micode.notes.app-main-7:/layout/note_list_dropdown_menu.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/layout_folder_list_item.xml.flat",
+ "source": "net.micode.notes.app-main-7:/layout/folder_list_item.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_selected.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/selected.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_edit_title_yellow.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/edit_title_yellow.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_abc.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/abc.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/menu_sub_folder.xml.flat",
+ "source": "net.micode.notes.app-main-7:/menu/sub_folder.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_list_footer_bg.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/list_footer_bg.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_clock.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/clock.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_widget_4x_yellow.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/widget_4x_yellow.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/raw_introduction.flat",
+ "source": "net.micode.notes.app-main-7:/raw/introduction"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_list_white_up.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/list_white_up.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_widget_4x_blue.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/widget_4x_blue.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_widget_2x_green.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/widget_2x_green.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/layout_widget_2x.xml.flat",
+ "source": "net.micode.notes.app-main-7:/layout/widget_2x.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable_new_note.xml.flat",
+ "source": "net.micode.notes.app-main-7:/drawable/new_note.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/xml_widget_2x_info.xml.flat",
+ "source": "net.micode.notes.app-main-7:/xml/widget_2x_info.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/menu_call_record_folder.xml.flat",
+ "source": "net.micode.notes.app-main-7:/menu/call_record_folder.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable_splash.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable/splash.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/xml_preferences.xml.flat",
+ "source": "net.micode.notes.app-main-7:/xml/preferences.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/layout_dialog_edit_text.xml.flat",
+ "source": "net.micode.notes.app-main-7:/layout/dialog_edit_text.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_edit_title_blue.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/edit_title_blue.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_list_yellow_single.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/list_yellow_single.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/color_secondary_text_dark.xml.flat",
+ "source": "net.micode.notes.app-main-7:/color/secondary_text_dark.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/xml_widget_4x_info.xml.flat",
+ "source": "net.micode.notes.app-main-7:/xml/widget_4x_info.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_list_white_middle.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/list_white_middle.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_list_blue_up.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/list_blue_up.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_edit_yellow.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/edit_yellow.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_list_white_single.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/list_white_single.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_icon_app_new.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/icon_app_new.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/layout_widget_4x.xml.flat",
+ "source": "net.micode.notes.app-main-7:/layout/widget_4x.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/layout_note_edit.xml.flat",
+ "source": "net.micode.notes.app-main-7:/layout/note_edit.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_edit_title_green.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/edit_title_green.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/layout_note_list.xml.flat",
+ "source": "net.micode.notes.app-main-7:/layout/note_list.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_menu_delete.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/menu_delete.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_list_green_down.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/list_green_down.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_icon_app.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/icon_app.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_dropdown_icon.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/dropdown_icon.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_bg_btn_set_color.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/bg_btn_set_color.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/menu_note_list.xml.flat",
+ "source": "net.micode.notes.app-main-7:/menu/note_list.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/layout_note_list_footer.xml.flat",
+ "source": "net.micode.notes.app-main-7:/layout/note_list_footer.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_menu_move.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/menu_move.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_bg_color_btn_mask.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/bg_color_btn_mask.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/layout_add_account_text.xml.flat",
+ "source": "net.micode.notes.app-main-7:/layout/add_account_text.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/layout_datetime_picker.xml.flat",
+ "source": "net.micode.notes.app-main-7:/layout/datetime_picker.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_font_super.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/font_super.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_list_blue_single.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/list_blue_single.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_widget_2x_yellow.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/widget_2x_yellow.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_delete.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/delete.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_edit_green.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/edit_green.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/menu_note_edit.xml.flat",
+ "source": "net.micode.notes.app-main-7:/menu/note_edit.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/layout_account_dialog_title.xml.flat",
+ "source": "net.micode.notes.app-main-7:/layout/account_dialog_title.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_call_record.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/call_record.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_list_green_up.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/list_green_up.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_list_folder.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/list_folder.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_splash.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/splash.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_list_red_single.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/list_red_single.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_notification.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/notification.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_list_red_down.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/list_red_down.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_new_note_pressed.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/new_note_pressed.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_edit_white.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/edit_white.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/layout_note_item.xml.flat",
+ "source": "net.micode.notes.app-main-7:/layout/note_item.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/layout_settings_header.xml.flat",
+ "source": "net.micode.notes.app-main-7:/layout/settings_header.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_note_edit_color_selector_panel.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/note_edit_color_selector_panel.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_title_alert.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/title_alert.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_widget_4x_red.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/widget_4x_red.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_font_large.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/font_large.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_list_blue_middle.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/list_blue_middle.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_widget_2x_blue.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/widget_2x_blue.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_list_red_up.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/list_red_up.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_widget_4x_white.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/widget_4x_white.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_list_yellow_up.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/list_yellow_up.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_widget_2x_white.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/widget_2x_white.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_edit_title_white.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/edit_title_white.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_list_yellow_down.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/list_yellow_down.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/raw-zh-rCN_introduction.flat",
+ "source": "net.micode.notes.app-main-7:/raw-zh-rCN/introduction"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_list_background.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/list_background.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_search_result.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/search_result.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_widget_4x_green.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/widget_4x_green.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_edit_red.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/edit_red.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/xml_searchable.xml.flat",
+ "source": "net.micode.notes.app-main-7:/xml/searchable.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_list_green_middle.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/list_green_middle.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_font_normal.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/font_normal.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_list_yellow_middle.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/list_yellow_middle.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_new_note_normal.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/new_note_normal.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/menu_note_list_dropdown.xml.flat",
+ "source": "net.micode.notes.app-main-7:/menu/note_list_dropdown.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/layout_note_edit_list_item.xml.flat",
+ "source": "net.micode.notes.app-main-7:/layout/note_edit_list_item.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_list_blue_down.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/list_blue_down.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_font_size_selector_bg.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/font_size_selector_bg.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_a.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/a.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_edit_title_red.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/edit_title_red.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/menu_note_list_options.xml.flat",
+ "source": "net.micode.notes.app-main-7:/menu/note_list_options.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_edit_blue.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/edit_blue.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/layout_activity_splash.xml.flat",
+ "source": "net.micode.notes.app-main-7:/layout/activity_splash.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/menu_call_note_edit.xml.flat",
+ "source": "net.micode.notes.app-main-7:/menu/call_note_edit.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_list_green_single.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/list_green_single.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_widget_2x_red.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/widget_2x_red.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/color_primary_text_dark.xml.flat",
+ "source": "net.micode.notes.app-main-7:/color/primary_text_dark.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_list_white_down.9.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/list_white_down.9.png"
+ },
+ {
+ "merged": "net.micode.notes.app-merged_res-5:/drawable-hdpi_font_small.png.flat",
+ "source": "net.micode.notes.app-main-7:/drawable-hdpi/font_small.png"
+ }
+]
\ No newline at end of file
diff --git a/src/app/build/intermediates/merged_res_blame_folder/debug/out/single/layout.json b/src/app/build/intermediates/merged_res_blame_folder/debug/out/single/layout.json
new file mode 100644
index 00000000..b8d6080a
--- /dev/null
+++ b/src/app/build/intermediates/merged_res_blame_folder/debug/out/single/layout.json
@@ -0,0 +1,62 @@
+[
+ {
+ "merged": "net.micode.notes.app-mergeDebugResources-4:/layout/note_list.xml",
+ "source": "net.micode.notes.app-main-7:/layout/note_list.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-mergeDebugResources-4:/layout/note_list_footer.xml",
+ "source": "net.micode.notes.app-main-7:/layout/note_list_footer.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-mergeDebugResources-4:/layout/widget_4x.xml",
+ "source": "net.micode.notes.app-main-7:/layout/widget_4x.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-mergeDebugResources-4:/layout/activity_splash.xml",
+ "source": "net.micode.notes.app-main-7:/layout/activity_splash.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-mergeDebugResources-4:/layout/dialog_edit_text.xml",
+ "source": "net.micode.notes.app-main-7:/layout/dialog_edit_text.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-mergeDebugResources-4:/layout/add_account_text.xml",
+ "source": "net.micode.notes.app-main-7:/layout/add_account_text.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-mergeDebugResources-4:/layout/widget_2x.xml",
+ "source": "net.micode.notes.app-main-7:/layout/widget_2x.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-mergeDebugResources-4:/layout/note_list_dropdown_menu.xml",
+ "source": "net.micode.notes.app-main-7:/layout/note_list_dropdown_menu.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-mergeDebugResources-4:/layout/folder_list_item.xml",
+ "source": "net.micode.notes.app-main-7:/layout/folder_list_item.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-mergeDebugResources-4:/layout/note_edit.xml",
+ "source": "net.micode.notes.app-main-7:/layout/note_edit.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-mergeDebugResources-4:/layout/account_dialog_title.xml",
+ "source": "net.micode.notes.app-main-7:/layout/account_dialog_title.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-mergeDebugResources-4:/layout/note_item.xml",
+ "source": "net.micode.notes.app-main-7:/layout/note_item.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-mergeDebugResources-4:/layout/settings_header.xml",
+ "source": "net.micode.notes.app-main-7:/layout/settings_header.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-mergeDebugResources-4:/layout/datetime_picker.xml",
+ "source": "net.micode.notes.app-main-7:/layout/datetime_picker.xml"
+ },
+ {
+ "merged": "net.micode.notes.app-mergeDebugResources-4:/layout/note_edit_list_item.xml",
+ "source": "net.micode.notes.app-main-7:/layout/note_edit_list_item.xml"
+ }
+]
\ No newline at end of file
diff --git a/src/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/a.png b/src/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/a.png
new file mode 100644
index 00000000..7b6b773d
Binary files /dev/null and b/src/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/a.png differ
diff --git a/src/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/abc.png b/src/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/abc.png
new file mode 100644
index 00000000..d53b1c06
Binary files /dev/null and b/src/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/abc.png differ
diff --git a/src/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/icon_app_new.png b/src/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/icon_app_new.png
new file mode 100644
index 00000000..1be4ae82
Binary files /dev/null and b/src/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/icon_app_new.png differ
diff --git a/src/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/splash.png b/src/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/splash.png
new file mode 100644
index 00000000..5b28f18b
Binary files /dev/null and b/src/app/build/intermediates/packaged_res/debug/drawable-hdpi-v4/splash.png differ
diff --git a/src/app/build/intermediates/packaged_res/debug/drawable/splash.png b/src/app/build/intermediates/packaged_res/debug/drawable/splash.png
new file mode 100644
index 00000000..5b28f18b
Binary files /dev/null and b/src/app/build/intermediates/packaged_res/debug/drawable/splash.png differ
diff --git a/src/app/build/intermediates/packaged_res/debug/layout/activity_splash.xml b/src/app/build/intermediates/packaged_res/debug/layout/activity_splash.xml
new file mode 100644
index 00000000..19e9d979
--- /dev/null
+++ b/src/app/build/intermediates/packaged_res/debug/layout/activity_splash.xml
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/packaged_res/debug/values-night-v8/values-night-v8.xml b/src/app/build/intermediates/packaged_res/debug/values-night-v8/values-night-v8.xml
new file mode 100644
index 00000000..c10c0361
--- /dev/null
+++ b/src/app/build/intermediates/packaged_res/debug/values-night-v8/values-night-v8.xml
@@ -0,0 +1,7 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/packaged_res/debug/values-zh-rCN/values-zh-rCN.xml b/src/app/build/intermediates/packaged_res/debug/values-zh-rCN/values-zh-rCN.xml
new file mode 100644
index 00000000..d65e0cce
--- /dev/null
+++ b/src/app/build/intermediates/packaged_res/debug/values-zh-rCN/values-zh-rCN.xml
@@ -0,0 +1,108 @@
+
+
+
+ - 短信
+ - 邮件
+
+
+ - %1$s 条符合“%2$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/packaged_res/debug/values-zh-rTW/values-zh-rTW.xml b/src/app/build/intermediates/packaged_res/debug/values-zh-rTW/values-zh-rTW.xml
new file mode 100644
index 00000000..226b5bc5
--- /dev/null
+++ b/src/app/build/intermediates/packaged_res/debug/values-zh-rTW/values-zh-rTW.xml
@@ -0,0 +1,108 @@
+
+
+
+ - 短信
+ - 郵件
+
+
+ - %1$s 條符合”%2$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/packaged_res/debug/values/values.xml b/src/app/build/intermediates/packaged_res/debug/values/values.xml
new file mode 100644
index 00000000..26c1ff9f
--- /dev/null
+++ b/src/app/build/intermediates/packaged_res/debug/values/values.xml
@@ -0,0 +1,199 @@
+
+
+
+ - -%s
+ - --%s
+ - --%s
+ - --%s
+
+
+ - Messaging
+ - Email
+
+ #66000000
+ #FF039BE5
+ #FF01579B
+ #FF40C4FF
+ #FF00B0FF
+ #335b5b5b
+ 26sp
+ 20sp
+ 17sp
+ 14sp
+ 33sp
+
+ - %1$s result for \"%2$s\"
+
+ - %1$s results for \"%2$s\"
+
+ Confirm to delete folder and its notes?
+ Confirm to delete this note?
+ Confirm to delete the selected %d notes?
+ Delete selected notes
+ Notes
+ Notes 2x2
+ Notes 4x4
+ Delete
+ Call notes
+ cancel
+ set
+ Delete reminder successfully
+ Dummy Button
+ 寒假快乐!
+ Sorry, can not set clock on empty note
+ Sorry, can not send and empty note to home
+ The note is not exist
+ Export failed, please check SD card
+ SD card busy, not available now
+ Sync is canceled
+ Sync failed, internal error occurs
+ Sync failed, please check network and account settings
+ Export fail
+ notes_%s.txt
+ /MIUI/notes/
+ The folder %1$s exist, please rename
+ yyyyMMdd
+ MMMd kk:mm
+ Export text file (%1$s) to SD (%2$s) directory
+ (%d)
+ Have moved selected %1$d notes to %2$s folder
+ Input name
+ Note added to home
+ Remind me
+ New Folder
+ Delete
+ Deselect all
+ Export text
+ Change folder name
+ Delete folder
+ View folder
+ Large
+ Medium
+ Font size
+ Small
+ Super
+ Enter check list
+ Move to folder
+ Parent folder
+ Leave check list
+ Delete reminder
+ Search
+ Select all
+ Nothing selected, the operation is invalid
+ %d selected
+ Send to home
+ Settings
+ Share
+ Sync
+ Cancel syncing
+ Select folder
+ Expired
+ Send email
+ Open map
+ Call
+ Browse web
+ Take a look
+ Got it
+ Add note
+ ...
+ Sync notes with google task
+ Sync account
+ Add account
+ New note background color random
+ Cancel syncing
+ Sync immediately
+ Current account %1$s
+ All sync related information will be deleted, which may result in duplicated items sometime
+ Please select a google account. Local notes will be synced with google task.
+ Sync notes
+ Last sync time %1$s
+ yyyy-MM-dd hh:mm:ss
+ Cancel
+ Change sync account
+ Remove sync account
+ Settings
+ Cannot change the account because sync is in progress
+ %1$s has been set as the sync account
+ Notes
+ Search notes
+ Searching Notes
+ Text in your notes
+ Set reminder
+ Export successful
+ Sync is successful with account %1$s
+ Getting remote note list...
+ Logging into %1$s...
+ Synchronize local notes with Google Task...
+ Sync is canceled
+ Sync is failed
+ Sync is successful
+ Syncing notes...
+ FullscreenActivity
+ SplashActivity
+ No associated note found, click to create associated note.
+ Privacy mode,can not see note content
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/build/intermediates/processed_res/debug/out/output-metadata.json b/src/app/build/intermediates/processed_res/debug/out/output-metadata.json
new file mode 100644
index 00000000..1eefece9
--- /dev/null
+++ b/src/app/build/intermediates/processed_res/debug/out/output-metadata.json
@@ -0,0 +1,20 @@
+{
+ "version": 3,
+ "artifactType": {
+ "type": "PROCESSED_RES",
+ "kind": "Directory"
+ },
+ "applicationId": "net.micode.notes",
+ "variantName": "debug",
+ "elements": [
+ {
+ "type": "SINGLE",
+ "filters": [],
+ "attributes": [],
+ "versionCode": 1,
+ "versionName": "0.1",
+ "outputFile": "resources-debug.ap_"
+ }
+ ],
+ "elementType": "File"
+}
\ No newline at end of file
diff --git a/src/app/build/intermediates/processed_res/debug/out/resources-debug.ap_ b/src/app/build/intermediates/processed_res/debug/out/resources-debug.ap_
index 9cb07b96..f596e567 100644
Binary files a/src/app/build/intermediates/processed_res/debug/out/resources-debug.ap_ and b/src/app/build/intermediates/processed_res/debug/out/resources-debug.ap_ differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/e2d519e5bebf8c32819508c8bbd6c1f9e267b9320ccc8d00128369c68b565546_0.jar b/src/app/build/intermediates/project_dex_archive/debug/out/e2d519e5bebf8c32819508c8bbd6c1f9e267b9320ccc8d00128369c68b565546_0.jar
new file mode 100644
index 00000000..34c88f71
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/e2d519e5bebf8c32819508c8bbd6c1f9e267b9320ccc8d00128369c68b565546_0.jar differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/e2d519e5bebf8c32819508c8bbd6c1f9e267b9320ccc8d00128369c68b565546_5.jar b/src/app/build/intermediates/project_dex_archive/debug/out/e2d519e5bebf8c32819508c8bbd6c1f9e267b9320ccc8d00128369c68b565546_5.jar
new file mode 100644
index 00000000..f8a80fc7
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/e2d519e5bebf8c32819508c8bbd6c1f9e267b9320ccc8d00128369c68b565546_5.jar differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/e2d519e5bebf8c32819508c8bbd6c1f9e267b9320ccc8d00128369c68b565546_6.jar b/src/app/build/intermediates/project_dex_archive/debug/out/e2d519e5bebf8c32819508c8bbd6c1f9e267b9320ccc8d00128369c68b565546_6.jar
new file mode 100644
index 00000000..769fefd9
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/e2d519e5bebf8c32819508c8bbd6c1f9e267b9320ccc8d00128369c68b565546_6.jar differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Contact.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Contact.dex
new file mode 100644
index 00000000..32be5fc9
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Contact.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$CallNote.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$CallNote.dex
new file mode 100644
index 00000000..b845b4e2
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$CallNote.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$DataColumns.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$DataColumns.dex
new file mode 100644
index 00000000..1c0dee7a
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$DataColumns.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$DataConstants.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$DataConstants.dex
new file mode 100644
index 00000000..3ba5a357
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$DataConstants.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$NoteColumns.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$NoteColumns.dex
new file mode 100644
index 00000000..3e6ef4ea
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$NoteColumns.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$TextNote.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$TextNote.dex
new file mode 100644
index 00000000..9f409497
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes$TextNote.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes.dex
new file mode 100644
index 00000000..e2144f07
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/Notes.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesDatabaseHelper$TABLE.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesDatabaseHelper$TABLE.dex
new file mode 100644
index 00000000..00400e42
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesDatabaseHelper$TABLE.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesDatabaseHelper.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesDatabaseHelper.dex
new file mode 100644
index 00000000..20e87a9e
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesDatabaseHelper.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesProvider.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesProvider.dex
new file mode 100644
index 00000000..028d8ecc
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/data/NotesProvider.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/AccountDialogTitleBinding.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/AccountDialogTitleBinding.dex
new file mode 100644
index 00000000..e1dccc8e
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/AccountDialogTitleBinding.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/ActivitySplashBinding.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/ActivitySplashBinding.dex
new file mode 100644
index 00000000..56504ce8
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/ActivitySplashBinding.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/AddAccountTextBinding.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/AddAccountTextBinding.dex
new file mode 100644
index 00000000..495f68f5
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/AddAccountTextBinding.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/DatetimePickerBinding.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/DatetimePickerBinding.dex
new file mode 100644
index 00000000..4b7fd6f8
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/DatetimePickerBinding.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/DialogEditTextBinding.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/DialogEditTextBinding.dex
new file mode 100644
index 00000000..a06da8ae
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/DialogEditTextBinding.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/FolderListItemBinding.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/FolderListItemBinding.dex
new file mode 100644
index 00000000..f05281db
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/FolderListItemBinding.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteEditBinding.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteEditBinding.dex
new file mode 100644
index 00000000..18363537
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteEditBinding.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteEditListItemBinding.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteEditListItemBinding.dex
new file mode 100644
index 00000000..98f67a82
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteEditListItemBinding.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteItemBinding.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteItemBinding.dex
new file mode 100644
index 00000000..165e57cb
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteItemBinding.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteListBinding.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteListBinding.dex
new file mode 100644
index 00000000..6f528d57
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteListBinding.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteListDropdownMenuBinding.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteListDropdownMenuBinding.dex
new file mode 100644
index 00000000..685b6f80
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteListDropdownMenuBinding.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteListFooterBinding.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteListFooterBinding.dex
new file mode 100644
index 00000000..d2df741f
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/NoteListFooterBinding.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/SettingsHeaderBinding.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/SettingsHeaderBinding.dex
new file mode 100644
index 00000000..617a8a27
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/SettingsHeaderBinding.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/Widget2xBinding.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/Widget2xBinding.dex
new file mode 100644
index 00000000..af0f1814
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/Widget2xBinding.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/Widget4xBinding.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/Widget4xBinding.dex
new file mode 100644
index 00000000..056a23ab
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/databinding/Widget4xBinding.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/MetaData.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/MetaData.dex
new file mode 100644
index 00000000..a55abb88
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/MetaData.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/Node.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/Node.dex
new file mode 100644
index 00000000..e43108d5
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/Node.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/SqlData.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/SqlData.dex
new file mode 100644
index 00000000..a6268696
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/SqlData.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/SqlNote.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/SqlNote.dex
new file mode 100644
index 00000000..fa9fd36b
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/SqlNote.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/Task.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/Task.dex
new file mode 100644
index 00000000..137bd023
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/Task.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/TaskList.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/TaskList.dex
new file mode 100644
index 00000000..82a15e21
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/data/TaskList.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/exception/ActionFailureException.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/exception/ActionFailureException.dex
new file mode 100644
index 00000000..ff466b5b
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/exception/ActionFailureException.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/exception/NetworkFailureException.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/exception/NetworkFailureException.dex
new file mode 100644
index 00000000..c3c8e6aa
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/exception/NetworkFailureException.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskASyncTask$1.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskASyncTask$1.dex
new file mode 100644
index 00000000..b145141d
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskASyncTask$1.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskASyncTask$OnCompleteListener.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskASyncTask$OnCompleteListener.dex
new file mode 100644
index 00000000..9db738af
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskASyncTask$OnCompleteListener.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskASyncTask.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskASyncTask.dex
new file mode 100644
index 00000000..7882433f
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskASyncTask.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskClient.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskClient.dex
new file mode 100644
index 00000000..0e75b17f
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskClient.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskManager.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskManager.dex
new file mode 100644
index 00000000..2972d40a
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskManager.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskSyncService$1.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskSyncService$1.dex
new file mode 100644
index 00000000..fe366b5d
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskSyncService$1.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskSyncService.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskSyncService.dex
new file mode 100644
index 00000000..178513c4
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/gtask/remote/GTaskSyncService.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/Note$NoteData.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/Note$NoteData.dex
new file mode 100644
index 00000000..61e3ab4e
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/Note$NoteData.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/Note.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/Note.dex
new file mode 100644
index 00000000..abb001b4
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/Note.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/WorkingNote$NoteSettingChangedListener.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/WorkingNote$NoteSettingChangedListener.dex
new file mode 100644
index 00000000..4cc87c9e
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/WorkingNote$NoteSettingChangedListener.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/WorkingNote.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/WorkingNote.dex
new file mode 100644
index 00000000..ab0f2222
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/model/WorkingNote.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/BackupUtils$TextExport.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/BackupUtils$TextExport.dex
new file mode 100644
index 00000000..a1ad97ac
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/BackupUtils$TextExport.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/BackupUtils.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/BackupUtils.dex
new file mode 100644
index 00000000..2c653154
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/BackupUtils.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/DataUtils.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/DataUtils.dex
new file mode 100644
index 00000000..f0905957
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/DataUtils.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/GTaskStringUtils.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/GTaskStringUtils.dex
new file mode 100644
index 00000000..fc4e9947
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/GTaskStringUtils.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$NoteBgResources.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$NoteBgResources.dex
new file mode 100644
index 00000000..20fbb2d3
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$NoteBgResources.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$NoteItemBgResources.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$NoteItemBgResources.dex
new file mode 100644
index 00000000..fdbccf94
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$NoteItemBgResources.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$TextAppearanceResources.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$TextAppearanceResources.dex
new file mode 100644
index 00000000..8b937f64
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$TextAppearanceResources.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$WidgetBgResources.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$WidgetBgResources.dex
new file mode 100644
index 00000000..6924a990
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser$WidgetBgResources.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser.dex
new file mode 100644
index 00000000..61a84ce1
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/tool/ResourceParser.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/AlarmAlertActivity.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/AlarmAlertActivity.dex
new file mode 100644
index 00000000..46f6ec3b
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/AlarmAlertActivity.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/AlarmInitReceiver.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/AlarmInitReceiver.dex
new file mode 100644
index 00000000..9fa1128a
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/AlarmInitReceiver.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/AlarmReceiver.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/AlarmReceiver.dex
new file mode 100644
index 00000000..9278ab02
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/AlarmReceiver.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$1.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$1.dex
new file mode 100644
index 00000000..1cb18565
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$1.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$2.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$2.dex
new file mode 100644
index 00000000..510f7502
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$2.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$3.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$3.dex
new file mode 100644
index 00000000..a6c29d52
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$3.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$4.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$4.dex
new file mode 100644
index 00000000..6302eeb8
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$4.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$OnDateTimeChangedListener.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$OnDateTimeChangedListener.dex
new file mode 100644
index 00000000..0df26556
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker$OnDateTimeChangedListener.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker.dex
new file mode 100644
index 00000000..568f0189
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePicker.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePickerDialog$1.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePickerDialog$1.dex
new file mode 100644
index 00000000..ff5d433a
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePickerDialog$1.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePickerDialog$OnDateTimeSetListener.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePickerDialog$OnDateTimeSetListener.dex
new file mode 100644
index 00000000..d9419a5d
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePickerDialog$OnDateTimeSetListener.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePickerDialog.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePickerDialog.dex
new file mode 100644
index 00000000..4c048f47
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DateTimePickerDialog.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DropdownMenu$1.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DropdownMenu$1.dex
new file mode 100644
index 00000000..8287c959
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DropdownMenu$1.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DropdownMenu.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DropdownMenu.dex
new file mode 100644
index 00000000..07aa820a
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/DropdownMenu.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/FoldersListAdapter$FolderListItem.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/FoldersListAdapter$FolderListItem.dex
new file mode 100644
index 00000000..1f9408f6
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/FoldersListAdapter$FolderListItem.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/FoldersListAdapter.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/FoldersListAdapter.dex
new file mode 100644
index 00000000..cce08c43
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/FoldersListAdapter.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$1.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$1.dex
new file mode 100644
index 00000000..7a221377
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$1.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$2.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$2.dex
new file mode 100644
index 00000000..dfe6533b
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$2.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$3.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$3.dex
new file mode 100644
index 00000000..fc051fd8
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$3.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$4.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$4.dex
new file mode 100644
index 00000000..d3dc5899
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$4.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$HeadViewHolder.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$HeadViewHolder.dex
new file mode 100644
index 00000000..1d1ec6b0
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity$HeadViewHolder.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity.dex
new file mode 100644
index 00000000..e634bdf5
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditActivity.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditText$1.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditText$1.dex
new file mode 100644
index 00000000..d675b18c
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditText$1.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditText$OnTextViewChangeListener.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditText$OnTextViewChangeListener.dex
new file mode 100644
index 00000000..1323e64f
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditText$OnTextViewChangeListener.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditText.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditText.dex
new file mode 100644
index 00000000..cab36a8a
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteEditText.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteItemData.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteItemData.dex
new file mode 100644
index 00000000..bc0b0bfb
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NoteItemData.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$1.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$1.dex
new file mode 100644
index 00000000..90748f7b
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$1.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$2.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$2.dex
new file mode 100644
index 00000000..81b2e00f
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$2.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$3.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$3.dex
new file mode 100644
index 00000000..2d33925f
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$3.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$4.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$4.dex
new file mode 100644
index 00000000..b6b9a182
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$4.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$5.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$5.dex
new file mode 100644
index 00000000..db22c954
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$5.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$6.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$6.dex
new file mode 100644
index 00000000..a09fa48e
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$6.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$7.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$7.dex
new file mode 100644
index 00000000..ceaca3f1
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$7.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$8.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$8.dex
new file mode 100644
index 00000000..93b7a049
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$8.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$9.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$9.dex
new file mode 100644
index 00000000..6ed3917c
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$9.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$BackgroundQueryHandler.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$BackgroundQueryHandler.dex
new file mode 100644
index 00000000..7edd2ed9
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$BackgroundQueryHandler.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ListEditState.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ListEditState.dex
new file mode 100644
index 00000000..74086ad2
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ListEditState.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback$1.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback$1.dex
new file mode 100644
index 00000000..edc9fa7f
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback$1.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback$2.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback$2.dex
new file mode 100644
index 00000000..e10111f2
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback$2.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback.dex
new file mode 100644
index 00000000..1ecca762
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$ModeCallback.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$NewNoteOnTouchListener.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$NewNoteOnTouchListener.dex
new file mode 100644
index 00000000..bb5cdca2
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$NewNoteOnTouchListener.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$OnListItemClickListener.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$OnListItemClickListener.dex
new file mode 100644
index 00000000..903f51ae
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity$OnListItemClickListener.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity.dex
new file mode 100644
index 00000000..7e09bedc
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListActivity.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListAdapter$AppWidgetAttribute.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListAdapter$AppWidgetAttribute.dex
new file mode 100644
index 00000000..a0cf8e6e
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListAdapter$AppWidgetAttribute.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListAdapter.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListAdapter.dex
new file mode 100644
index 00000000..6247024c
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListAdapter.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListItem.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListItem.dex
new file mode 100644
index 00000000..5641b4dd
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesListItem.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$1.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$1.dex
new file mode 100644
index 00000000..ff5fb97b
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$1.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$2.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$2.dex
new file mode 100644
index 00000000..aa756cc4
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$2.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$3.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$3.dex
new file mode 100644
index 00000000..f6bec612
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$3.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$4.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$4.dex
new file mode 100644
index 00000000..66b2438a
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$4.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$5.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$5.dex
new file mode 100644
index 00000000..1b14ff32
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$5.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$6.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$6.dex
new file mode 100644
index 00000000..29992d12
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$6.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$7.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$7.dex
new file mode 100644
index 00000000..19dbf669
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$7.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$8.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$8.dex
new file mode 100644
index 00000000..350097f4
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$8.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$GTaskReceiver.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$GTaskReceiver.dex
new file mode 100644
index 00000000..a1224e45
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity$GTaskReceiver.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity.dex
new file mode 100644
index 00000000..be4d7fee
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/NotesPreferenceActivity.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/SplashActivity$1.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/SplashActivity$1.dex
new file mode 100644
index 00000000..1c2ef022
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/SplashActivity$1.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/SplashActivity.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/SplashActivity.dex
new file mode 100644
index 00000000..56bac024
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/ui/SplashActivity.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/widget/NoteWidgetProvider.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/widget/NoteWidgetProvider.dex
new file mode 100644
index 00000000..47fd474c
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/widget/NoteWidgetProvider.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/widget/NoteWidgetProvider_2x.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/widget/NoteWidgetProvider_2x.dex
new file mode 100644
index 00000000..a2738caf
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/widget/NoteWidgetProvider_2x.dex differ
diff --git a/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/widget/NoteWidgetProvider_4x.dex b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/widget/NoteWidgetProvider_4x.dex
new file mode 100644
index 00000000..10f69481
Binary files /dev/null and b/src/app/build/intermediates/project_dex_archive/debug/out/net/micode/notes/widget/NoteWidgetProvider_4x.dex differ
diff --git a/src/app/build/intermediates/runtime_symbol_list/debug/R.txt b/src/app/build/intermediates/runtime_symbol_list/debug/R.txt
index 9ca2e88a..c1def01c 100644
--- a/src/app/build/intermediates/runtime_symbol_list/debug/R.txt
+++ b/src/app/build/intermediates/runtime_symbol_list/debug/R.txt
@@ -364,134 +364,136 @@ int dimen text_font_size_medium 0x7f060046
int dimen text_font_size_normal 0x7f060047
int dimen text_font_size_small 0x7f060048
int dimen text_font_size_super 0x7f060049
-int drawable abc_ab_share_pack_mtrl_alpha 0x7f070000
-int drawable abc_btn_borderless_material 0x7f070001
-int drawable abc_btn_check_material 0x7f070002
-int drawable abc_btn_check_to_on_mtrl_000 0x7f070003
-int drawable abc_btn_check_to_on_mtrl_015 0x7f070004
-int drawable abc_btn_default_mtrl_shape 0x7f070005
-int drawable abc_btn_radio_material 0x7f070006
-int drawable abc_btn_radio_to_on_mtrl_000 0x7f070007
-int drawable abc_btn_radio_to_on_mtrl_015 0x7f070008
-int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f070009
-int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f07000a
-int drawable abc_btn_switch_to_on_mtrl_00001 0x7f07000b
-int drawable abc_btn_switch_to_on_mtrl_00012 0x7f07000c
-int drawable abc_cab_background_internal_bg 0x7f07000d
-int drawable abc_cab_background_top_material 0x7f07000e
-int drawable abc_cab_background_top_mtrl_alpha 0x7f07000f
-int drawable abc_dialog_material_background_dark 0x7f070010
-int drawable abc_dialog_material_background_light 0x7f070011
-int drawable abc_edit_text_material 0x7f070012
-int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f070013
-int drawable abc_ic_clear_mtrl_alpha 0x7f070014
-int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f070015
-int drawable abc_ic_go_search_api_mtrl_alpha 0x7f070016
-int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f070017
-int drawable abc_ic_menu_cut_mtrl_alpha 0x7f070018
-int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f070019
-int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f07001a
-int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f07001b
-int drawable abc_ic_menu_share_mtrl_alpha 0x7f07001c
-int drawable abc_ic_search_api_mtrl_alpha 0x7f07001d
-int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f07001e
-int drawable abc_item_background_holo_dark 0x7f07001f
-int drawable abc_item_background_holo_light 0x7f070020
-int drawable abc_list_divider_mtrl_alpha 0x7f070021
-int drawable abc_list_focused_holo 0x7f070022
-int drawable abc_list_longpressed_holo 0x7f070023
-int drawable abc_list_pressed_holo_dark 0x7f070024
-int drawable abc_list_pressed_holo_light 0x7f070025
-int drawable abc_list_selector_background_transition_holo_dark 0x7f070026
-int drawable abc_list_selector_background_transition_holo_light 0x7f070027
-int drawable abc_list_selector_disabled_holo_dark 0x7f070028
-int drawable abc_list_selector_disabled_holo_light 0x7f070029
-int drawable abc_list_selector_holo_dark 0x7f07002a
-int drawable abc_list_selector_holo_light 0x7f07002b
-int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f07002c
-int drawable abc_popup_background_mtrl_mult 0x7f07002d
-int drawable abc_ratingbar_full_material 0x7f07002e
-int drawable abc_spinner_mtrl_am_alpha 0x7f07002f
-int drawable abc_spinner_textfield_background_material 0x7f070030
-int drawable abc_switch_thumb_material 0x7f070031
-int drawable abc_switch_track_mtrl_alpha 0x7f070032
-int drawable abc_tab_indicator_material 0x7f070033
-int drawable abc_tab_indicator_mtrl_alpha 0x7f070034
-int drawable abc_text_cursor_mtrl_alpha 0x7f070035
-int drawable abc_textfield_activated_mtrl_alpha 0x7f070036
-int drawable abc_textfield_default_mtrl_alpha 0x7f070037
-int drawable abc_textfield_search_activated_mtrl_alpha 0x7f070038
-int drawable abc_textfield_search_default_mtrl_alpha 0x7f070039
-int drawable abc_textfield_search_material 0x7f07003a
-int drawable bg_btn_set_color 0x7f07003b
-int drawable bg_color_btn_mask 0x7f07003c
-int drawable call_record 0x7f07003d
-int drawable clock 0x7f07003e
-int drawable delete 0x7f07003f
-int drawable dropdown_icon 0x7f070040
-int drawable edit_blue 0x7f070041
-int drawable edit_green 0x7f070042
-int drawable edit_red 0x7f070043
-int drawable edit_title_blue 0x7f070044
-int drawable edit_title_green 0x7f070045
-int drawable edit_title_red 0x7f070046
-int drawable edit_title_white 0x7f070047
-int drawable edit_title_yellow 0x7f070048
-int drawable edit_white 0x7f070049
-int drawable edit_yellow 0x7f07004a
-int drawable font_large 0x7f07004b
-int drawable font_normal 0x7f07004c
-int drawable font_size_selector_bg 0x7f07004d
-int drawable font_small 0x7f07004e
-int drawable font_super 0x7f07004f
-int drawable icon_app 0x7f070050
-int drawable icon_app_new 0x7f070051
-int drawable list_background 0x7f070052
-int drawable list_blue_down 0x7f070053
-int drawable list_blue_middle 0x7f070054
-int drawable list_blue_single 0x7f070055
-int drawable list_blue_up 0x7f070056
-int drawable list_folder 0x7f070057
-int drawable list_footer_bg 0x7f070058
-int drawable list_green_down 0x7f070059
-int drawable list_green_middle 0x7f07005a
-int drawable list_green_single 0x7f07005b
-int drawable list_green_up 0x7f07005c
-int drawable list_red_down 0x7f07005d
-int drawable list_red_middle 0x7f07005e
-int drawable list_red_single 0x7f07005f
-int drawable list_red_up 0x7f070060
-int drawable list_white_down 0x7f070061
-int drawable list_white_middle 0x7f070062
-int drawable list_white_single 0x7f070063
-int drawable list_white_up 0x7f070064
-int drawable list_yellow_down 0x7f070065
-int drawable list_yellow_middle 0x7f070066
-int drawable list_yellow_single 0x7f070067
-int drawable list_yellow_up 0x7f070068
-int drawable menu_delete 0x7f070069
-int drawable menu_move 0x7f07006a
-int drawable new_note 0x7f07006b
-int drawable new_note_normal 0x7f07006c
-int drawable new_note_pressed 0x7f07006d
-int drawable note_edit_color_selector_panel 0x7f07006e
-int drawable notification 0x7f07006f
-int drawable notification_template_icon_bg 0x7f070070
-int drawable search_result 0x7f070071
-int drawable selected 0x7f070072
-int drawable splash 0x7f070073
-int drawable title_alert 0x7f070074
-int drawable title_bar_bg 0x7f070075
-int drawable widget_2x_blue 0x7f070076
-int drawable widget_2x_green 0x7f070077
-int drawable widget_2x_red 0x7f070078
-int drawable widget_2x_white 0x7f070079
-int drawable widget_2x_yellow 0x7f07007a
-int drawable widget_4x_blue 0x7f07007b
-int drawable widget_4x_green 0x7f07007c
-int drawable widget_4x_red 0x7f07007d
-int drawable widget_4x_white 0x7f07007e
-int drawable widget_4x_yellow 0x7f07007f
+int drawable a 0x7f070000
+int drawable abc 0x7f070001
+int drawable abc_ab_share_pack_mtrl_alpha 0x7f070002
+int drawable abc_btn_borderless_material 0x7f070003
+int drawable abc_btn_check_material 0x7f070004
+int drawable abc_btn_check_to_on_mtrl_000 0x7f070005
+int drawable abc_btn_check_to_on_mtrl_015 0x7f070006
+int drawable abc_btn_default_mtrl_shape 0x7f070007
+int drawable abc_btn_radio_material 0x7f070008
+int drawable abc_btn_radio_to_on_mtrl_000 0x7f070009
+int drawable abc_btn_radio_to_on_mtrl_015 0x7f07000a
+int drawable abc_btn_rating_star_off_mtrl_alpha 0x7f07000b
+int drawable abc_btn_rating_star_on_mtrl_alpha 0x7f07000c
+int drawable abc_btn_switch_to_on_mtrl_00001 0x7f07000d
+int drawable abc_btn_switch_to_on_mtrl_00012 0x7f07000e
+int drawable abc_cab_background_internal_bg 0x7f07000f
+int drawable abc_cab_background_top_material 0x7f070010
+int drawable abc_cab_background_top_mtrl_alpha 0x7f070011
+int drawable abc_dialog_material_background_dark 0x7f070012
+int drawable abc_dialog_material_background_light 0x7f070013
+int drawable abc_edit_text_material 0x7f070014
+int drawable abc_ic_ab_back_mtrl_am_alpha 0x7f070015
+int drawable abc_ic_clear_mtrl_alpha 0x7f070016
+int drawable abc_ic_commit_search_api_mtrl_alpha 0x7f070017
+int drawable abc_ic_go_search_api_mtrl_alpha 0x7f070018
+int drawable abc_ic_menu_copy_mtrl_am_alpha 0x7f070019
+int drawable abc_ic_menu_cut_mtrl_alpha 0x7f07001a
+int drawable abc_ic_menu_moreoverflow_mtrl_alpha 0x7f07001b
+int drawable abc_ic_menu_paste_mtrl_am_alpha 0x7f07001c
+int drawable abc_ic_menu_selectall_mtrl_alpha 0x7f07001d
+int drawable abc_ic_menu_share_mtrl_alpha 0x7f07001e
+int drawable abc_ic_search_api_mtrl_alpha 0x7f07001f
+int drawable abc_ic_voice_search_api_mtrl_alpha 0x7f070020
+int drawable abc_item_background_holo_dark 0x7f070021
+int drawable abc_item_background_holo_light 0x7f070022
+int drawable abc_list_divider_mtrl_alpha 0x7f070023
+int drawable abc_list_focused_holo 0x7f070024
+int drawable abc_list_longpressed_holo 0x7f070025
+int drawable abc_list_pressed_holo_dark 0x7f070026
+int drawable abc_list_pressed_holo_light 0x7f070027
+int drawable abc_list_selector_background_transition_holo_dark 0x7f070028
+int drawable abc_list_selector_background_transition_holo_light 0x7f070029
+int drawable abc_list_selector_disabled_holo_dark 0x7f07002a
+int drawable abc_list_selector_disabled_holo_light 0x7f07002b
+int drawable abc_list_selector_holo_dark 0x7f07002c
+int drawable abc_list_selector_holo_light 0x7f07002d
+int drawable abc_menu_hardkey_panel_mtrl_mult 0x7f07002e
+int drawable abc_popup_background_mtrl_mult 0x7f07002f
+int drawable abc_ratingbar_full_material 0x7f070030
+int drawable abc_spinner_mtrl_am_alpha 0x7f070031
+int drawable abc_spinner_textfield_background_material 0x7f070032
+int drawable abc_switch_thumb_material 0x7f070033
+int drawable abc_switch_track_mtrl_alpha 0x7f070034
+int drawable abc_tab_indicator_material 0x7f070035
+int drawable abc_tab_indicator_mtrl_alpha 0x7f070036
+int drawable abc_text_cursor_mtrl_alpha 0x7f070037
+int drawable abc_textfield_activated_mtrl_alpha 0x7f070038
+int drawable abc_textfield_default_mtrl_alpha 0x7f070039
+int drawable abc_textfield_search_activated_mtrl_alpha 0x7f07003a
+int drawable abc_textfield_search_default_mtrl_alpha 0x7f07003b
+int drawable abc_textfield_search_material 0x7f07003c
+int drawable bg_btn_set_color 0x7f07003d
+int drawable bg_color_btn_mask 0x7f07003e
+int drawable call_record 0x7f07003f
+int drawable clock 0x7f070040
+int drawable delete 0x7f070041
+int drawable dropdown_icon 0x7f070042
+int drawable edit_blue 0x7f070043
+int drawable edit_green 0x7f070044
+int drawable edit_red 0x7f070045
+int drawable edit_title_blue 0x7f070046
+int drawable edit_title_green 0x7f070047
+int drawable edit_title_red 0x7f070048
+int drawable edit_title_white 0x7f070049
+int drawable edit_title_yellow 0x7f07004a
+int drawable edit_white 0x7f07004b
+int drawable edit_yellow 0x7f07004c
+int drawable font_large 0x7f07004d
+int drawable font_normal 0x7f07004e
+int drawable font_size_selector_bg 0x7f07004f
+int drawable font_small 0x7f070050
+int drawable font_super 0x7f070051
+int drawable icon_app 0x7f070052
+int drawable icon_app_new 0x7f070053
+int drawable list_background 0x7f070054
+int drawable list_blue_down 0x7f070055
+int drawable list_blue_middle 0x7f070056
+int drawable list_blue_single 0x7f070057
+int drawable list_blue_up 0x7f070058
+int drawable list_folder 0x7f070059
+int drawable list_footer_bg 0x7f07005a
+int drawable list_green_down 0x7f07005b
+int drawable list_green_middle 0x7f07005c
+int drawable list_green_single 0x7f07005d
+int drawable list_green_up 0x7f07005e
+int drawable list_red_down 0x7f07005f
+int drawable list_red_middle 0x7f070060
+int drawable list_red_single 0x7f070061
+int drawable list_red_up 0x7f070062
+int drawable list_white_down 0x7f070063
+int drawable list_white_middle 0x7f070064
+int drawable list_white_single 0x7f070065
+int drawable list_white_up 0x7f070066
+int drawable list_yellow_down 0x7f070067
+int drawable list_yellow_middle 0x7f070068
+int drawable list_yellow_single 0x7f070069
+int drawable list_yellow_up 0x7f07006a
+int drawable menu_delete 0x7f07006b
+int drawable menu_move 0x7f07006c
+int drawable new_note 0x7f07006d
+int drawable new_note_normal 0x7f07006e
+int drawable new_note_pressed 0x7f07006f
+int drawable note_edit_color_selector_panel 0x7f070070
+int drawable notification 0x7f070071
+int drawable notification_template_icon_bg 0x7f070072
+int drawable search_result 0x7f070073
+int drawable selected 0x7f070074
+int drawable splash 0x7f070075
+int drawable title_alert 0x7f070076
+int drawable title_bar_bg 0x7f070077
+int drawable widget_2x_blue 0x7f070078
+int drawable widget_2x_green 0x7f070079
+int drawable widget_2x_red 0x7f07007a
+int drawable widget_2x_white 0x7f07007b
+int drawable widget_2x_yellow 0x7f07007c
+int drawable widget_4x_blue 0x7f07007d
+int drawable widget_4x_green 0x7f07007e
+int drawable widget_4x_red 0x7f07007f
+int drawable widget_4x_white 0x7f070080
+int drawable widget_4x_yellow 0x7f070081
int id account_dialog_subtitle 0x7f080000
int id account_dialog_title 0x7f080001
int id action0 0x7f080002
diff --git a/src/app/build/intermediates/source_set_path_map/debug/file-map.txt b/src/app/build/intermediates/source_set_path_map/debug/file-map.txt
index 99d1147d..608569c3 100644
--- a/src/app/build/intermediates/source_set_path_map/debug/file-map.txt
+++ b/src/app/build/intermediates/source_set_path_map/debug/file-map.txt
@@ -1,8 +1,8 @@
net.micode.notes.app-appcompat-v7-22.2.1-0 C:\Users\huigenb\.gradle\caches\transforms-3\1dbc0f7261c89eb9b9e5c125a3979522\transformed\appcompat-v7-22.2.1\res
-net.micode.notes.app-pngs-1 C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\generated\res\pngs\debug
-net.micode.notes.app-resValues-2 C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\generated\res\resValues\debug
-net.micode.notes.app-packageDebugResources-3 C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\incremental\debug\packageDebugResources\merged.dir
-net.micode.notes.app-packageDebugResources-4 C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\incremental\debug\packageDebugResources\stripped.dir
-net.micode.notes.app-merged_res-5 C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debug
-net.micode.notes.app-debug-6 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\debug\res
-net.micode.notes.app-main-7 C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\res
+net.micode.notes.app-pngs-1 C:\Users\huigenb\Desktop\Git\ghnb\src\app\build\generated\res\pngs\debug
+net.micode.notes.app-resValues-2 C:\Users\huigenb\Desktop\Git\ghnb\src\app\build\generated\res\resValues\debug
+net.micode.notes.app-packageDebugResources-3 C:\Users\huigenb\Desktop\Git\ghnb\src\app\build\intermediates\incremental\debug\packageDebugResources\merged.dir
+net.micode.notes.app-packageDebugResources-4 C:\Users\huigenb\Desktop\Git\ghnb\src\app\build\intermediates\incremental\debug\packageDebugResources\stripped.dir
+net.micode.notes.app-merged_res-5 C:\Users\huigenb\Desktop\Git\ghnb\src\app\build\intermediates\merged_res\debug
+net.micode.notes.app-debug-6 C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\debug\res
+net.micode.notes.app-main-7 C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\res
diff --git a/src/app/build/intermediates/source_set_path_map/debugAndroidTest/file-map.txt b/src/app/build/intermediates/source_set_path_map/debugAndroidTest/file-map.txt
index a1a1294e..bd14f8c1 100644
--- a/src/app/build/intermediates/source_set_path_map/debugAndroidTest/file-map.txt
+++ b/src/app/build/intermediates/source_set_path_map/debugAndroidTest/file-map.txt
@@ -1,4 +1,4 @@
-net.micode.notes.test.app-androidTest-0 C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\generated\res\resValues\androidTest\debug
-net.micode.notes.test.app-mergeDebugAndroidTestResources-1 C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\incremental\debugAndroidTest\mergeDebugAndroidTestResources\merged.dir
-net.micode.notes.test.app-mergeDebugAndroidTestResources-2 C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\incremental\debugAndroidTest\mergeDebugAndroidTestResources\stripped.dir
-net.micode.notes.test.app-merged_res-3 C:\Users\huigenb\Desktop\All tasks\software\Code\app\build\intermediates\merged_res\debugAndroidTest
+net.micode.notes.test.app-androidTest-0 C:\Users\huigenb\Desktop\Git\ghnb\src\app\build\generated\res\resValues\androidTest\debug
+net.micode.notes.test.app-mergeDebugAndroidTestResources-1 C:\Users\huigenb\Desktop\Git\ghnb\src\app\build\intermediates\incremental\debugAndroidTest\mergeDebugAndroidTestResources\merged.dir
+net.micode.notes.test.app-mergeDebugAndroidTestResources-2 C:\Users\huigenb\Desktop\Git\ghnb\src\app\build\intermediates\incremental\debugAndroidTest\mergeDebugAndroidTestResources\stripped.dir
+net.micode.notes.test.app-merged_res-3 C:\Users\huigenb\Desktop\Git\ghnb\src\app\build\intermediates\merged_res\debugAndroidTest
diff --git a/src/app/build/intermediates/stable_resource_ids_file/debug/stableIds.txt b/src/app/build/intermediates/stable_resource_ids_file/debug/stableIds.txt
index 1b3833af..a9aad975 100644
--- a/src/app/build/intermediates/stable_resource_ids_file/debug/stableIds.txt
+++ b/src/app/build/intermediates/stable_resource_ids_file/debug/stableIds.txt
@@ -199,8 +199,6 @@ net.micode.notes:style/AlertDialog.AppCompat.Light = 0x7f0f0001
net.micode.notes:style/Base.Widget.AppCompat.ActionBar.Solid = 0x7f0f0056
net.micode.notes:style/AlertDialog.AppCompat = 0x7f0f0000
net.micode.notes:string/widget_under_visit_mode = 0x7f0e007b
-net.micode.notes:style/Base.TextAppearance.AppCompat.Menu = 0x7f0f001b
-net.micode.notes:string/title_activity_splash = 0x7f0e0079
net.micode.notes:string/title_activity_fullscreen = 0x7f0e0078
net.micode.notes:string/ticker_syncing = 0x7f0e0077
net.micode.notes:string/ticker_fail = 0x7f0e0075
@@ -245,13 +243,13 @@ net.micode.notes:string/menu_font_size = 0x7f0e003c
net.micode.notes:attr/actionModeFindDrawable = 0x7f030015
net.micode.notes:id/search_close_btn = 0x7f080079
net.micode.notes:string/menu_font_large = 0x7f0e003a
-net.micode.notes:drawable/edit_white = 0x7f070049
+net.micode.notes:drawable/edit_white = 0x7f07004b
net.micode.notes:string/menu_deselect_all = 0x7f0e0035
net.micode.notes:id/beginning = 0x7f080016
net.micode.notes:string/menu_create_folder = 0x7f0e0033
net.micode.notes:style/TextAppearance.AppCompat.Small.Inverse = 0x7f0f00b9
net.micode.notes:string/format_exported_file_location = 0x7f0e002d
-net.micode.notes:drawable/bg_color_btn_mask = 0x7f07003c
+net.micode.notes:drawable/bg_color_btn_mask = 0x7f07003e
net.micode.notes:string/folder_exist = 0x7f0e002a
net.micode.notes:string/abc_action_bar_home_description = 0x7f0e0000
net.micode.notes:string/file_path = 0x7f0e0029
@@ -261,7 +259,7 @@ net.micode.notes:string/error_sdcard_unmounted = 0x7f0e0023
net.micode.notes:string/error_sdcard_export = 0x7f0e0022
net.micode.notes:string/datetime_dialog_ok = 0x7f0e001b
net.micode.notes:string/call_record_folder_name = 0x7f0e0019
-net.micode.notes:drawable/list_red_up = 0x7f070060
+net.micode.notes:drawable/list_red_up = 0x7f070062
net.micode.notes:string/app_widget4x4 = 0x7f0e0017
net.micode.notes:string/alert_title_delete = 0x7f0e0014
net.micode.notes:string/abc_shareactionprovider_share_with_application = 0x7f0e000f
@@ -291,12 +289,10 @@ net.micode.notes:attr/actionModeCopyDrawable = 0x7f030013
net.micode.notes:layout/notification_media_cancel_action = 0x7f0a0026
net.micode.notes:layout/notification_media_action = 0x7f0a0025
net.micode.notes:string/preferences_title = 0x7f0e0066
-net.micode.notes:drawable/abc_textfield_default_mtrl_alpha = 0x7f070037
+net.micode.notes:drawable/abc_textfield_default_mtrl_alpha = 0x7f070039
net.micode.notes:layout/note_list_footer = 0x7f0a0024
net.micode.notes:dimen/disabled_alpha_material_light = 0x7f060041
net.micode.notes:layout/note_list = 0x7f0a0022
-net.micode.notes:id/move = 0x7f080062
-net.micode.notes:string/menu_setting = 0x7f0e0049
net.micode.notes:id/src_over = 0x7f080089
net.micode.notes:id/title = 0x7f080093
net.micode.notes:layout/note_edit = 0x7f0a001f
@@ -311,7 +307,7 @@ net.micode.notes:attr/colorPrimary = 0x7f030042
net.micode.notes:layout/abc_simple_dropdown_hint = 0x7f0a0018
net.micode.notes:string/sync_progress_syncing = 0x7f0e0073
net.micode.notes:layout/abc_search_dropdown_item_icons_2line = 0x7f0a0015
-net.micode.notes:drawable/abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f070019
+net.micode.notes:drawable/abc_ic_menu_moreoverflow_mtrl_alpha = 0x7f07001b
net.micode.notes:string/error_note_empty_for_clock = 0x7f0e001f
net.micode.notes:layout/abc_screen_toolbar = 0x7f0a0014
net.micode.notes:attr/listPreferredItemHeightLarge = 0x7f030072
@@ -347,7 +343,7 @@ net.micode.notes:id/widget_bg_image = 0x7f08009f
net.micode.notes:string/preferences_dialog_select_account_title = 0x7f0e0060
net.micode.notes:id/text_num = 0x7f080091
net.micode.notes:attr/fullscreenBackgroundColor = 0x7f03005d
-net.micode.notes:drawable/abc_dialog_material_background_dark = 0x7f070010
+net.micode.notes:drawable/abc_dialog_material_background_dark = 0x7f070012
net.micode.notes:id/text2 = 0x7f08008f
net.micode.notes:integer/status_bar_notification_info_maxnum = 0x7f090004
net.micode.notes:id/text = 0x7f08008e
@@ -355,10 +351,10 @@ net.micode.notes:id/sv_note_edit = 0x7f08008c
net.micode.notes:id/submit_area = 0x7f08008b
net.micode.notes:dimen/notification_large_icon_height = 0x7f060042
net.micode.notes:id/shortcut = 0x7f080082
-net.micode.notes:drawable/abc_switch_track_mtrl_alpha = 0x7f070032
+net.micode.notes:drawable/abc_switch_track_mtrl_alpha = 0x7f070034
net.micode.notes:id/select_dialog_listview = 0x7f080080
net.micode.notes:style/TextAppearance.StatusBar.EventContent.Time = 0x7f0f00cf
-net.micode.notes:drawable/abc_btn_check_material = 0x7f070002
+net.micode.notes:drawable/abc_btn_check_material = 0x7f070004
net.micode.notes:string/menu_font_super = 0x7f0e003e
net.micode.notes:id/search_plate = 0x7f08007d
net.micode.notes:attr/textAppearanceLargePopupMenu = 0x7f0300a9
@@ -390,17 +386,19 @@ net.micode.notes:id/navigation_bar = 0x7f080064
net.micode.notes:attr/windowActionBar = 0x7f0300c1
net.micode.notes:id/multiply = 0x7f080063
net.micode.notes:layout/widget_4x = 0x7f0a0033
+net.micode.notes:string/menu_setting = 0x7f0e0049
+net.micode.notes:id/move = 0x7f080062
net.micode.notes:style/Base.Widget.AppCompat.Light.PopupMenu.Overflow = 0x7f0f0075
net.micode.notes:id/middle = 0x7f080060
-net.micode.notes:drawable/abc_ic_go_search_api_mtrl_alpha = 0x7f070016
-net.micode.notes:drawable/icon_app_new = 0x7f070051
+net.micode.notes:drawable/abc_ic_go_search_api_mtrl_alpha = 0x7f070018
+net.micode.notes:drawable/icon_app_new = 0x7f070053
net.micode.notes:id/list_item = 0x7f08004d
net.micode.notes:id/menu_sync = 0x7f08005f
net.micode.notes:id/menu_share = 0x7f08005e
net.micode.notes:id/menu_send_to_desktop = 0x7f08005c
net.micode.notes:id/menu_search = 0x7f08005b
net.micode.notes:style/Base.TextAppearance.AppCompat.Large.Inverse = 0x7f0f0016
-net.micode.notes:drawable/dropdown_icon = 0x7f070040
+net.micode.notes:drawable/dropdown_icon = 0x7f070042
net.micode.notes:layout/abc_screen_content_include = 0x7f0a0011
net.micode.notes:id/menu_new_note = 0x7f08005a
net.micode.notes:id/menu_list_mode = 0x7f080058
@@ -418,7 +416,7 @@ net.micode.notes:id/ll_font_super = 0x7f080051
net.micode.notes:attr/listChoiceBackgroundIndicator = 0x7f03006c
net.micode.notes:id/ll_font_normal = 0x7f08004f
net.micode.notes:id/ll_font_small = 0x7f080050
-net.micode.notes:drawable/font_large = 0x7f07004b
+net.micode.notes:drawable/font_large = 0x7f07004d
net.micode.notes:id/search_button = 0x7f080078
net.micode.notes:id/line1 = 0x7f08004a
net.micode.notes:id/iv_small_select = 0x7f080048
@@ -463,7 +461,7 @@ net.micode.notes:id/cancel_action = 0x7f08001a
net.micode.notes:id/btn_set_bg_color = 0x7f080018
net.micode.notes:layout/activity_splash = 0x7f0a001a
net.micode.notes:style/TextAppearance.AppCompat.Subhead = 0x7f0f00ba
-net.micode.notes:drawable/new_note_normal = 0x7f07006c
+net.micode.notes:drawable/new_note_normal = 0x7f07006e
net.micode.notes:id/amPm = 0x7f080015
net.micode.notes:attr/spinnerStyle = 0x7f03009c
net.micode.notes:id/action_mode_close_button = 0x7f080010
@@ -480,170 +478,172 @@ net.micode.notes:id/action_bar = 0x7f080003
net.micode.notes:id/tv_title = 0x7f08009b
net.micode.notes:style/Widget.AppCompat.Light.Spinner.DropDown.ActionBar = 0x7f0f011e
net.micode.notes:id/action0 = 0x7f080002
-net.micode.notes:drawable/edit_green = 0x7f070042
+net.micode.notes:drawable/edit_green = 0x7f070044
net.micode.notes:id/account_dialog_subtitle = 0x7f080000
-net.micode.notes:drawable/widget_4x_green = 0x7f07007c
-net.micode.notes:drawable/widget_4x_white = 0x7f07007e
+net.micode.notes:drawable/widget_4x_green = 0x7f07007e
+net.micode.notes:drawable/widget_4x_white = 0x7f070080
net.micode.notes:string/menu_folder_change_name = 0x7f0e0037
net.micode.notes:style/Theme.AppCompat.Dialog.Alert = 0x7f0f00de
-net.micode.notes:drawable/widget_4x_red = 0x7f07007d
+net.micode.notes:drawable/widget_4x_red = 0x7f07007f
net.micode.notes:style/Base.V7.Theme.AppCompat = 0x7f0f004f
-net.micode.notes:drawable/widget_4x_blue = 0x7f07007b
+net.micode.notes:drawable/widget_4x_blue = 0x7f07007d
net.micode.notes:style/Base.V12.Widget.AppCompat.EditText = 0x7f0f004a
-net.micode.notes:drawable/widget_2x_red = 0x7f070078
-net.micode.notes:drawable/widget_2x_blue = 0x7f070076
+net.micode.notes:drawable/widget_2x_red = 0x7f07007a
+net.micode.notes:drawable/widget_2x_blue = 0x7f070078
net.micode.notes:style/Base.Widget.AppCompat.ActionBar.TabView = 0x7f0f0059
-net.micode.notes:drawable/splash = 0x7f070073
-net.micode.notes:drawable/search_result = 0x7f070071
+net.micode.notes:drawable/splash = 0x7f070075
+net.micode.notes:drawable/search_result = 0x7f070073
net.micode.notes:style/Widget.AppCompat.CompoundButton.Switch = 0x7f0f0105
-net.micode.notes:drawable/new_note_pressed = 0x7f07006d
-net.micode.notes:drawable/selected = 0x7f070072
-net.micode.notes:drawable/new_note = 0x7f07006b
-net.micode.notes:drawable/menu_move = 0x7f07006a
-net.micode.notes:drawable/menu_delete = 0x7f070069
+net.micode.notes:drawable/new_note_pressed = 0x7f07006f
+net.micode.notes:drawable/selected = 0x7f070074
+net.micode.notes:drawable/new_note = 0x7f07006d
+net.micode.notes:drawable/menu_move = 0x7f07006c
+net.micode.notes:drawable/menu_delete = 0x7f07006b
net.micode.notes:string/delete_remind_time_message = 0x7f0e001c
-net.micode.notes:drawable/list_white_middle = 0x7f070062
+net.micode.notes:drawable/list_white_middle = 0x7f070064
net.micode.notes:string/abc_searchview_description_voice = 0x7f0e000d
net.micode.notes:style/Widget.AppCompat.Light.ActionButton = 0x7f0f0112
net.micode.notes:color/switch_thumb_material_light = 0x7f050042
-net.micode.notes:drawable/clock = 0x7f07003e
-net.micode.notes:drawable/list_white_down = 0x7f070061
-net.micode.notes:drawable/list_red_middle = 0x7f07005e
+net.micode.notes:drawable/clock = 0x7f070040
+net.micode.notes:drawable/list_white_down = 0x7f070063
+net.micode.notes:drawable/list_red_middle = 0x7f070060
net.micode.notes:style/TextAppearance.AppCompat.Widget.ActionBar.Menu = 0x7f0f00be
net.micode.notes:attr/actionBarTabBarStyle = 0x7f030006
-net.micode.notes:drawable/list_green_up = 0x7f07005c
+net.micode.notes:drawable/list_green_up = 0x7f07005e
net.micode.notes:attr/title = 0x7f0300b4
-net.micode.notes:drawable/list_yellow_down = 0x7f070065
-net.micode.notes:drawable/list_green_single = 0x7f07005b
+net.micode.notes:drawable/list_yellow_down = 0x7f070067
+net.micode.notes:drawable/list_green_single = 0x7f07005d
net.micode.notes:attr/queryHint = 0x7f03008d
-net.micode.notes:drawable/list_green_down = 0x7f070059
-net.micode.notes:drawable/list_blue_single = 0x7f070055
+net.micode.notes:drawable/list_green_down = 0x7f07005b
+net.micode.notes:drawable/list_blue_single = 0x7f070057
net.micode.notes:style/Widget.AppCompat.PopupMenu.Overflow = 0x7f0f0124
net.micode.notes:id/split_action_bar = 0x7f080086
net.micode.notes:dimen/abc_floating_window_z = 0x7f060025
net.micode.notes:id/showHome = 0x7f080084
-net.micode.notes:drawable/list_blue_middle = 0x7f070054
+net.micode.notes:drawable/list_blue_middle = 0x7f070056
net.micode.notes:attr/windowMinWidthMajor = 0x7f0300c8
net.micode.notes:id/none = 0x7f080066
-net.micode.notes:drawable/abc_spinner_textfield_background_material = 0x7f070030
+net.micode.notes:drawable/abc_spinner_textfield_background_material = 0x7f070032
net.micode.notes:attr/displayOptions = 0x7f03004f
-net.micode.notes:drawable/list_background = 0x7f070052
-net.micode.notes:drawable/icon_app = 0x7f070050
-net.micode.notes:drawable/font_super = 0x7f07004f
+net.micode.notes:drawable/list_background = 0x7f070054
+net.micode.notes:drawable/icon_app = 0x7f070052
+net.micode.notes:drawable/font_super = 0x7f070051
net.micode.notes:style/Platform.V14.AppCompat.Light = 0x7f0f0093
-net.micode.notes:drawable/font_small = 0x7f07004e
+net.micode.notes:drawable/font_small = 0x7f070050
net.micode.notes:id/iv_alert_icon = 0x7f08003b
net.micode.notes:style/Base.Theme.AppCompat.Dialog.MinWidth = 0x7f0f0039
-net.micode.notes:drawable/font_size_selector_bg = 0x7f07004d
+net.micode.notes:drawable/font_size_selector_bg = 0x7f07004f
net.micode.notes:style/Base.V7.Widget.AppCompat.EditText = 0x7f0f0054
-net.micode.notes:drawable/font_normal = 0x7f07004c
+net.micode.notes:drawable/font_normal = 0x7f07004e
net.micode.notes:style/Base.TextAppearance.AppCompat.Display2 = 0x7f0f0010
-net.micode.notes:drawable/edit_yellow = 0x7f07004a
+net.micode.notes:drawable/edit_yellow = 0x7f07004c
net.micode.notes:menu/call_note_edit = 0x7f0b0000
net.micode.notes:layout/datetime_picker = 0x7f0a001c
net.micode.notes:bool/abc_action_bar_embed_tabs_pre_jb = 0x7f040001
-net.micode.notes:drawable/widget_2x_white = 0x7f070079
+net.micode.notes:drawable/widget_2x_white = 0x7f07007b
net.micode.notes:color/user_query_highlight = 0x7f050045
net.micode.notes:attr/colorAccent = 0x7f03003d
-net.micode.notes:drawable/edit_title_white = 0x7f070047
+net.micode.notes:drawable/edit_title_white = 0x7f070049
net.micode.notes:attr/listLayout = 0x7f03006f
-net.micode.notes:drawable/edit_title_red = 0x7f070046
+net.micode.notes:drawable/edit_title_red = 0x7f070048
net.micode.notes:style/TextAppearance.Widget.AppCompat.ExpandedMenu.Item = 0x7f0f00d1
-net.micode.notes:drawable/edit_title_green = 0x7f070045
+net.micode.notes:drawable/edit_title_green = 0x7f070047
net.micode.notes:string/dummy_content = 0x7f0e001e
-net.micode.notes:drawable/edit_title_blue = 0x7f070044
-net.micode.notes:drawable/edit_blue = 0x7f070041
+net.micode.notes:drawable/edit_title_blue = 0x7f070046
+net.micode.notes:drawable/edit_blue = 0x7f070043
net.micode.notes:string/menu_move_parent_folder = 0x7f0e0041
-net.micode.notes:drawable/delete = 0x7f07003f
-net.micode.notes:drawable/notification = 0x7f07006f
-net.micode.notes:drawable/call_record = 0x7f07003d
+net.micode.notes:drawable/delete = 0x7f070041
+net.micode.notes:drawable/notification = 0x7f070071
+net.micode.notes:drawable/call_record = 0x7f07003f
net.micode.notes:id/menu_new_folder = 0x7f080059
net.micode.notes:id/collapseActionView = 0x7f08001e
-net.micode.notes:drawable/bg_btn_set_color = 0x7f07003b
+net.micode.notes:drawable/bg_btn_set_color = 0x7f07003d
net.micode.notes:string/format_datetime_mdhm = 0x7f0e002c
net.micode.notes:id/menu_delete_remind = 0x7f080055
-net.micode.notes:drawable/abc_textfield_search_material = 0x7f07003a
-net.micode.notes:drawable/title_bar_bg = 0x7f070075
-net.micode.notes:drawable/abc_textfield_search_activated_mtrl_alpha = 0x7f070038
+net.micode.notes:drawable/abc_textfield_search_material = 0x7f07003c
+net.micode.notes:drawable/title_bar_bg = 0x7f070077
+net.micode.notes:drawable/abc_textfield_search_activated_mtrl_alpha = 0x7f07003a
net.micode.notes:style/Theme.AppCompat.NoActionBar = 0x7f0f00e8
-net.micode.notes:drawable/abc_textfield_activated_mtrl_alpha = 0x7f070036
+net.micode.notes:drawable/abc_textfield_activated_mtrl_alpha = 0x7f070038
net.micode.notes:attr/initialActivityCount = 0x7f030068
net.micode.notes:layout/select_dialog_multichoice_material = 0x7f0a002e
net.micode.notes:id/iv_bg_white_select = 0x7f080043
net.micode.notes:style/Base.Animation.AppCompat.Dialog = 0x7f0f0006
-net.micode.notes:drawable/abc_tab_indicator_mtrl_alpha = 0x7f070034
-net.micode.notes:drawable/abc_tab_indicator_material = 0x7f070033
+net.micode.notes:drawable/abc_tab_indicator_mtrl_alpha = 0x7f070036
+net.micode.notes:drawable/abc_tab_indicator_material = 0x7f070035
net.micode.notes:styleable/ActionMenuItemView = 0x7f100002
net.micode.notes:attr/buttonBarNeutralButtonStyle = 0x7f030030
-net.micode.notes:drawable/abc_switch_thumb_material = 0x7f070031
+net.micode.notes:drawable/abc_switch_thumb_material = 0x7f070033
net.micode.notes:layout/abc_action_bar_view_list_nav_layout = 0x7f0a0002
-net.micode.notes:drawable/abc_spinner_mtrl_am_alpha = 0x7f07002f
+net.micode.notes:drawable/abc_spinner_mtrl_am_alpha = 0x7f070031
net.micode.notes:attr/actionBarSize = 0x7f030003
net.micode.notes:attr/iconifiedByDefault = 0x7f030066
-net.micode.notes:drawable/abc_ratingbar_full_material = 0x7f07002e
+net.micode.notes:drawable/abc_ratingbar_full_material = 0x7f070030
net.micode.notes:id/disableHome = 0x7f080027
-net.micode.notes:drawable/abc_popup_background_mtrl_mult = 0x7f07002d
-net.micode.notes:drawable/abc_list_selector_holo_light = 0x7f07002b
-net.micode.notes:drawable/abc_list_selector_holo_dark = 0x7f07002a
+net.micode.notes:drawable/abc_popup_background_mtrl_mult = 0x7f07002f
+net.micode.notes:drawable/abc_list_selector_holo_light = 0x7f07002d
+net.micode.notes:drawable/abc_list_selector_holo_dark = 0x7f07002c
net.micode.notes:string/error_note_not_exist = 0x7f0e0021
net.micode.notes:dimen/abc_button_padding_vertical_material = 0x7f060013
net.micode.notes:attr/alertDialogTheme = 0x7f030025
-net.micode.notes:drawable/abc_list_selector_disabled_holo_dark = 0x7f070028
+net.micode.notes:drawable/abc_list_selector_disabled_holo_dark = 0x7f07002a
net.micode.notes:string/preferences_dialog_change_account_title = 0x7f0e005d
net.micode.notes:string/format_folder_files_count = 0x7f0e002e
-net.micode.notes:drawable/abc_list_selector_background_transition_holo_light = 0x7f070027
-net.micode.notes:drawable/abc_item_background_holo_light = 0x7f070020
+net.micode.notes:drawable/abc_list_selector_background_transition_holo_light = 0x7f070029
+net.micode.notes:drawable/abc_item_background_holo_light = 0x7f070022
net.micode.notes:attr/navigationMode = 0x7f03007d
-net.micode.notes:drawable/abc_item_background_holo_dark = 0x7f07001f
-net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.Switch = 0x7f0f002f
-net.micode.notes:color/light_blue_600 = 0x7f050024
-net.micode.notes:id/tv_title_bar = 0x7f08009c
-net.micode.notes:attr/maxButtonHeight = 0x7f030077
-net.micode.notes:drawable/abc_ic_voice_search_api_mtrl_alpha = 0x7f07001e
+net.micode.notes:drawable/abc_item_background_holo_dark = 0x7f070021
net.micode.notes:color/primary_text_default_material_dark = 0x7f050034
-net.micode.notes:drawable/abc_ic_menu_paste_mtrl_am_alpha = 0x7f07001a
+net.micode.notes:drawable/abc_ic_menu_paste_mtrl_am_alpha = 0x7f07001c
net.micode.notes:string/preferences_toast_success_set_accout = 0x7f0e0068
net.micode.notes:layout/note_edit_list_item = 0x7f0a0020
-net.micode.notes:drawable/widget_2x_yellow = 0x7f07007a
+net.micode.notes:drawable/widget_2x_yellow = 0x7f07007c
net.micode.notes:style/Base.Widget.AppCompat.RatingBar = 0x7f0f007f
net.micode.notes:string/sync_progress_init_list = 0x7f0e0071
-net.micode.notes:drawable/abc_ic_commit_search_api_mtrl_alpha = 0x7f070015
+net.micode.notes:drawable/abc_ic_commit_search_api_mtrl_alpha = 0x7f070017
net.micode.notes:style/Base.V12.Widget.AppCompat.AutoCompleteTextView = 0x7f0f0049
net.micode.notes:attr/itemPadding = 0x7f03006a
net.micode.notes:dimen/abc_dropdownitem_text_padding_left = 0x7f060020
net.micode.notes:xml/widget_2x_info = 0x7f110002
net.micode.notes:style/Theme.AppCompat.Light.NoActionBar = 0x7f0f00e7
net.micode.notes:attr/actionModeShareDrawable = 0x7f030019
-net.micode.notes:drawable/abc_ic_ab_back_mtrl_am_alpha = 0x7f070013
+net.micode.notes:drawable/abc_ic_ab_back_mtrl_am_alpha = 0x7f070015
net.micode.notes:color/abc_secondary_text_material_light = 0x7f05000c
-net.micode.notes:drawable/abc_edit_text_material = 0x7f070012
+net.micode.notes:drawable/abc_edit_text_material = 0x7f070014
net.micode.notes:layout/abc_list_menu_item_radio = 0x7f0a000f
net.micode.notes:styleable/Theme = 0x7f100016
-net.micode.notes:drawable/abc_cab_background_top_material = 0x7f07000e
+net.micode.notes:drawable/abc_cab_background_top_material = 0x7f070010
net.micode.notes:attr/textAppearanceListItemSmall = 0x7f0300ab
net.micode.notes:color/bright_foreground_disabled_material_light = 0x7f050015
-net.micode.notes:drawable/abc_cab_background_internal_bg = 0x7f07000d
+net.micode.notes:drawable/abc_cab_background_internal_bg = 0x7f07000f
net.micode.notes:id/tv_modified_date = 0x7f080098
net.micode.notes:string/hint_foler_name = 0x7f0e0030
net.micode.notes:style/Base.Widget.AppCompat.PopupMenu.Overflow = 0x7f0f007b
net.micode.notes:id/parentPanel = 0x7f08006e
net.micode.notes:bool/abc_config_showMenuShortcutsWhenKeyboardPresent = 0x7f040006
-net.micode.notes:drawable/abc_btn_rating_star_off_mtrl_alpha = 0x7f070009
+net.micode.notes:drawable/abc_btn_rating_star_off_mtrl_alpha = 0x7f07000b
net.micode.notes:layout/abc_list_menu_item_layout = 0x7f0a000e
net.micode.notes:attr/middleBarArrowSize = 0x7f030079
-net.micode.notes:drawable/abc_btn_radio_to_on_mtrl_015 = 0x7f070008
-net.micode.notes:drawable/abc_ic_menu_share_mtrl_alpha = 0x7f07001c
+net.micode.notes:drawable/abc_btn_radio_to_on_mtrl_015 = 0x7f07000a
+net.micode.notes:drawable/abc_ic_menu_share_mtrl_alpha = 0x7f07001e
net.micode.notes:style/Base.TextAppearance.AppCompat.Medium = 0x7f0f0019
-net.micode.notes:drawable/abc_btn_radio_material = 0x7f070006
-net.micode.notes:drawable/widget_4x_yellow = 0x7f07007f
+net.micode.notes:drawable/abc_btn_radio_material = 0x7f070008
+net.micode.notes:drawable/widget_4x_yellow = 0x7f070081
net.micode.notes:attr/backgroundSplit = 0x7f030028
net.micode.notes:bool/abc_config_allowActionMenuItemTextWithIcon = 0x7f040004
-net.micode.notes:drawable/abc_btn_check_to_on_mtrl_000 = 0x7f070003
+net.micode.notes:drawable/abc_btn_check_to_on_mtrl_000 = 0x7f070005
net.micode.notes:dimen/abc_edit_text_inset_bottom_material = 0x7f060022
net.micode.notes:attr/textAppearanceSmallPopupMenu = 0x7f0300ae
net.micode.notes:color/abc_background_cache_hint_selector_material_dark = 0x7f050000
-net.micode.notes:drawable/abc_btn_borderless_material = 0x7f070001
+net.micode.notes:drawable/abc_btn_borderless_material = 0x7f070003
+net.micode.notes:attr/commitIcon = 0x7f030045
+net.micode.notes:style/Base.Theme.AppCompat.Dialog.FixedSize = 0x7f0f0038
+net.micode.notes:color/secondary_text_dark = 0x7f05003a
net.micode.notes:attr/backgroundStacked = 0x7f030029
+net.micode.notes:drawable/abc = 0x7f070001
+net.micode.notes:style/Base.TextAppearance.AppCompat.Menu = 0x7f0f001b
+net.micode.notes:string/title_activity_splash = 0x7f0e0079
+net.micode.notes:drawable/a = 0x7f070000
net.micode.notes:dimen/abc_text_size_title_material_toolbar = 0x7f06003b
net.micode.notes:dimen/notification_subtext_size = 0x7f060044
net.micode.notes:id/tv_folder_name = 0x7f080097
@@ -670,7 +670,7 @@ net.micode.notes:dimen/abc_panel_menu_list_width = 0x7f060027
net.micode.notes:style/Widget.AppCompat.Light.ActionBar.TabView = 0x7f0f0110
net.micode.notes:dimen/abc_text_size_small_material = 0x7f060037
net.micode.notes:color/primary_material_light = 0x7f050032
-net.micode.notes:drawable/list_yellow_single = 0x7f070067
+net.micode.notes:drawable/list_yellow_single = 0x7f070069
net.micode.notes:dimen/abc_edit_text_inset_top_material = 0x7f060024
net.micode.notes:dimen/abc_edit_text_inset_horizontal_material = 0x7f060023
net.micode.notes:color/black_overlay = 0x7f050013
@@ -682,7 +682,7 @@ net.micode.notes:id/widget_text = 0x7f0800a0
net.micode.notes:style/HighlightTextAppearancePrimary = 0x7f0f0088
net.micode.notes:color/button_material_light = 0x7f05001b
net.micode.notes:dimen/abc_dialog_min_width_minor = 0x7f06001a
-net.micode.notes:drawable/edit_title_yellow = 0x7f070048
+net.micode.notes:drawable/edit_title_yellow = 0x7f07004a
net.micode.notes:color/bright_foreground_inverse_material_light = 0x7f050017
net.micode.notes:dimen/abc_config_prefDialogWidth = 0x7f060014
net.micode.notes:attr/dividerHorizontal = 0x7f030051
@@ -692,7 +692,7 @@ net.micode.notes:dimen/abc_button_padding_horizontal_material = 0x7f060012
net.micode.notes:dimen/abc_button_inset_horizontal_material = 0x7f060010
net.micode.notes:style/Theme.AppCompat.Light.Dialog.Alert = 0x7f0f00e4
net.micode.notes:string/abc_shareactionprovider_share_with = 0x7f0e000e
-net.micode.notes:drawable/edit_red = 0x7f070043
+net.micode.notes:drawable/edit_red = 0x7f070045
net.micode.notes:string/sync_progress_login = 0x7f0e0072
net.micode.notes:dimen/abc_control_corner_material = 0x7f060015
net.micode.notes:dimen/abc_action_button_min_width_material = 0x7f06000d
@@ -701,7 +701,7 @@ net.micode.notes:style/ThemeOverlay.AppCompat.Dark.ActionBar = 0x7f0f00ee
net.micode.notes:dimen/abc_search_view_text_min_width = 0x7f060029
net.micode.notes:dimen/abc_action_button_min_height_material = 0x7f06000c
net.micode.notes:attr/suggestionRowLayout = 0x7f0300a3
-net.micode.notes:drawable/list_red_down = 0x7f07005d
+net.micode.notes:drawable/list_red_down = 0x7f07005f
net.micode.notes:style/Widget.AppCompat.CompoundButton.RadioButton = 0x7f0f0104
net.micode.notes:string/app_name = 0x7f0e0015
net.micode.notes:attr/actionOverflowMenuStyle = 0x7f03001e
@@ -738,25 +738,22 @@ net.micode.notes:id/tv_name = 0x7f080099
net.micode.notes:dimen/abc_dialog_list_padding_vertical_material = 0x7f060018
net.micode.notes:attr/switchTextAppearance = 0x7f0300a7
net.micode.notes:id/menu_setting = 0x7f08005d
-net.micode.notes:drawable/abc_list_pressed_holo_light = 0x7f070025
-net.micode.notes:drawable/abc_ic_menu_cut_mtrl_alpha = 0x7f070018
+net.micode.notes:drawable/abc_list_pressed_holo_light = 0x7f070027
+net.micode.notes:drawable/abc_ic_menu_cut_mtrl_alpha = 0x7f07001a
net.micode.notes:color/material_blue_grey_800 = 0x7f05002a
net.micode.notes:color/switch_thumb_material_dark = 0x7f050041
net.micode.notes:id/showCustom = 0x7f080083
net.micode.notes:id/iv_bg_blue_select = 0x7f08003d
net.micode.notes:anim/abc_slide_out_bottom = 0x7f010008
-net.micode.notes:drawable/abc_dialog_material_background_light = 0x7f070011
+net.micode.notes:drawable/abc_dialog_material_background_light = 0x7f070013
net.micode.notes:color/switch_thumb_disabled_material_dark = 0x7f05003f
net.micode.notes:color/secondary_text_default_material_dark = 0x7f05003b
net.micode.notes:attr/theme = 0x7f0300b1
net.micode.notes:dimen/abc_control_padding_material = 0x7f060017
-net.micode.notes:drawable/abc_ic_menu_copy_mtrl_am_alpha = 0x7f070017
-net.micode.notes:drawable/abc_btn_switch_to_on_mtrl_00001 = 0x7f07000b
+net.micode.notes:drawable/abc_ic_menu_copy_mtrl_am_alpha = 0x7f070019
+net.micode.notes:drawable/abc_btn_switch_to_on_mtrl_00001 = 0x7f07000d
net.micode.notes:color/background_floating_material_light = 0x7f050010
net.micode.notes:dimen/abc_text_size_subtitle_material_toolbar = 0x7f060039
-net.micode.notes:attr/commitIcon = 0x7f030045
-net.micode.notes:style/Base.Theme.AppCompat.Dialog.FixedSize = 0x7f0f0038
-net.micode.notes:color/secondary_text_dark = 0x7f05003a
net.micode.notes:color/ripple_material_light = 0x7f050039
net.micode.notes:color/ripple_material_dark = 0x7f050038
net.micode.notes:color/primary_text_disabled_material_light = 0x7f050037
@@ -771,7 +768,7 @@ net.micode.notes:id/customPanel = 0x7f080021
net.micode.notes:string/abc_activitychooserview_choose_application = 0x7f0e0007
net.micode.notes:attr/toolbarNavigationButtonStyle = 0x7f0300bc
net.micode.notes:id/action_mode_bar = 0x7f08000e
-net.micode.notes:drawable/abc_btn_switch_to_on_mtrl_00012 = 0x7f07000c
+net.micode.notes:drawable/abc_btn_switch_to_on_mtrl_00012 = 0x7f07000e
net.micode.notes:dimen/abc_text_size_display_2_material = 0x7f060030
net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.TextView.SpinnerItem = 0x7f0f0030
net.micode.notes:attr/actionModePasteDrawable = 0x7f030016
@@ -792,6 +789,9 @@ net.micode.notes:attr/colorButtonNormal = 0x7f03003e
net.micode.notes:string/menu_normal_mode = 0x7f0e0042
net.micode.notes:color/bright_foreground_inverse_material_dark = 0x7f050016
net.micode.notes:color/light_blue_A400 = 0x7f050027
+net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.Switch = 0x7f0f002f
+net.micode.notes:id/tv_title_bar = 0x7f08009c
+net.micode.notes:color/light_blue_600 = 0x7f050024
net.micode.notes:string/datetime_dialog_cancel = 0x7f0e001a
net.micode.notes:string/abc_searchview_description_submit = 0x7f0e000c
net.micode.notes:dimen/abc_button_inset_vertical_material = 0x7f060011
@@ -816,8 +816,8 @@ net.micode.notes:id/iv_bg_blue = 0x7f08003c
net.micode.notes:attr/buttonBarStyle = 0x7f030032
net.micode.notes:color/switch_thumb_disabled_material_light = 0x7f050040
net.micode.notes:color/dim_foreground_disabled_material_dark = 0x7f05001c
-net.micode.notes:drawable/notification_template_icon_bg = 0x7f070070
-net.micode.notes:drawable/abc_btn_radio_to_on_mtrl_000 = 0x7f070007
+net.micode.notes:drawable/notification_template_icon_bg = 0x7f070072
+net.micode.notes:drawable/abc_btn_radio_to_on_mtrl_000 = 0x7f070009
net.micode.notes:id/listMode = 0x7f08004c
net.micode.notes:attr/dialogPreferredPadding = 0x7f03004c
net.micode.notes:id/action_select_all = 0x7f080011
@@ -831,7 +831,7 @@ net.micode.notes:string/info_note_enter_desktop = 0x7f0e0031
net.micode.notes:color/abc_secondary_text_material_dark = 0x7f05000b
net.micode.notes:style/Base.Widget.AppCompat.Light.ActionBar.TabText.Inverse = 0x7f0f0072
net.micode.notes:id/btn_new_note = 0x7f080017
-net.micode.notes:drawable/abc_btn_rating_star_on_mtrl_alpha = 0x7f07000a
+net.micode.notes:drawable/abc_btn_rating_star_on_mtrl_alpha = 0x7f07000c
net.micode.notes:layout/select_dialog_singlechoice_material = 0x7f0a002f
net.micode.notes:color/abc_search_url_text_pressed = 0x7f050009
net.micode.notes:array/menu_share_ways = 0x7f020001
@@ -842,7 +842,7 @@ net.micode.notes:attr/actionBarStyle = 0x7f030005
net.micode.notes:dimen/notification_large_icon_width = 0x7f060043
net.micode.notes:string/menu_font_small = 0x7f0e003d
net.micode.notes:dimen/abc_text_size_large_material = 0x7f060034
-net.micode.notes:drawable/abc_textfield_search_default_mtrl_alpha = 0x7f070039
+net.micode.notes:drawable/abc_textfield_search_default_mtrl_alpha = 0x7f07003b
net.micode.notes:attr/textAppearanceSearchResultSubtitle = 0x7f0300ac
net.micode.notes:attr/textAllCaps = 0x7f0300a8
net.micode.notes:id/action_menu_divider = 0x7f08000c
@@ -858,8 +858,8 @@ net.micode.notes:attr/colorSwitchThumbNormal = 0x7f030044
net.micode.notes:id/topPanel = 0x7f080095
net.micode.notes:id/note_edit_view = 0x7f08006a
net.micode.notes:style/Base.TextAppearance.AppCompat.Widget.ActionBar.Title = 0x7f0f0028
-net.micode.notes:drawable/title_alert = 0x7f070074
-net.micode.notes:drawable/list_red_single = 0x7f07005f
+net.micode.notes:drawable/title_alert = 0x7f070076
+net.micode.notes:drawable/list_red_single = 0x7f070061
net.micode.notes:attr/selectableItemBackground = 0x7f030093
net.micode.notes:attr/windowMinWidthMinor = 0x7f0300c9
net.micode.notes:attr/disableChildrenWhenDisabled = 0x7f03004e
@@ -869,10 +869,10 @@ net.micode.notes:color/button_material_dark = 0x7f05001a
net.micode.notes:id/cb_edit_item = 0x7f08001b
net.micode.notes:style/Widget.AppCompat.Button = 0x7f0f00fc
net.micode.notes:style/Base.TextAppearance.AppCompat.Small.Inverse = 0x7f0f0020
-net.micode.notes:drawable/list_blue_down = 0x7f070053
+net.micode.notes:drawable/list_blue_down = 0x7f070055
net.micode.notes:attr/windowFixedHeightMinor = 0x7f0300c5
net.micode.notes:attr/windowActionModeOverlay = 0x7f0300c3
-net.micode.notes:drawable/list_blue_up = 0x7f070056
+net.micode.notes:drawable/list_blue_up = 0x7f070058
net.micode.notes:attr/backgroundTint = 0x7f03002a
net.micode.notes:attr/homeAsUpIndicator = 0x7f030063
net.micode.notes:style/Widget.AppCompat.DrawerArrowToggle = 0x7f0f0106
@@ -882,9 +882,9 @@ net.micode.notes:attr/popupWindowStyle = 0x7f030087
net.micode.notes:id/line3 = 0x7f08004b
net.micode.notes:layout/abc_select_dialog_material = 0x7f0a0017
net.micode.notes:attr/listPreferredItemPaddingLeft = 0x7f030074
-net.micode.notes:drawable/abc_list_longpressed_holo = 0x7f070023
+net.micode.notes:drawable/abc_list_longpressed_holo = 0x7f070025
net.micode.notes:attr/textAppearanceSearchResultTitle = 0x7f0300ad
-net.micode.notes:drawable/abc_cab_background_top_mtrl_alpha = 0x7f07000f
+net.micode.notes:drawable/abc_cab_background_top_mtrl_alpha = 0x7f070011
net.micode.notes:attr/voiceIcon = 0x7f0300c0
net.micode.notes:id/expand_activities_button = 0x7f08002f
net.micode.notes:dimen/abc_action_bar_overflow_padding_start_material = 0x7f060006
@@ -910,8 +910,8 @@ net.micode.notes:attr/titleMarginStart = 0x7f0300b7
net.micode.notes:attr/windowFixedWidthMajor = 0x7f0300c6
net.micode.notes:attr/actionBarDivider = 0x7f030000
net.micode.notes:integer/abc_max_action_buttons = 0x7f090002
-net.micode.notes:drawable/list_folder = 0x7f070057
-net.micode.notes:drawable/abc_menu_hardkey_panel_mtrl_mult = 0x7f07002c
+net.micode.notes:drawable/list_folder = 0x7f070059
+net.micode.notes:drawable/abc_menu_hardkey_panel_mtrl_mult = 0x7f07002e
net.micode.notes:attr/isLightTheme = 0x7f030069
net.micode.notes:attr/thickness = 0x7f0300b2
net.micode.notes:string/preferences_menu_change_account = 0x7f0e0064
@@ -953,13 +953,13 @@ net.micode.notes:anim/abc_fade_out = 0x7f010001
net.micode.notes:color/abc_input_method_navigation_guard = 0x7f050002
net.micode.notes:attr/actionViewClass = 0x7f030020
net.micode.notes:attr/titleMarginBottom = 0x7f0300b5
-net.micode.notes:drawable/note_edit_color_selector_panel = 0x7f07006e
+net.micode.notes:drawable/note_edit_color_selector_panel = 0x7f070070
net.micode.notes:attr/searchViewStyle = 0x7f030092
net.micode.notes:id/tabMode = 0x7f08008d
net.micode.notes:string/search = 0x7f0e0069
net.micode.notes:attr/ratingBarStyle = 0x7f03008f
net.micode.notes:attr/drawerArrowStyle = 0x7f030055
-net.micode.notes:drawable/list_green_middle = 0x7f07005a
+net.micode.notes:drawable/list_green_middle = 0x7f07005c
net.micode.notes:attr/queryBackground = 0x7f03008c
net.micode.notes:style/Widget.AppCompat.Button.Borderless = 0x7f0f00fd
net.micode.notes:dimen/dialog_fixed_height_minor = 0x7f06003d
@@ -974,7 +974,7 @@ net.micode.notes:attr/progressBarPadding = 0x7f030089
net.micode.notes:string/note_alert_expired = 0x7f0e004e
net.micode.notes:attr/popupMenuStyle = 0x7f030084
net.micode.notes:string/abc_action_bar_up_description = 0x7f0e0003
-net.micode.notes:drawable/abc_ic_menu_selectall_mtrl_alpha = 0x7f07001b
+net.micode.notes:drawable/abc_ic_menu_selectall_mtrl_alpha = 0x7f07001d
net.micode.notes:style/TextAppearance.AppCompat.Light.Widget.PopupMenu.Large = 0x7f0f00b1
net.micode.notes:dimen/abc_alert_dialog_button_bar_height = 0x7f06000f
net.micode.notes:id/up = 0x7f08009d
@@ -995,8 +995,10 @@ net.micode.notes:attr/navigationIcon = 0x7f03007c
net.micode.notes:style/HighlightTextAppearanceSecondary = 0x7f0f0089
net.micode.notes:attr/navigationContentDescription = 0x7f03007b
net.micode.notes:attr/popupTheme = 0x7f030086
+net.micode.notes:drawable/abc_ic_voice_search_api_mtrl_alpha = 0x7f070020
+net.micode.notes:attr/maxButtonHeight = 0x7f030077
net.micode.notes:attr/actionOverflowButtonStyle = 0x7f03001d
-net.micode.notes:drawable/abc_btn_default_mtrl_shape = 0x7f070005
+net.micode.notes:drawable/abc_btn_default_mtrl_shape = 0x7f070007
net.micode.notes:style/Platform.ThemeOverlay.AppCompat.Light = 0x7f0f008f
net.micode.notes:color/primary_text_disabled_material_dark = 0x7f050036
net.micode.notes:layout/note_list_dropdown_menu = 0x7f0a0023
@@ -1012,7 +1014,7 @@ net.micode.notes:style/Base.Widget.AppCompat.Spinner.Underlined = 0x7f0f0084
net.micode.notes:array/format_for_exported_note = 0x7f020000
net.micode.notes:string/menu_alert = 0x7f0e0032
net.micode.notes:attr/actionModeSplitBackground = 0x7f03001a
-net.micode.notes:drawable/abc_list_divider_mtrl_alpha = 0x7f070021
+net.micode.notes:drawable/abc_list_divider_mtrl_alpha = 0x7f070023
net.micode.notes:style/Base.Theme.AppCompat = 0x7f0f0034
net.micode.notes:attr/indeterminateProgressStyle = 0x7f030067
net.micode.notes:style/Base.Widget.AppCompat.ListView = 0x7f0f0077
@@ -1023,7 +1025,7 @@ net.micode.notes:id/tv_time = 0x7f08009a
net.micode.notes:attr/windowFixedHeightMajor = 0x7f0300c4
net.micode.notes:attr/alertDialogButtonGroupStyle = 0x7f030022
net.micode.notes:attr/editTextStyle = 0x7f03005a
-net.micode.notes:drawable/abc_ic_search_api_mtrl_alpha = 0x7f07001d
+net.micode.notes:drawable/abc_ic_search_api_mtrl_alpha = 0x7f07001f
net.micode.notes:attr/homeLayout = 0x7f030064
net.micode.notes:string/menu_delete = 0x7f0e0034
net.micode.notes:anim/abc_popup_exit = 0x7f010004
@@ -1033,14 +1035,14 @@ net.micode.notes:attr/goIcon = 0x7f030060
net.micode.notes:color/accent_material_light = 0x7f05000e
net.micode.notes:string/abc_toolbar_collapse_description = 0x7f0e0010
net.micode.notes:color/hint_foreground_material_dark = 0x7f050022
-net.micode.notes:drawable/widget_2x_green = 0x7f070077
+net.micode.notes:drawable/widget_2x_green = 0x7f070079
net.micode.notes:dimen/abc_dialog_padding_material = 0x7f06001b
net.micode.notes:attr/elevation = 0x7f03005b
net.micode.notes:attr/editTextColor = 0x7f030059
net.micode.notes:color/abc_primary_text_material_dark = 0x7f050005
net.micode.notes:attr/editTextBackground = 0x7f030058
net.micode.notes:attr/dropdownListPreferredItemHeight = 0x7f030057
-net.micode.notes:drawable/abc_list_pressed_holo_dark = 0x7f070024
+net.micode.notes:drawable/abc_list_pressed_holo_dark = 0x7f070026
net.micode.notes:attr/dropDownListViewStyle = 0x7f030056
net.micode.notes:id/useLogo = 0x7f08009e
net.micode.notes:id/dropdown = 0x7f080028
@@ -1049,8 +1051,8 @@ net.micode.notes:attr/defaultQueryHint = 0x7f03004b
net.micode.notes:id/home = 0x7f080034
net.micode.notes:attr/multiChoiceItemLayout = 0x7f03007a
net.micode.notes:layout/support_simple_spinner_dropdown_item = 0x7f0a0031
-net.micode.notes:drawable/abc_text_cursor_mtrl_alpha = 0x7f070035
-net.micode.notes:drawable/abc_ab_share_pack_mtrl_alpha = 0x7f070000
+net.micode.notes:drawable/abc_text_cursor_mtrl_alpha = 0x7f070037
+net.micode.notes:drawable/abc_ab_share_pack_mtrl_alpha = 0x7f070002
net.micode.notes:style/TextAppearance.StatusBar.EventContent = 0x7f0f00cc
net.micode.notes:attr/borderlessButtonStyle = 0x7f03002d
net.micode.notes:style/Widget.AppCompat.ListView.Menu = 0x7f0f0122
@@ -1074,17 +1076,17 @@ net.micode.notes:anim/abc_shrink_fade_out_from_bottom = 0x7f010005
net.micode.notes:attr/height = 0x7f030061
net.micode.notes:style/RtlOverlay.Widget.AppCompat.ActionButton.Overflow = 0x7f0f0096
net.micode.notes:attr/closeIcon = 0x7f030038
-net.micode.notes:drawable/abc_list_focused_holo = 0x7f070022
+net.micode.notes:drawable/abc_list_focused_holo = 0x7f070024
net.micode.notes:style/Base.Theme.AppCompat.DialogWhenLarge = 0x7f0f003a
net.micode.notes:attr/paddingEnd = 0x7f03007f
net.micode.notes:id/action_bar_spinner = 0x7f080007
net.micode.notes:string/abc_searchview_description_query = 0x7f0e000a
-net.micode.notes:drawable/abc_btn_check_to_on_mtrl_015 = 0x7f070004
+net.micode.notes:drawable/abc_btn_check_to_on_mtrl_015 = 0x7f070006
net.micode.notes:style/TextAppearanceNormal = 0x7f0f00d6
net.micode.notes:attr/dividerVertical = 0x7f030053
net.micode.notes:attr/checkboxStyle = 0x7f030036
net.micode.notes:string/menu_select_title = 0x7f0e0047
-net.micode.notes:drawable/abc_ic_clear_mtrl_alpha = 0x7f070014
+net.micode.notes:drawable/abc_ic_clear_mtrl_alpha = 0x7f070016
net.micode.notes:color/abc_primary_text_material_light = 0x7f050006
net.micode.notes:attr/listItemLayout = 0x7f03006e
net.micode.notes:attr/buttonPanelSideLayout = 0x7f030033
@@ -1102,7 +1104,7 @@ net.micode.notes:dimen/abc_action_button_min_width_overflow_material = 0x7f06000
net.micode.notes:attr/barSize = 0x7f03002c
net.micode.notes:id/iv_bg_green = 0x7f08003e
net.micode.notes:attr/actionMenuTextAppearance = 0x7f03000e
-net.micode.notes:drawable/list_yellow_up = 0x7f070068
+net.micode.notes:drawable/list_yellow_up = 0x7f07006a
net.micode.notes:color/background_material_light = 0x7f050012
net.micode.notes:layout/abc_action_bar_title_item = 0x7f0a0000
net.micode.notes:attr/toolbarStyle = 0x7f0300bd
@@ -1111,7 +1113,7 @@ net.micode.notes:attr/customNavigationLayout = 0x7f03004a
net.micode.notes:dimen/abc_disabled_alpha_material_light = 0x7f06001e
net.micode.notes:attr/listPreferredItemPaddingRight = 0x7f030075
net.micode.notes:id/search_src_text = 0x7f08007e
-net.micode.notes:drawable/list_white_up = 0x7f070064
+net.micode.notes:drawable/list_white_up = 0x7f070066
net.micode.notes:attr/alertDialogCenterButtons = 0x7f030023
net.micode.notes:style/Base.ThemeOverlay.AppCompat.Dark.ActionBar = 0x7f0f0045
net.micode.notes:color/light_blue_A200 = 0x7f050026
@@ -1119,7 +1121,7 @@ net.micode.notes:dimen/text_font_size_small = 0x7f060048
net.micode.notes:attr/actionModeStyle = 0x7f03001b
net.micode.notes:dimen/abc_text_size_caption_material = 0x7f06002e
net.micode.notes:attr/actionProviderClass = 0x7f03001f
-net.micode.notes:drawable/abc_list_selector_disabled_holo_light = 0x7f070029
+net.micode.notes:drawable/abc_list_selector_disabled_holo_light = 0x7f07002b
net.micode.notes:id/alertTitle = 0x7f080013
net.micode.notes:id/selection_menu = 0x7f080081
net.micode.notes:dimen/text_font_size_medium = 0x7f060046
@@ -1133,13 +1135,13 @@ net.micode.notes:attr/actionMenuTextColor = 0x7f03000f
net.micode.notes:id/action_bar_root = 0x7f080006
net.micode.notes:attr/actionBarTabTextStyle = 0x7f030008
net.micode.notes:style/Base.Animation.AppCompat.DropDownUp = 0x7f0f0007
-net.micode.notes:drawable/list_yellow_middle = 0x7f070066
+net.micode.notes:drawable/list_yellow_middle = 0x7f070068
net.micode.notes:string/notelist_string_info = 0x7f0e0056
net.micode.notes:attr/actionLayout = 0x7f03000d
net.micode.notes:attr/splitTrack = 0x7f03009d
net.micode.notes:id/src_atop = 0x7f080087
net.micode.notes:attr/contentInsetRight = 0x7f030048
-net.micode.notes:drawable/abc_list_selector_background_transition_holo_dark = 0x7f070026
+net.micode.notes:drawable/abc_list_selector_background_transition_holo_dark = 0x7f070028
net.micode.notes:attr/buttonBarNegativeButtonStyle = 0x7f03002f
net.micode.notes:id/title_template = 0x7f080094
net.micode.notes:attr/singleChoiceItemLayout = 0x7f030098
@@ -1157,7 +1159,7 @@ net.micode.notes:anim/abc_slide_in_bottom = 0x7f010006
net.micode.notes:style/Platform.V14.AppCompat = 0x7f0f0092
net.micode.notes:attr/divider = 0x7f030050
net.micode.notes:string/preferences_menu_cancel = 0x7f0e0063
-net.micode.notes:drawable/list_white_single = 0x7f070063
+net.micode.notes:drawable/list_white_single = 0x7f070065
net.micode.notes:string/alert_message_delete_folder = 0x7f0e0011
net.micode.notes:style/Base.Widget.AppCompat.EditText = 0x7f0f006d
net.micode.notes:attr/actionBarPopupTheme = 0x7f030002
@@ -1165,7 +1167,7 @@ net.micode.notes:bool/abc_action_bar_embed_tabs = 0x7f040000
net.micode.notes:style/TextAppearance.AppCompat.Widget.PopupMenu.Small = 0x7f0f00c9
net.micode.notes:dimen/text_font_size_large = 0x7f060045
net.micode.notes:attr/showDividers = 0x7f030096
-net.micode.notes:drawable/list_footer_bg = 0x7f070058
+net.micode.notes:drawable/list_footer_bg = 0x7f07005a
net.micode.notes:attr/spinnerMode = 0x7f03009b
net.micode.notes:id/default_activity_button = 0x7f080024
net.micode.notes:color/light_blue_900 = 0x7f050025
diff --git a/src/app/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt b/src/app/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt
new file mode 100644
index 00000000..2c6aeaad
--- /dev/null
+++ b/src/app/build/intermediates/symbol_list_with_package_name/debug/package-aware-r.txt
@@ -0,0 +1,1188 @@
+net.micode.notes
+anim abc_fade_in
+anim abc_fade_out
+anim abc_grow_fade_in_from_bottom
+anim abc_popup_enter
+anim abc_popup_exit
+anim abc_shrink_fade_out_from_bottom
+anim abc_slide_in_bottom
+anim abc_slide_in_top
+anim abc_slide_out_bottom
+anim abc_slide_out_top
+array format_for_exported_note
+array menu_share_ways
+attr actionBarDivider
+attr actionBarItemBackground
+attr actionBarPopupTheme
+attr actionBarSize
+attr actionBarSplitStyle
+attr actionBarStyle
+attr actionBarTabBarStyle
+attr actionBarTabStyle
+attr actionBarTabTextStyle
+attr actionBarTheme
+attr actionBarWidgetTheme
+attr actionButtonStyle
+attr actionDropDownStyle
+attr actionLayout
+attr actionMenuTextAppearance
+attr actionMenuTextColor
+attr actionModeBackground
+attr actionModeCloseButtonStyle
+attr actionModeCloseDrawable
+attr actionModeCopyDrawable
+attr actionModeCutDrawable
+attr actionModeFindDrawable
+attr actionModePasteDrawable
+attr actionModePopupWindowStyle
+attr actionModeSelectAllDrawable
+attr actionModeShareDrawable
+attr actionModeSplitBackground
+attr actionModeStyle
+attr actionModeWebSearchDrawable
+attr actionOverflowButtonStyle
+attr actionOverflowMenuStyle
+attr actionProviderClass
+attr actionViewClass
+attr activityChooserViewStyle
+attr alertDialogButtonGroupStyle
+attr alertDialogCenterButtons
+attr alertDialogStyle
+attr alertDialogTheme
+attr autoCompleteTextViewStyle
+attr background
+attr backgroundSplit
+attr backgroundStacked
+attr backgroundTint
+attr backgroundTintMode
+attr barSize
+attr borderlessButtonStyle
+attr buttonBarButtonStyle
+attr buttonBarNegativeButtonStyle
+attr buttonBarNeutralButtonStyle
+attr buttonBarPositiveButtonStyle
+attr buttonBarStyle
+attr buttonPanelSideLayout
+attr buttonStyle
+attr buttonStyleSmall
+attr checkboxStyle
+attr checkedTextViewStyle
+attr closeIcon
+attr closeItemLayout
+attr collapseContentDescription
+attr collapseIcon
+attr color
+attr colorAccent
+attr colorButtonNormal
+attr colorControlActivated
+attr colorControlHighlight
+attr colorControlNormal
+attr colorPrimary
+attr colorPrimaryDark
+attr colorSwitchThumbNormal
+attr commitIcon
+attr contentInsetEnd
+attr contentInsetLeft
+attr contentInsetRight
+attr contentInsetStart
+attr customNavigationLayout
+attr defaultQueryHint
+attr dialogPreferredPadding
+attr dialogTheme
+attr disableChildrenWhenDisabled
+attr displayOptions
+attr divider
+attr dividerHorizontal
+attr dividerPadding
+attr dividerVertical
+attr drawableSize
+attr drawerArrowStyle
+attr dropDownListViewStyle
+attr dropdownListPreferredItemHeight
+attr editTextBackground
+attr editTextColor
+attr editTextStyle
+attr elevation
+attr expandActivityOverflowButtonDrawable
+attr fullscreenBackgroundColor
+attr fullscreenTextColor
+attr gapBetweenBars
+attr goIcon
+attr height
+attr hideOnContentScroll
+attr homeAsUpIndicator
+attr homeLayout
+attr icon
+attr iconifiedByDefault
+attr indeterminateProgressStyle
+attr initialActivityCount
+attr isLightTheme
+attr itemPadding
+attr layout
+attr listChoiceBackgroundIndicator
+attr listDividerAlertDialog
+attr listItemLayout
+attr listLayout
+attr listPopupWindowStyle
+attr listPreferredItemHeight
+attr listPreferredItemHeightLarge
+attr listPreferredItemHeightSmall
+attr listPreferredItemPaddingLeft
+attr listPreferredItemPaddingRight
+attr logo
+attr maxButtonHeight
+attr measureWithLargestChild
+attr middleBarArrowSize
+attr multiChoiceItemLayout
+attr navigationContentDescription
+attr navigationIcon
+attr navigationMode
+attr overlapAnchor
+attr paddingEnd
+attr paddingStart
+attr panelBackground
+attr panelMenuListTheme
+attr panelMenuListWidth
+attr popupMenuStyle
+attr popupPromptView
+attr popupTheme
+attr popupWindowStyle
+attr preserveIconSpacing
+attr progressBarPadding
+attr progressBarStyle
+attr prompt
+attr queryBackground
+attr queryHint
+attr radioButtonStyle
+attr ratingBarStyle
+attr searchHintIcon
+attr searchIcon
+attr searchViewStyle
+attr selectableItemBackground
+attr selectableItemBackgroundBorderless
+attr showAsAction
+attr showDividers
+attr showText
+attr singleChoiceItemLayout
+attr spinBars
+attr spinnerDropDownItemStyle
+attr spinnerMode
+attr spinnerStyle
+attr splitTrack
+attr state_above_anchor
+attr submitBackground
+attr subtitle
+attr subtitleTextAppearance
+attr subtitleTextStyle
+attr suggestionRowLayout
+attr switchMinWidth
+attr switchPadding
+attr switchStyle
+attr switchTextAppearance
+attr textAllCaps
+attr textAppearanceLargePopupMenu
+attr textAppearanceListItem
+attr textAppearanceListItemSmall
+attr textAppearanceSearchResultSubtitle
+attr textAppearanceSearchResultTitle
+attr textAppearanceSmallPopupMenu
+attr textColorAlertDialogListItem
+attr textColorSearchUrl
+attr theme
+attr thickness
+attr thumbTextPadding
+attr title
+attr titleMarginBottom
+attr titleMarginEnd
+attr titleMarginStart
+attr titleMarginTop
+attr titleMargins
+attr titleTextAppearance
+attr titleTextStyle
+attr toolbarNavigationButtonStyle
+attr toolbarStyle
+attr topBottomBarArrowSize
+attr track
+attr voiceIcon
+attr windowActionBar
+attr windowActionBarOverlay
+attr windowActionModeOverlay
+attr windowFixedHeightMajor
+attr windowFixedHeightMinor
+attr windowFixedWidthMajor
+attr windowFixedWidthMinor
+attr windowMinWidthMajor
+attr windowMinWidthMinor
+attr windowNoTitle
+bool abc_action_bar_embed_tabs
+bool abc_action_bar_embed_tabs_pre_jb
+bool abc_action_bar_expanded_action_views_exclusive
+bool abc_config_actionMenuItemAllCaps
+bool abc_config_allowActionMenuItemTextWithIcon
+bool abc_config_closeDialogWhenTouchOutside
+bool abc_config_showMenuShortcutsWhenKeyboardPresent
+color abc_background_cache_hint_selector_material_dark
+color abc_background_cache_hint_selector_material_light
+color abc_input_method_navigation_guard
+color abc_primary_text_disable_only_material_dark
+color abc_primary_text_disable_only_material_light
+color abc_primary_text_material_dark
+color abc_primary_text_material_light
+color abc_search_url_text
+color abc_search_url_text_normal
+color abc_search_url_text_pressed
+color abc_search_url_text_selected
+color abc_secondary_text_material_dark
+color abc_secondary_text_material_light
+color accent_material_dark
+color accent_material_light
+color background_floating_material_dark
+color background_floating_material_light
+color background_material_dark
+color background_material_light
+color black_overlay
+color bright_foreground_disabled_material_dark
+color bright_foreground_disabled_material_light
+color bright_foreground_inverse_material_dark
+color bright_foreground_inverse_material_light
+color bright_foreground_material_dark
+color bright_foreground_material_light
+color button_material_dark
+color button_material_light
+color dim_foreground_disabled_material_dark
+color dim_foreground_disabled_material_light
+color dim_foreground_material_dark
+color dim_foreground_material_light
+color highlighted_text_material_dark
+color highlighted_text_material_light
+color hint_foreground_material_dark
+color hint_foreground_material_light
+color light_blue_600
+color light_blue_900
+color light_blue_A200
+color light_blue_A400
+color link_text_material_dark
+color link_text_material_light
+color material_blue_grey_800
+color material_blue_grey_900
+color material_blue_grey_950
+color material_deep_teal_200
+color material_deep_teal_500
+color primary_dark_material_dark
+color primary_dark_material_light
+color primary_material_dark
+color primary_material_light
+color primary_text_dark
+color primary_text_default_material_dark
+color primary_text_default_material_light
+color primary_text_disabled_material_dark
+color primary_text_disabled_material_light
+color ripple_material_dark
+color ripple_material_light
+color secondary_text_dark
+color secondary_text_default_material_dark
+color secondary_text_default_material_light
+color secondary_text_disabled_material_dark
+color secondary_text_disabled_material_light
+color switch_thumb_disabled_material_dark
+color switch_thumb_disabled_material_light
+color switch_thumb_material_dark
+color switch_thumb_material_light
+color switch_thumb_normal_material_dark
+color switch_thumb_normal_material_light
+color user_query_highlight
+dimen abc_action_bar_content_inset_material
+dimen abc_action_bar_default_height_material
+dimen abc_action_bar_default_padding_material
+dimen abc_action_bar_icon_vertical_padding_material
+dimen abc_action_bar_navigation_padding_start_material
+dimen abc_action_bar_overflow_padding_end_material
+dimen abc_action_bar_overflow_padding_start_material
+dimen abc_action_bar_progress_bar_size
+dimen abc_action_bar_stacked_max_height
+dimen abc_action_bar_stacked_tab_max_width
+dimen abc_action_bar_subtitle_bottom_margin_material
+dimen abc_action_bar_subtitle_top_margin_material
+dimen abc_action_button_min_height_material
+dimen abc_action_button_min_width_material
+dimen abc_action_button_min_width_overflow_material
+dimen abc_alert_dialog_button_bar_height
+dimen abc_button_inset_horizontal_material
+dimen abc_button_inset_vertical_material
+dimen abc_button_padding_horizontal_material
+dimen abc_button_padding_vertical_material
+dimen abc_config_prefDialogWidth
+dimen abc_control_corner_material
+dimen abc_control_inset_material
+dimen abc_control_padding_material
+dimen abc_dialog_list_padding_vertical_material
+dimen abc_dialog_min_width_major
+dimen abc_dialog_min_width_minor
+dimen abc_dialog_padding_material
+dimen abc_dialog_padding_top_material
+dimen abc_disabled_alpha_material_dark
+dimen abc_disabled_alpha_material_light
+dimen abc_dropdownitem_icon_width
+dimen abc_dropdownitem_text_padding_left
+dimen abc_dropdownitem_text_padding_right
+dimen abc_edit_text_inset_bottom_material
+dimen abc_edit_text_inset_horizontal_material
+dimen abc_edit_text_inset_top_material
+dimen abc_floating_window_z
+dimen abc_list_item_padding_horizontal_material
+dimen abc_panel_menu_list_width
+dimen abc_search_view_preferred_width
+dimen abc_search_view_text_min_width
+dimen abc_switch_padding
+dimen abc_text_size_body_1_material
+dimen abc_text_size_body_2_material
+dimen abc_text_size_button_material
+dimen abc_text_size_caption_material
+dimen abc_text_size_display_1_material
+dimen abc_text_size_display_2_material
+dimen abc_text_size_display_3_material
+dimen abc_text_size_display_4_material
+dimen abc_text_size_headline_material
+dimen abc_text_size_large_material
+dimen abc_text_size_medium_material
+dimen abc_text_size_menu_material
+dimen abc_text_size_small_material
+dimen abc_text_size_subhead_material
+dimen abc_text_size_subtitle_material_toolbar
+dimen abc_text_size_title_material
+dimen abc_text_size_title_material_toolbar
+dimen dialog_fixed_height_major
+dimen dialog_fixed_height_minor
+dimen dialog_fixed_width_major
+dimen dialog_fixed_width_minor
+dimen disabled_alpha_material_dark
+dimen disabled_alpha_material_light
+dimen notification_large_icon_height
+dimen notification_large_icon_width
+dimen notification_subtext_size
+dimen text_font_size_large
+dimen text_font_size_medium
+dimen text_font_size_normal
+dimen text_font_size_small
+dimen text_font_size_super
+drawable a
+drawable abc
+drawable abc_ab_share_pack_mtrl_alpha
+drawable abc_btn_borderless_material
+drawable abc_btn_check_material
+drawable abc_btn_check_to_on_mtrl_000
+drawable abc_btn_check_to_on_mtrl_015
+drawable abc_btn_default_mtrl_shape
+drawable abc_btn_radio_material
+drawable abc_btn_radio_to_on_mtrl_000
+drawable abc_btn_radio_to_on_mtrl_015
+drawable abc_btn_rating_star_off_mtrl_alpha
+drawable abc_btn_rating_star_on_mtrl_alpha
+drawable abc_btn_switch_to_on_mtrl_00001
+drawable abc_btn_switch_to_on_mtrl_00012
+drawable abc_cab_background_internal_bg
+drawable abc_cab_background_top_material
+drawable abc_cab_background_top_mtrl_alpha
+drawable abc_dialog_material_background_dark
+drawable abc_dialog_material_background_light
+drawable abc_edit_text_material
+drawable abc_ic_ab_back_mtrl_am_alpha
+drawable abc_ic_clear_mtrl_alpha
+drawable abc_ic_commit_search_api_mtrl_alpha
+drawable abc_ic_go_search_api_mtrl_alpha
+drawable abc_ic_menu_copy_mtrl_am_alpha
+drawable abc_ic_menu_cut_mtrl_alpha
+drawable abc_ic_menu_moreoverflow_mtrl_alpha
+drawable abc_ic_menu_paste_mtrl_am_alpha
+drawable abc_ic_menu_selectall_mtrl_alpha
+drawable abc_ic_menu_share_mtrl_alpha
+drawable abc_ic_search_api_mtrl_alpha
+drawable abc_ic_voice_search_api_mtrl_alpha
+drawable abc_item_background_holo_dark
+drawable abc_item_background_holo_light
+drawable abc_list_divider_mtrl_alpha
+drawable abc_list_focused_holo
+drawable abc_list_longpressed_holo
+drawable abc_list_pressed_holo_dark
+drawable abc_list_pressed_holo_light
+drawable abc_list_selector_background_transition_holo_dark
+drawable abc_list_selector_background_transition_holo_light
+drawable abc_list_selector_disabled_holo_dark
+drawable abc_list_selector_disabled_holo_light
+drawable abc_list_selector_holo_dark
+drawable abc_list_selector_holo_light
+drawable abc_menu_hardkey_panel_mtrl_mult
+drawable abc_popup_background_mtrl_mult
+drawable abc_ratingbar_full_material
+drawable abc_spinner_mtrl_am_alpha
+drawable abc_spinner_textfield_background_material
+drawable abc_switch_thumb_material
+drawable abc_switch_track_mtrl_alpha
+drawable abc_tab_indicator_material
+drawable abc_tab_indicator_mtrl_alpha
+drawable abc_text_cursor_mtrl_alpha
+drawable abc_textfield_activated_mtrl_alpha
+drawable abc_textfield_default_mtrl_alpha
+drawable abc_textfield_search_activated_mtrl_alpha
+drawable abc_textfield_search_default_mtrl_alpha
+drawable abc_textfield_search_material
+drawable bg_btn_set_color
+drawable bg_color_btn_mask
+drawable call_record
+drawable clock
+drawable delete
+drawable dropdown_icon
+drawable edit_blue
+drawable edit_green
+drawable edit_red
+drawable edit_title_blue
+drawable edit_title_green
+drawable edit_title_red
+drawable edit_title_white
+drawable edit_title_yellow
+drawable edit_white
+drawable edit_yellow
+drawable font_large
+drawable font_normal
+drawable font_size_selector_bg
+drawable font_small
+drawable font_super
+drawable icon_app
+drawable icon_app_new
+drawable list_background
+drawable list_blue_down
+drawable list_blue_middle
+drawable list_blue_single
+drawable list_blue_up
+drawable list_folder
+drawable list_footer_bg
+drawable list_green_down
+drawable list_green_middle
+drawable list_green_single
+drawable list_green_up
+drawable list_red_down
+drawable list_red_middle
+drawable list_red_single
+drawable list_red_up
+drawable list_white_down
+drawable list_white_middle
+drawable list_white_single
+drawable list_white_up
+drawable list_yellow_down
+drawable list_yellow_middle
+drawable list_yellow_single
+drawable list_yellow_up
+drawable menu_delete
+drawable menu_move
+drawable new_note
+drawable new_note_normal
+drawable new_note_pressed
+drawable note_edit_color_selector_panel
+drawable notification
+drawable notification_template_icon_bg
+drawable search_result
+drawable selected
+drawable splash
+drawable title_alert
+drawable title_bar_bg
+drawable widget_2x_blue
+drawable widget_2x_green
+drawable widget_2x_red
+drawable widget_2x_white
+drawable widget_2x_yellow
+drawable widget_4x_blue
+drawable widget_4x_green
+drawable widget_4x_red
+drawable widget_4x_white
+drawable widget_4x_yellow
+id account_dialog_subtitle
+id account_dialog_title
+id action0
+id action_bar
+id action_bar_activity_content
+id action_bar_container
+id action_bar_root
+id action_bar_spinner
+id action_bar_subtitle
+id action_bar_title
+id action_context_bar
+id action_divider
+id action_menu_divider
+id action_menu_presenter
+id action_mode_bar
+id action_mode_bar_stub
+id action_mode_close_button
+id action_select_all
+id activity_chooser_view_content
+id alertTitle
+id always
+id amPm
+id beginning
+id btn_new_note
+id btn_set_bg_color
+id buttonPanel
+id cancel_action
+id cb_edit_item
+id checkbox
+id chronometer
+id collapseActionView
+id contentPanel
+id custom
+id customPanel
+id date
+id decor_content_parent
+id default_activity_button
+id delete
+id dialog
+id disableHome
+id dropdown
+id dummy_button
+id edit_query
+id end
+id end_padder
+id et_edit_text
+id et_foler_name
+id expand_activities_button
+id expanded_menu
+id font_size_selector
+id fullscreen_content
+id fullscreen_content_controls
+id home
+id homeAsUp
+id hour
+id icon
+id ifRoom
+id image
+id info
+id iv_alert_icon
+id iv_bg_blue
+id iv_bg_blue_select
+id iv_bg_green
+id iv_bg_green_select
+id iv_bg_red
+id iv_bg_red_select
+id iv_bg_white
+id iv_bg_white_select
+id iv_bg_yellow
+id iv_bg_yellow_select
+id iv_large_select
+id iv_medium_select
+id iv_small_select
+id iv_super_select
+id line1
+id line3
+id listMode
+id list_item
+id ll_font_large
+id ll_font_normal
+id ll_font_small
+id ll_font_super
+id media_actions
+id menu_alert
+id menu_delete
+id menu_delete_remind
+id menu_export_text
+id menu_font_size
+id menu_list_mode
+id menu_new_folder
+id menu_new_note
+id menu_search
+id menu_send_to_desktop
+id menu_setting
+id menu_share
+id menu_sync
+id middle
+id minute
+id move
+id multiply
+id navigation_bar
+id never
+id none
+id normal
+id note_bg_color_selector
+id note_edit_list
+id note_edit_view
+id note_item
+id note_title
+id notes_list
+id parentPanel
+id prefenerece_sync_status_textview
+id preference_sync_button
+id progress_circular
+id progress_horizontal
+id radio
+id screen
+id scrollView
+id search_badge
+id search_bar
+id search_button
+id search_close_btn
+id search_edit_frame
+id search_go_btn
+id search_mag_icon
+id search_plate
+id search_src_text
+id search_voice_btn
+id select_dialog_listview
+id selection_menu
+id shortcut
+id showCustom
+id showHome
+id showTitle
+id split_action_bar
+id src_atop
+id src_in
+id src_over
+id status_bar_latest_event_content
+id submit_area
+id sv_note_edit
+id tabMode
+id text
+id text2
+id textSpacerNoButtons
+id text_num
+id time
+id title
+id title_template
+id topPanel
+id tv_alert_date
+id tv_folder_name
+id tv_modified_date
+id tv_name
+id tv_time
+id tv_title
+id tv_title_bar
+id up
+id useLogo
+id widget_bg_image
+id widget_text
+id withText
+id wrap_content
+integer abc_config_activityDefaultDur
+integer abc_config_activityShortDur
+integer abc_max_action_buttons
+integer cancel_button_image_alpha
+integer status_bar_notification_info_maxnum
+layout abc_action_bar_title_item
+layout abc_action_bar_up_container
+layout abc_action_bar_view_list_nav_layout
+layout abc_action_menu_item_layout
+layout abc_action_menu_layout
+layout abc_action_mode_bar
+layout abc_action_mode_close_item_material
+layout abc_activity_chooser_view
+layout abc_activity_chooser_view_list_item
+layout abc_alert_dialog_material
+layout abc_dialog_title_material
+layout abc_expanded_menu_layout
+layout abc_list_menu_item_checkbox
+layout abc_list_menu_item_icon
+layout abc_list_menu_item_layout
+layout abc_list_menu_item_radio
+layout abc_popup_menu_item_layout
+layout abc_screen_content_include
+layout abc_screen_simple
+layout abc_screen_simple_overlay_action_mode
+layout abc_screen_toolbar
+layout abc_search_dropdown_item_icons_2line
+layout abc_search_view
+layout abc_select_dialog_material
+layout abc_simple_dropdown_hint
+layout account_dialog_title
+layout activity_splash
+layout add_account_text
+layout datetime_picker
+layout dialog_edit_text
+layout folder_list_item
+layout note_edit
+layout note_edit_list_item
+layout note_item
+layout note_list
+layout note_list_dropdown_menu
+layout note_list_footer
+layout notification_media_action
+layout notification_media_cancel_action
+layout notification_template_big_media
+layout notification_template_big_media_narrow
+layout notification_template_lines
+layout notification_template_media
+layout notification_template_part_chronometer
+layout notification_template_part_time
+layout select_dialog_item_material
+layout select_dialog_multichoice_material
+layout select_dialog_singlechoice_material
+layout settings_header
+layout support_simple_spinner_dropdown_item
+layout widget_2x
+layout widget_4x
+menu call_note_edit
+menu call_record_folder
+menu note_edit
+menu note_list
+menu note_list_dropdown
+menu note_list_options
+menu sub_folder
+plurals search_results_title
+raw introduction
+string abc_action_bar_home_description
+string abc_action_bar_home_description_format
+string abc_action_bar_home_subtitle_description_format
+string abc_action_bar_up_description
+string abc_action_menu_overflow_description
+string abc_action_mode_done
+string abc_activity_chooser_view_see_all
+string abc_activitychooserview_choose_application
+string abc_search_hint
+string abc_searchview_description_clear
+string abc_searchview_description_query
+string abc_searchview_description_search
+string abc_searchview_description_submit
+string abc_searchview_description_voice
+string abc_shareactionprovider_share_with
+string abc_shareactionprovider_share_with_application
+string abc_toolbar_collapse_description
+string alert_message_delete_folder
+string alert_message_delete_note
+string alert_message_delete_notes
+string alert_title_delete
+string app_name
+string app_widget2x2
+string app_widget4x4
+string button_delete
+string call_record_folder_name
+string datetime_dialog_cancel
+string datetime_dialog_ok
+string delete_remind_time_message
+string dummy_button
+string dummy_content
+string error_note_empty_for_clock
+string error_note_empty_for_send_to_desktop
+string error_note_not_exist
+string error_sdcard_export
+string error_sdcard_unmounted
+string error_sync_cancelled
+string error_sync_internal
+string error_sync_network
+string failed_sdcard_export
+string file_name_txt_format
+string file_path
+string folder_exist
+string format_date_ymd
+string format_datetime_mdhm
+string format_exported_file_location
+string format_folder_files_count
+string format_move_notes_to_folder
+string hint_foler_name
+string info_note_enter_desktop
+string menu_alert
+string menu_create_folder
+string menu_delete
+string menu_deselect_all
+string menu_export_text
+string menu_folder_change_name
+string menu_folder_delete
+string menu_folder_view
+string menu_font_large
+string menu_font_normal
+string menu_font_size
+string menu_font_small
+string menu_font_super
+string menu_list_mode
+string menu_move
+string menu_move_parent_folder
+string menu_normal_mode
+string menu_remove_remind
+string menu_search
+string menu_select_all
+string menu_select_none
+string menu_select_title
+string menu_send_to_desktop
+string menu_setting
+string menu_share
+string menu_sync
+string menu_sync_cancel
+string menu_title_select_folder
+string note_alert_expired
+string note_link_email
+string note_link_other
+string note_link_tel
+string note_link_web
+string notealert_enter
+string notealert_ok
+string notelist_menu_new
+string notelist_string_info
+string preferences_account_summary
+string preferences_account_title
+string preferences_add_account
+string preferences_bg_random_appear_title
+string preferences_button_sync_cancel
+string preferences_button_sync_immediately
+string preferences_dialog_change_account_title
+string preferences_dialog_change_account_warn_msg
+string preferences_dialog_select_account_tips
+string preferences_dialog_select_account_title
+string preferences_last_sync_time
+string preferences_last_sync_time_format
+string preferences_menu_cancel
+string preferences_menu_change_account
+string preferences_menu_remove_account
+string preferences_title
+string preferences_toast_cannot_change_account
+string preferences_toast_success_set_accout
+string search
+string search_hint
+string search_label
+string search_setting_description
+string set_remind_time_message
+string status_bar_notification_info_overflow
+string success_sdcard_export
+string success_sync_account
+string sync_progress_init_list
+string sync_progress_login
+string sync_progress_syncing
+string ticker_cancel
+string ticker_fail
+string ticker_success
+string ticker_syncing
+string title_activity_fullscreen
+string title_activity_splash
+string widget_havenot_content
+string widget_under_visit_mode
+style AlertDialog_AppCompat
+style AlertDialog_AppCompat_Light
+style Animation_AppCompat_Dialog
+style Animation_AppCompat_DropDownUp
+style Base_AlertDialog_AppCompat
+style Base_AlertDialog_AppCompat_Light
+style Base_Animation_AppCompat_Dialog
+style Base_Animation_AppCompat_DropDownUp
+style Base_DialogWindowTitle_AppCompat
+style Base_DialogWindowTitleBackground_AppCompat
+style Base_TextAppearance_AppCompat
+style Base_TextAppearance_AppCompat_Body1
+style Base_TextAppearance_AppCompat_Body2
+style Base_TextAppearance_AppCompat_Button
+style Base_TextAppearance_AppCompat_Caption
+style Base_TextAppearance_AppCompat_Display1
+style Base_TextAppearance_AppCompat_Display2
+style Base_TextAppearance_AppCompat_Display3
+style Base_TextAppearance_AppCompat_Display4
+style Base_TextAppearance_AppCompat_Headline
+style Base_TextAppearance_AppCompat_Inverse
+style Base_TextAppearance_AppCompat_Large
+style Base_TextAppearance_AppCompat_Large_Inverse
+style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
+style Base_TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
+style Base_TextAppearance_AppCompat_Medium
+style Base_TextAppearance_AppCompat_Medium_Inverse
+style Base_TextAppearance_AppCompat_Menu
+style Base_TextAppearance_AppCompat_SearchResult
+style Base_TextAppearance_AppCompat_SearchResult_Subtitle
+style Base_TextAppearance_AppCompat_SearchResult_Title
+style Base_TextAppearance_AppCompat_Small
+style Base_TextAppearance_AppCompat_Small_Inverse
+style Base_TextAppearance_AppCompat_Subhead
+style Base_TextAppearance_AppCompat_Subhead_Inverse
+style Base_TextAppearance_AppCompat_Title
+style Base_TextAppearance_AppCompat_Title_Inverse
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Menu
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Title
+style Base_TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
+style Base_TextAppearance_AppCompat_Widget_ActionMode_Subtitle
+style Base_TextAppearance_AppCompat_Widget_ActionMode_Title
+style Base_TextAppearance_AppCompat_Widget_DropDownItem
+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Large
+style Base_TextAppearance_AppCompat_Widget_PopupMenu_Small
+style Base_TextAppearance_AppCompat_Widget_Switch
+style Base_TextAppearance_AppCompat_Widget_TextView_SpinnerItem
+style Base_TextAppearance_Widget_AppCompat_ExpandedMenu_Item
+style Base_TextAppearance_Widget_AppCompat_Toolbar_Subtitle
+style Base_TextAppearance_Widget_AppCompat_Toolbar_Title
+style Base_Theme_AppCompat
+style Base_Theme_AppCompat_CompactMenu
+style Base_Theme_AppCompat_Dialog
+style Base_Theme_AppCompat_Dialog_Alert
+style Base_Theme_AppCompat_Dialog_FixedSize
+style Base_Theme_AppCompat_Dialog_MinWidth
+style Base_Theme_AppCompat_DialogWhenLarge
+style Base_Theme_AppCompat_Light
+style Base_Theme_AppCompat_Light_DarkActionBar
+style Base_Theme_AppCompat_Light_Dialog
+style Base_Theme_AppCompat_Light_Dialog_Alert
+style Base_Theme_AppCompat_Light_Dialog_FixedSize
+style Base_Theme_AppCompat_Light_Dialog_MinWidth
+style Base_Theme_AppCompat_Light_DialogWhenLarge
+style Base_ThemeOverlay_AppCompat
+style Base_ThemeOverlay_AppCompat_ActionBar
+style Base_ThemeOverlay_AppCompat_Dark
+style Base_ThemeOverlay_AppCompat_Dark_ActionBar
+style Base_ThemeOverlay_AppCompat_Light
+style Base_V11_Theme_AppCompat_Dialog
+style Base_V11_Theme_AppCompat_Light_Dialog
+style Base_V12_Widget_AppCompat_AutoCompleteTextView
+style Base_V12_Widget_AppCompat_EditText
+style Base_V21_Theme_AppCompat
+style Base_V21_Theme_AppCompat_Dialog
+style Base_V21_Theme_AppCompat_Light
+style Base_V21_Theme_AppCompat_Light_Dialog
+style Base_V7_Theme_AppCompat
+style Base_V7_Theme_AppCompat_Dialog
+style Base_V7_Theme_AppCompat_Light
+style Base_V7_Theme_AppCompat_Light_Dialog
+style Base_V7_Widget_AppCompat_AutoCompleteTextView
+style Base_V7_Widget_AppCompat_EditText
+style Base_Widget_AppCompat_ActionBar
+style Base_Widget_AppCompat_ActionBar_Solid
+style Base_Widget_AppCompat_ActionBar_TabBar
+style Base_Widget_AppCompat_ActionBar_TabText
+style Base_Widget_AppCompat_ActionBar_TabView
+style Base_Widget_AppCompat_ActionButton
+style Base_Widget_AppCompat_ActionButton_CloseMode
+style Base_Widget_AppCompat_ActionButton_Overflow
+style Base_Widget_AppCompat_ActionMode
+style Base_Widget_AppCompat_ActivityChooserView
+style Base_Widget_AppCompat_AutoCompleteTextView
+style Base_Widget_AppCompat_Button
+style Base_Widget_AppCompat_Button_Borderless
+style Base_Widget_AppCompat_Button_Borderless_Colored
+style Base_Widget_AppCompat_Button_ButtonBar_AlertDialog
+style Base_Widget_AppCompat_Button_Small
+style Base_Widget_AppCompat_ButtonBar
+style Base_Widget_AppCompat_ButtonBar_AlertDialog
+style Base_Widget_AppCompat_CompoundButton_CheckBox
+style Base_Widget_AppCompat_CompoundButton_RadioButton
+style Base_Widget_AppCompat_CompoundButton_Switch
+style Base_Widget_AppCompat_DrawerArrowToggle
+style Base_Widget_AppCompat_DrawerArrowToggle_Common
+style Base_Widget_AppCompat_DropDownItem_Spinner
+style Base_Widget_AppCompat_EditText
+style Base_Widget_AppCompat_Light_ActionBar
+style Base_Widget_AppCompat_Light_ActionBar_Solid
+style Base_Widget_AppCompat_Light_ActionBar_TabBar
+style Base_Widget_AppCompat_Light_ActionBar_TabText
+style Base_Widget_AppCompat_Light_ActionBar_TabText_Inverse
+style Base_Widget_AppCompat_Light_ActionBar_TabView
+style Base_Widget_AppCompat_Light_PopupMenu
+style Base_Widget_AppCompat_Light_PopupMenu_Overflow
+style Base_Widget_AppCompat_ListPopupWindow
+style Base_Widget_AppCompat_ListView
+style Base_Widget_AppCompat_ListView_DropDown
+style Base_Widget_AppCompat_ListView_Menu
+style Base_Widget_AppCompat_PopupMenu
+style Base_Widget_AppCompat_PopupMenu_Overflow
+style Base_Widget_AppCompat_PopupWindow
+style Base_Widget_AppCompat_ProgressBar
+style Base_Widget_AppCompat_ProgressBar_Horizontal
+style Base_Widget_AppCompat_RatingBar
+style Base_Widget_AppCompat_SearchView
+style Base_Widget_AppCompat_SearchView_ActionBar
+style Base_Widget_AppCompat_Spinner
+style Base_Widget_AppCompat_Spinner_DropDown_ActionBar
+style Base_Widget_AppCompat_Spinner_Underlined
+style Base_Widget_AppCompat_TextView_SpinnerItem
+style Base_Widget_AppCompat_Toolbar
+style Base_Widget_AppCompat_Toolbar_Button_Navigation
+style HighlightTextAppearancePrimary
+style HighlightTextAppearanceSecondary
+style NoteActionBarStyle
+style NoteTheme
+style Platform_AppCompat
+style Platform_AppCompat_Light
+style Platform_ThemeOverlay_AppCompat_Dark
+style Platform_ThemeOverlay_AppCompat_Light
+style Platform_V11_AppCompat
+style Platform_V11_AppCompat_Light
+style Platform_V14_AppCompat
+style Platform_V14_AppCompat_Light
+style RtlOverlay_DialogWindowTitle_AppCompat
+style RtlOverlay_Widget_AppCompat_ActionBar_TitleItem
+style RtlOverlay_Widget_AppCompat_ActionButton_Overflow
+style RtlOverlay_Widget_AppCompat_DialogTitle_Icon
+style RtlOverlay_Widget_AppCompat_PopupMenuItem
+style RtlOverlay_Widget_AppCompat_PopupMenuItem_InternalGroup
+style RtlOverlay_Widget_AppCompat_PopupMenuItem_Text
+style RtlOverlay_Widget_AppCompat_Search_DropDown
+style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon1
+style RtlOverlay_Widget_AppCompat_Search_DropDown_Icon2
+style RtlOverlay_Widget_AppCompat_Search_DropDown_Query
+style RtlOverlay_Widget_AppCompat_Search_DropDown_Text
+style RtlOverlay_Widget_AppCompat_SearchView_MagIcon
+style RtlOverlay_Widget_AppCompat_Toolbar_Button_Navigation
+style TextAppearance_AppCompat
+style TextAppearance_AppCompat_Body1
+style TextAppearance_AppCompat_Body2
+style TextAppearance_AppCompat_Button
+style TextAppearance_AppCompat_Caption
+style TextAppearance_AppCompat_Display1
+style TextAppearance_AppCompat_Display2
+style TextAppearance_AppCompat_Display3
+style TextAppearance_AppCompat_Display4
+style TextAppearance_AppCompat_Headline
+style TextAppearance_AppCompat_Inverse
+style TextAppearance_AppCompat_Large
+style TextAppearance_AppCompat_Large_Inverse
+style TextAppearance_AppCompat_Light_SearchResult_Subtitle
+style TextAppearance_AppCompat_Light_SearchResult_Title
+style TextAppearance_AppCompat_Light_Widget_PopupMenu_Large
+style TextAppearance_AppCompat_Light_Widget_PopupMenu_Small
+style TextAppearance_AppCompat_Medium
+style TextAppearance_AppCompat_Medium_Inverse
+style TextAppearance_AppCompat_Menu
+style TextAppearance_AppCompat_SearchResult_Subtitle
+style TextAppearance_AppCompat_SearchResult_Title
+style TextAppearance_AppCompat_Small
+style TextAppearance_AppCompat_Small_Inverse
+style TextAppearance_AppCompat_Subhead
+style TextAppearance_AppCompat_Subhead_Inverse
+style TextAppearance_AppCompat_Title
+style TextAppearance_AppCompat_Title_Inverse
+style TextAppearance_AppCompat_Widget_ActionBar_Menu
+style TextAppearance_AppCompat_Widget_ActionBar_Subtitle
+style TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse
+style TextAppearance_AppCompat_Widget_ActionBar_Title
+style TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse
+style TextAppearance_AppCompat_Widget_ActionMode_Subtitle
+style TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse
+style TextAppearance_AppCompat_Widget_ActionMode_Title
+style TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse
+style TextAppearance_AppCompat_Widget_DropDownItem
+style TextAppearance_AppCompat_Widget_PopupMenu_Large
+style TextAppearance_AppCompat_Widget_PopupMenu_Small
+style TextAppearance_AppCompat_Widget_Switch
+style TextAppearance_AppCompat_Widget_TextView_SpinnerItem
+style TextAppearance_StatusBar_EventContent
+style TextAppearance_StatusBar_EventContent_Info
+style TextAppearance_StatusBar_EventContent_Line2
+style TextAppearance_StatusBar_EventContent_Time
+style TextAppearance_StatusBar_EventContent_Title
+style TextAppearance_Widget_AppCompat_ExpandedMenu_Item
+style TextAppearance_Widget_AppCompat_Toolbar_Subtitle
+style TextAppearance_Widget_AppCompat_Toolbar_Title
+style TextAppearanceLarge
+style TextAppearanceMedium
+style TextAppearanceNormal
+style TextAppearancePrimaryItem
+style TextAppearanceSecondaryItem
+style TextAppearanceSuper
+style TextAppearanceUnderMenuIcon
+style Theme_AppCompat
+style Theme_AppCompat_CompactMenu
+style Theme_AppCompat_Dialog
+style Theme_AppCompat_Dialog_Alert
+style Theme_AppCompat_Dialog_MinWidth
+style Theme_AppCompat_DialogWhenLarge
+style Theme_AppCompat_Light
+style Theme_AppCompat_Light_DarkActionBar
+style Theme_AppCompat_Light_Dialog
+style Theme_AppCompat_Light_Dialog_Alert
+style Theme_AppCompat_Light_Dialog_MinWidth
+style Theme_AppCompat_Light_DialogWhenLarge
+style Theme_AppCompat_Light_NoActionBar
+style Theme_AppCompat_NoActionBar
+style Theme_Code
+style Theme_Code_Fullscreen
+style ThemeOverlay_AppCompat
+style ThemeOverlay_AppCompat_ActionBar
+style ThemeOverlay_AppCompat_Dark
+style ThemeOverlay_AppCompat_Dark_ActionBar
+style ThemeOverlay_AppCompat_Light
+style ThemeOverlay_Code_FullscreenContainer
+style Widget_AppCompat_ActionBar
+style Widget_AppCompat_ActionBar_Solid
+style Widget_AppCompat_ActionBar_TabBar
+style Widget_AppCompat_ActionBar_TabText
+style Widget_AppCompat_ActionBar_TabView
+style Widget_AppCompat_ActionButton
+style Widget_AppCompat_ActionButton_CloseMode
+style Widget_AppCompat_ActionButton_Overflow
+style Widget_AppCompat_ActionMode
+style Widget_AppCompat_ActivityChooserView
+style Widget_AppCompat_AutoCompleteTextView
+style Widget_AppCompat_Button
+style Widget_AppCompat_Button_Borderless
+style Widget_AppCompat_Button_Borderless_Colored
+style Widget_AppCompat_Button_ButtonBar_AlertDialog
+style Widget_AppCompat_Button_Small
+style Widget_AppCompat_ButtonBar
+style Widget_AppCompat_ButtonBar_AlertDialog
+style Widget_AppCompat_CompoundButton_CheckBox
+style Widget_AppCompat_CompoundButton_RadioButton
+style Widget_AppCompat_CompoundButton_Switch
+style Widget_AppCompat_DrawerArrowToggle
+style Widget_AppCompat_DropDownItem_Spinner
+style Widget_AppCompat_EditText
+style Widget_AppCompat_Light_ActionBar
+style Widget_AppCompat_Light_ActionBar_Solid
+style Widget_AppCompat_Light_ActionBar_Solid_Inverse
+style Widget_AppCompat_Light_ActionBar_TabBar
+style Widget_AppCompat_Light_ActionBar_TabBar_Inverse
+style Widget_AppCompat_Light_ActionBar_TabText
+style Widget_AppCompat_Light_ActionBar_TabText_Inverse
+style Widget_AppCompat_Light_ActionBar_TabView
+style Widget_AppCompat_Light_ActionBar_TabView_Inverse
+style Widget_AppCompat_Light_ActionButton
+style Widget_AppCompat_Light_ActionButton_CloseMode
+style Widget_AppCompat_Light_ActionButton_Overflow
+style Widget_AppCompat_Light_ActionMode_Inverse
+style Widget_AppCompat_Light_ActivityChooserView
+style Widget_AppCompat_Light_AutoCompleteTextView
+style Widget_AppCompat_Light_DropDownItem_Spinner
+style Widget_AppCompat_Light_ListPopupWindow
+style Widget_AppCompat_Light_ListView_DropDown
+style Widget_AppCompat_Light_PopupMenu
+style Widget_AppCompat_Light_PopupMenu_Overflow
+style Widget_AppCompat_Light_SearchView
+style Widget_AppCompat_Light_Spinner_DropDown_ActionBar
+style Widget_AppCompat_ListPopupWindow
+style Widget_AppCompat_ListView
+style Widget_AppCompat_ListView_DropDown
+style Widget_AppCompat_ListView_Menu
+style Widget_AppCompat_PopupMenu
+style Widget_AppCompat_PopupMenu_Overflow
+style Widget_AppCompat_PopupWindow
+style Widget_AppCompat_ProgressBar
+style Widget_AppCompat_ProgressBar_Horizontal
+style Widget_AppCompat_RatingBar
+style Widget_AppCompat_SearchView
+style Widget_AppCompat_SearchView_ActionBar
+style Widget_AppCompat_Spinner
+style Widget_AppCompat_Spinner_DropDown
+style Widget_AppCompat_Spinner_DropDown_ActionBar
+style Widget_AppCompat_Spinner_Underlined
+style Widget_AppCompat_TextView_SpinnerItem
+style Widget_AppCompat_Toolbar
+style Widget_AppCompat_Toolbar_Button_Navigation
+style Widget_Theme_Code_ActionBar_Fullscreen
+style Widget_Theme_Code_ButtonBar_Fullscreen
+styleable ActionBar background backgroundSplit backgroundStacked contentInsetEnd contentInsetLeft contentInsetRight contentInsetStart customNavigationLayout displayOptions divider elevation height hideOnContentScroll homeAsUpIndicator homeLayout icon indeterminateProgressStyle itemPadding logo navigationMode popupTheme progressBarPadding progressBarStyle subtitle subtitleTextStyle title titleTextStyle
+styleable ActionBarLayout android_layout_gravity
+styleable ActionMenuItemView android_minWidth
+styleable ActionMenuView
+styleable ActionMode background backgroundSplit closeItemLayout height subtitleTextStyle titleTextStyle
+styleable ActivityChooserView expandActivityOverflowButtonDrawable initialActivityCount
+styleable AlertDialog android_layout buttonPanelSideLayout listItemLayout listLayout multiChoiceItemLayout singleChoiceItemLayout
+styleable AppCompatTextView android_textAppearance textAllCaps
+styleable DrawerArrowToggle barSize color drawableSize gapBetweenBars middleBarArrowSize spinBars thickness topBottomBarArrowSize
+styleable FullscreenAttrs fullscreenBackgroundColor fullscreenTextColor
+styleable LinearLayoutCompat android_gravity android_orientation android_baselineAligned android_baselineAlignedChildIndex android_weightSum divider dividerPadding measureWithLargestChild showDividers
+styleable LinearLayoutCompat_Layout android_layout_gravity android_layout_width android_layout_height android_layout_weight
+styleable ListPopupWindow android_dropDownHorizontalOffset android_dropDownVerticalOffset
+styleable MenuGroup android_enabled android_id android_visible android_menuCategory android_orderInCategory android_checkableBehavior
+styleable MenuItem android_icon android_enabled android_id android_checked android_visible android_menuCategory android_orderInCategory android_title android_titleCondensed android_alphabeticShortcut android_numericShortcut android_checkable android_onClick actionLayout actionProviderClass actionViewClass showAsAction
+styleable MenuView android_windowAnimationStyle android_itemTextAppearance android_horizontalDivider android_verticalDivider android_headerBackground android_itemBackground android_itemIconDisabledAlpha preserveIconSpacing
+styleable PopupWindow android_popupBackground overlapAnchor
+styleable PopupWindowBackgroundState state_above_anchor
+styleable SearchView android_focusable android_maxWidth android_inputType android_imeOptions closeIcon commitIcon defaultQueryHint goIcon iconifiedByDefault layout queryBackground queryHint searchHintIcon searchIcon submitBackground suggestionRowLayout voiceIcon
+styleable Spinner android_gravity android_background android_dropDownSelector android_popupBackground android_dropDownWidth android_dropDownHorizontalOffset android_dropDownVerticalOffset disableChildrenWhenDisabled popupPromptView prompt spinnerMode
+styleable SwitchCompat android_textOn android_textOff android_thumb showText splitTrack switchMinWidth switchPadding switchTextAppearance thumbTextPadding track
+styleable TextAppearance android_textSize android_typeface android_textStyle android_textColor textAllCaps
+styleable Theme android_windowIsFloating android_windowAnimationStyle actionBarDivider actionBarItemBackground actionBarPopupTheme actionBarSize actionBarSplitStyle actionBarStyle actionBarTabBarStyle actionBarTabStyle actionBarTabTextStyle actionBarTheme actionBarWidgetTheme actionButtonStyle actionDropDownStyle actionMenuTextAppearance actionMenuTextColor actionModeBackground actionModeCloseButtonStyle actionModeCloseDrawable actionModeCopyDrawable actionModeCutDrawable actionModeFindDrawable actionModePasteDrawable actionModePopupWindowStyle actionModeSelectAllDrawable actionModeShareDrawable actionModeSplitBackground actionModeStyle actionModeWebSearchDrawable actionOverflowButtonStyle actionOverflowMenuStyle activityChooserViewStyle alertDialogButtonGroupStyle alertDialogCenterButtons alertDialogStyle alertDialogTheme autoCompleteTextViewStyle borderlessButtonStyle buttonBarButtonStyle buttonBarNegativeButtonStyle buttonBarNeutralButtonStyle buttonBarPositiveButtonStyle buttonBarStyle buttonStyle buttonStyleSmall checkboxStyle checkedTextViewStyle colorAccent colorButtonNormal colorControlActivated colorControlHighlight colorControlNormal colorPrimary colorPrimaryDark colorSwitchThumbNormal dialogPreferredPadding dialogTheme dividerHorizontal dividerVertical dropDownListViewStyle dropdownListPreferredItemHeight editTextBackground editTextColor editTextStyle homeAsUpIndicator listChoiceBackgroundIndicator listDividerAlertDialog listPopupWindowStyle listPreferredItemHeight listPreferredItemHeightLarge listPreferredItemHeightSmall listPreferredItemPaddingLeft listPreferredItemPaddingRight panelBackground panelMenuListTheme panelMenuListWidth popupMenuStyle popupWindowStyle radioButtonStyle ratingBarStyle searchViewStyle selectableItemBackground selectableItemBackgroundBorderless spinnerDropDownItemStyle spinnerStyle switchStyle textAppearanceLargePopupMenu textAppearanceListItem textAppearanceListItemSmall textAppearanceSearchResultSubtitle textAppearanceSearchResultTitle textAppearanceSmallPopupMenu textColorAlertDialogListItem textColorSearchUrl toolbarNavigationButtonStyle toolbarStyle windowActionBar windowActionBarOverlay windowActionModeOverlay windowFixedHeightMajor windowFixedHeightMinor windowFixedWidthMajor windowFixedWidthMinor windowMinWidthMajor windowMinWidthMinor windowNoTitle
+styleable Toolbar android_gravity android_minHeight collapseContentDescription collapseIcon contentInsetEnd contentInsetLeft contentInsetRight contentInsetStart maxButtonHeight navigationContentDescription navigationIcon popupTheme subtitle subtitleTextAppearance title titleMarginBottom titleMarginEnd titleMarginStart titleMarginTop titleMargins titleTextAppearance
+styleable View android_theme android_focusable backgroundTint backgroundTintMode paddingEnd paddingStart theme
+styleable ViewStubCompat android_id android_layout android_inflatedId
+xml preferences
+xml searchable
+xml widget_2x_info
+xml widget_4x_info
diff --git a/src/app/build/outputs/logs/manifest-merger-debug-report.txt b/src/app/build/outputs/logs/manifest-merger-debug-report.txt
index 5e74efdf..b4013391 100644
--- a/src/app/build/outputs/logs/manifest-merger-debug-report.txt
+++ b/src/app/build/outputs/logs/manifest-merger-debug-report.txt
@@ -1,264 +1,264 @@
-- Merging decision tree log ---
manifest
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:18:1-160:12
-INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:18:1-160:12
-INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:18:1-160:12
-INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:18:1-160:12
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:18:1-160:12
+INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:18:1-160:12
+INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:18:1-160:12
+INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:18:1-160:12
MERGED from [com.android.databinding:viewbinding:8.0.1] C:\Users\huigenb\.gradle\caches\transforms-3\6b6488381df90380ebf186219d84078c\transformed\viewbinding-8.0.1\AndroidManifest.xml:2:1-7:12
MERGED from [com.android.support:appcompat-v7:22.2.1] C:\Users\huigenb\.gradle\caches\transforms-3\1dbc0f7261c89eb9b9e5c125a3979522\transformed\appcompat-v7-22.2.1\AndroidManifest.xml:17:1-24:12
MERGED from [com.android.support:support-v4:22.2.1] C:\Users\huigenb\.gradle\caches\transforms-3\3a2b693effadcdf4bb2c42aea3dedf15\transformed\support-v4-22.2.1\AndroidManifest.xml:17:1-24:12
-INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:18:1-160:12
-INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:18:1-160:12
-INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:18:1-160:12
+INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:18:1-160:12
+INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:18:1-160:12
+INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:18:1-160:12
package
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:20:5-31
- INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml
- INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:20:5-31
+ INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml
+ INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml
android:versionName
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:22:5-30
- INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml
- INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:22:5-30
+ INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml
+ INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml
xmlns:tools
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:19:5-51
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:19:5-51
xmlns:android
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:18:11-69
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:18:11-69
android:versionCode
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:21:5-28
- INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml
- INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:21:5-28
+ INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml
+ INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml
uses-sdk
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:24:5-44
-INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:24:5-44
-INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:24:5-44
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:24:5-44
+INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:24:5-44
+INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:24:5-44
MERGED from [com.android.databinding:viewbinding:8.0.1] C:\Users\huigenb\.gradle\caches\transforms-3\6b6488381df90380ebf186219d84078c\transformed\viewbinding-8.0.1\AndroidManifest.xml:5:5-44
MERGED from [com.android.databinding:viewbinding:8.0.1] C:\Users\huigenb\.gradle\caches\transforms-3\6b6488381df90380ebf186219d84078c\transformed\viewbinding-8.0.1\AndroidManifest.xml:5:5-44
MERGED from [com.android.support:appcompat-v7:22.2.1] C:\Users\huigenb\.gradle\caches\transforms-3\1dbc0f7261c89eb9b9e5c125a3979522\transformed\appcompat-v7-22.2.1\AndroidManifest.xml:20:5-43
MERGED from [com.android.support:appcompat-v7:22.2.1] C:\Users\huigenb\.gradle\caches\transforms-3\1dbc0f7261c89eb9b9e5c125a3979522\transformed\appcompat-v7-22.2.1\AndroidManifest.xml:20:5-43
MERGED from [com.android.support:support-v4:22.2.1] C:\Users\huigenb\.gradle\caches\transforms-3\3a2b693effadcdf4bb2c42aea3dedf15\transformed\support-v4-22.2.1\AndroidManifest.xml:20:5-43
MERGED from [com.android.support:support-v4:22.2.1] C:\Users\huigenb\.gradle\caches\transforms-3\3a2b693effadcdf4bb2c42aea3dedf15\transformed\support-v4-22.2.1\AndroidManifest.xml:20:5-43
-INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:24:5-44
-INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:24:5-44
+INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:24:5-44
+INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:24:5-44
android:targetSdkVersion
- INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:24:5-44
- INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml
+ INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:24:5-44
+ INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml
android:minSdkVersion
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:24:15-41
- INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml
- INJECTED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:24:15-41
+ INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml
+ INJECTED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml
uses-permission#android.permission.WRITE_EXTERNAL_STORAGE
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:26:5-81
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:26:5-81
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:26:22-78
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:26:22-78
uses-permission#com.android.launcher.permission.INSTALL_SHORTCUT
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:27:5-88
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:27:5-88
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:27:22-85
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:27:22-85
uses-permission#android.permission.INTERNET
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:28:5-67
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:28:5-67
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:28:22-64
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:28:22-64
uses-permission#android.permission.READ_CONTACTS
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:29:5-72
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:29:5-72
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:29:22-69
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:29:22-69
uses-permission#android.permission.MANAGE_ACCOUNTS
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:30:5-74
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:30:5-74
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:30:22-71
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:30:22-71
uses-permission#android.permission.AUTHENTICATE_ACCOUNTS
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:31:5-80
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:31:5-80
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:31:22-77
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:31:22-77
uses-permission#android.permission.GET_ACCOUNTS
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:32:5-71
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:32:5-71
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:32:22-68
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:32:22-68
uses-permission#android.permission.USE_CREDENTIALS
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:33:5-74
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:33:5-74
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:33:22-71
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:33:22-71
uses-permission#android.permission.RECEIVE_BOOT_COMPLETED
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:34:5-81
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:34:5-81
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:34:22-78
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:34:22-78
application
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:36:5-159:19
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:36:5-159:19
MERGED from [com.android.support:appcompat-v7:22.2.1] C:\Users\huigenb\.gradle\caches\transforms-3\1dbc0f7261c89eb9b9e5c125a3979522\transformed\appcompat-v7-22.2.1\AndroidManifest.xml:22:5-20
MERGED from [com.android.support:appcompat-v7:22.2.1] C:\Users\huigenb\.gradle\caches\transforms-3\1dbc0f7261c89eb9b9e5c125a3979522\transformed\appcompat-v7-22.2.1\AndroidManifest.xml:22:5-20
MERGED from [com.android.support:support-v4:22.2.1] C:\Users\huigenb\.gradle\caches\transforms-3\3a2b693effadcdf4bb2c42aea3dedf15\transformed\support-v4-22.2.1\AndroidManifest.xml:22:5-20
MERGED from [com.android.support:support-v4:22.2.1] C:\Users\huigenb\.gradle\caches\transforms-3\3a2b693effadcdf4bb2c42aea3dedf15\transformed\support-v4-22.2.1\AndroidManifest.xml:22:5-20
android:label
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:38:9-41
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:38:9-41
android:icon
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:37:9-46
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:37:9-46
activity#net.micode.notes.ui.SplashActivity
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:41:9-51:20
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:41:9-51:20
android:label
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:43:13-58
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:43:13-58
android:configChanges
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:42:13-74
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:42:13-74
android:theme
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:45:13-57
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:45:13-57
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:41:19-52
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:41:19-52
intent-filter#action:name:android.intent.action.MAIN+category:name:android.intent.category.LAUNCHER
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:47:13-50:29
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:47:13-50:29
action#android.intent.action.MAIN
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:48:17-69
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:48:17-69
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:48:25-66
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:48:25-66
category#android.intent.category.LAUNCHER
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:49:17-77
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:49:17-77
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:49:27-74
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:49:27-74
activity#net.micode.notes.ui.NotesListActivity
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:53:9-61:20
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:53:9-61:20
android:label
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:56:13-45
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:56:13-45
android:launchMode
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:57:13-43
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:57:13-43
android:windowSoftInputMode
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:60:13-52
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:60:13-52
android:uiOptions
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:59:13-57
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:59:13-57
android:configChanges
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:55:13-74
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:55:13-74
android:theme
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:58:13-45
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:58:13-45
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:54:13-49
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:54:13-49
activity#net.micode.notes.ui.NoteEditActivity
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:64:9-95:20
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:64:9-95:20
android:launchMode
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:67:13-43
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:67:13-43
android:configChanges
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:66:13-74
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:66:13-74
android:theme
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:68:13-45
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:68:13-45
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:65:13-48
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:65:13-48
intent-filter#action:name:android.intent.action.VIEW+category:name:android.intent.category.DEFAULT+data:mimeType:vnd.android.cursor.item/call_note+data:mimeType:vnd.android.cursor.item/text_note
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:70:13-77:29
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:70:13-77:29
android:scheme
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:70:28-49
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:70:28-49
tools:ignore
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:71:17-47
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:71:17-47
action#android.intent.action.VIEW
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:72:17-69
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:72:17-69
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:72:25-66
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:72:25-66
category#android.intent.category.DEFAULT
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:73:17-76
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:73:17-76
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:73:27-73
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:73:27-73
data
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:75:17-78
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:75:17-78
android:mimeType
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:75:23-75
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:75:23-75
intent-filter#action:name:android.intent.action.INSERT_OR_EDIT+category:name:android.intent.category.DEFAULT+data:mimeType:vnd.android.cursor.item/call_note+data:mimeType:vnd.android.cursor.item/text_note
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:79:13-85:29
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:79:13-85:29
action#android.intent.action.INSERT_OR_EDIT
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:80:17-79
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:80:17-79
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:80:25-76
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:80:25-76
intent-filter#action:name:android.intent.action.SEARCH+category:name:android.intent.category.DEFAULT
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:87:13-90:29
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:87:13-90:29
action#android.intent.action.SEARCH
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:88:17-71
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:88:17-71
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:88:25-68
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:88:25-68
meta-data#android.app.searchable
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:92:13-94:54
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:92:13-94:54
android:resource
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:94:17-51
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:94:17-51
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:93:17-54
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:93:17-54
provider#net.micode.notes.data.NotesProvider
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:97:9-100:43
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:97:9-100:43
android:authorities
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:99:13-47
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:99:13-47
android:multiprocess
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:100:13-40
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:100:13-40
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:98:13-63
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:98:13-63
receiver#net.micode.notes.widget.NoteWidgetProvider_2x
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:102:9-114:20
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:102:9-114:20
android:label
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:104:13-50
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:104:13-50
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:103:13-57
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:103:13-57
intent-filter#action:name:android.appwidget.action.APPWIDGET_DELETED+action:name:android.appwidget.action.APPWIDGET_UPDATE+action:name:android.intent.action.PRIVACY_MODE_CHANGED
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:105:13-109:29
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:105:13-109:29
action#android.appwidget.action.APPWIDGET_UPDATE
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:106:17-84
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:106:17-84
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:106:25-81
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:106:25-81
action#android.appwidget.action.APPWIDGET_DELETED
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:107:17-85
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:107:17-85
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:107:25-82
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:107:25-82
action#android.intent.action.PRIVACY_MODE_CHANGED
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:108:17-85
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:108:17-85
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:108:25-82
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:108:25-82
meta-data#android.appwidget.provider
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:111:13-113:58
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:111:13-113:58
android:resource
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:113:17-55
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:113:17-55
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:112:17-58
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:112:17-58
receiver#net.micode.notes.widget.NoteWidgetProvider_4x
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:115:9-128:20
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:115:9-128:20
android:label
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:117:13-50
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:117:13-50
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:116:13-57
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:116:13-57
receiver#net.micode.notes.ui.AlarmInitReceiver
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:130:9-134:20
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:130:9-134:20
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:130:19-55
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:130:19-55
intent-filter#action:name:android.intent.action.BOOT_COMPLETED
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:131:13-133:29
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:131:13-133:29
action#android.intent.action.BOOT_COMPLETED
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:132:17-79
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:132:17-79
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:132:25-76
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:132:25-76
receiver#net.micode.notes.ui.AlarmReceiver
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:136:9-138:50
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:136:9-138:50
android:process
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:138:13-38
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:138:13-38
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:137:13-61
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:137:13-61
activity#net.micode.notes.ui.AlarmAlertActivity
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:140:9-144:87
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:140:9-144:87
android:label
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:142:13-45
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:142:13-45
android:launchMode
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:143:13-48
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:143:13-48
android:theme
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:144:13-75
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:144:13-75
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:141:13-50
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:141:13-50
activity#net.micode.notes.ui.NotesPreferenceActivity
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:146:9-150:72
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:146:9-150:72
android:label
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:148:13-54
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:148:13-54
android:launchMode
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:149:13-43
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:149:13-43
android:theme
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:150:13-60
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:150:13-60
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:147:13-71
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:147:13-71
service#net.micode.notes.gtask.remote.GTaskSyncService
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:152:9-154:48
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:152:9-154:48
android:exported
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:154:13-37
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:154:13-37
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:153:13-74
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:153:13-74
meta-data#android.app.default_searchable
-ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:156:9-158:52
+ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:156:9-158:52
android:value
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:158:13-49
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:158:13-49
android:name
- ADDED from C:\Users\huigenb\Desktop\All tasks\software\Code\app\src\main\AndroidManifest.xml:157:13-58
+ ADDED from C:\Users\huigenb\Desktop\Git\ghnb\src\app\src\main\AndroidManifest.xml:157:13-58
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DropdownMenu$1.class.uniqueId9 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DropdownMenu$1.class.uniqueId9
new file mode 100644
index 00000000..7c0d343e
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DropdownMenu$1.class.uniqueId9 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DropdownMenu.class.uniqueId0 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DropdownMenu.class.uniqueId0
new file mode 100644
index 00000000..c7e37cda
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/DropdownMenu.class.uniqueId0 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GTaskASyncTask$1.class.uniqueId10 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GTaskASyncTask$1.class.uniqueId10
new file mode 100644
index 00000000..520d1dad
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GTaskASyncTask$1.class.uniqueId10 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GTaskASyncTask$OnCompleteListener.class.uniqueId7 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GTaskASyncTask$OnCompleteListener.class.uniqueId7
new file mode 100644
index 00000000..f73069cb
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GTaskASyncTask$OnCompleteListener.class.uniqueId7 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GTaskASyncTask.class.uniqueId11 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GTaskASyncTask.class.uniqueId11
new file mode 100644
index 00000000..dea216da
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/GTaskASyncTask.class.uniqueId11 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$1.class.uniqueId3 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$1.class.uniqueId3
new file mode 100644
index 00000000..60483a32
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$1.class.uniqueId3 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$2.class.uniqueId2 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$2.class.uniqueId2
new file mode 100644
index 00000000..0a3cc561
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$2.class.uniqueId2 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$3.class.uniqueId4 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$3.class.uniqueId4
new file mode 100644
index 00000000..5674ef3a
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$3.class.uniqueId4 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$4.class.uniqueId8 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$4.class.uniqueId8
new file mode 100644
index 00000000..8d204ce5
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$4.class.uniqueId8 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$HeadViewHolder.class.uniqueId16 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$HeadViewHolder.class.uniqueId16
new file mode 100644
index 00000000..70110697
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity$HeadViewHolder.class.uniqueId16 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity.class.uniqueId14 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity.class.uniqueId14
new file mode 100644
index 00000000..27851dba
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NoteEditActivity.class.uniqueId14 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListItem.class.uniqueId17 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListItem.class.uniqueId17
new file mode 100644
index 00000000..8777b108
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesListItem.class.uniqueId17 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesProvider.class.uniqueId1 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesProvider.class.uniqueId1
new file mode 100644
index 00000000..9103adc4
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/NotesProvider.class.uniqueId1 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$NoteBgResources.class.uniqueId12 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$NoteBgResources.class.uniqueId12
new file mode 100644
index 00000000..84e57a4f
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$NoteBgResources.class.uniqueId12 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$NoteItemBgResources.class.uniqueId13 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$NoteItemBgResources.class.uniqueId13
new file mode 100644
index 00000000..8805a063
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$NoteItemBgResources.class.uniqueId13 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$TextAppearanceResources.class.uniqueId6 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$TextAppearanceResources.class.uniqueId6
new file mode 100644
index 00000000..7f2eb75f
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$TextAppearanceResources.class.uniqueId6 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$WidgetBgResources.class.uniqueId5 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$WidgetBgResources.class.uniqueId5
new file mode 100644
index 00000000..b4ec3bab
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser$WidgetBgResources.class.uniqueId5 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser.class.uniqueId15 b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser.class.uniqueId15
new file mode 100644
index 00000000..f2e1b626
Binary files /dev/null and b/src/app/build/tmp/compileDebugJavaWithJavac/compileTransaction/stash-dir/ResourceParser.class.uniqueId15 differ
diff --git a/src/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin b/src/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin
index 87c0a5d4..a812275b 100644
Binary files a/src/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin and b/src/app/build/tmp/compileDebugJavaWithJavac/previous-compilation-data.bin differ
diff --git a/src/app/src/main/java/net/micode/notes/ui/SplashActivity.java b/src/app/src/main/java/net/micode/notes/ui/SplashActivity.java
new file mode 100644
index 00000000..175939ba
--- /dev/null
+++ b/src/app/src/main/java/net/micode/notes/ui/SplashActivity.java
@@ -0,0 +1,26 @@
+package net.micode.notes.ui;
+
+import android.app.Activity;
+import android.content.Intent;
+import android.os.Bundle;
+import android.os.Handler;
+
+import net.micode.notes.R;
+
+public class SplashActivity extends Activity {
+
+ Handler handler = new Handler();
+
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ setContentView(R.layout.activity_splash);
+ handler.postDelayed(new Runnable() {
+ @Override
+ public void run() {
+ startActivity(new Intent(SplashActivity.this,NotesListActivity.class));
+ finish();
+ }
+ },5000);
+ }
+}
\ No newline at end of file
diff --git a/src/app/src/main/res/drawable-hdpi/a.png b/src/app/src/main/res/drawable-hdpi/a.png
new file mode 100644
index 00000000..7b6b773d
Binary files /dev/null and b/src/app/src/main/res/drawable-hdpi/a.png differ
diff --git a/src/app/src/main/res/drawable-hdpi/abc.png b/src/app/src/main/res/drawable-hdpi/abc.png
new file mode 100644
index 00000000..d53b1c06
Binary files /dev/null and b/src/app/src/main/res/drawable-hdpi/abc.png differ
diff --git a/src/app/src/main/res/drawable/splash.png b/src/app/src/main/res/drawable/splash.png
new file mode 100644
index 00000000..5b28f18b
Binary files /dev/null and b/src/app/src/main/res/drawable/splash.png differ
diff --git a/src/app/src/main/res/layout/activity_splash.xml b/src/app/src/main/res/layout/activity_splash.xml
new file mode 100644
index 00000000..19e9d979
--- /dev/null
+++ b/src/app/src/main/res/layout/activity_splash.xml
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/src/main/res/values-night/themes.xml b/src/app/src/main/res/values-night/themes.xml
new file mode 100644
index 00000000..b9b0dd43
--- /dev/null
+++ b/src/app/src/main/res/values-night/themes.xml
@@ -0,0 +1,7 @@
+
+
+
+
\ No newline at end of file
diff --git a/src/app/src/main/res/values/attrs.xml b/src/app/src/main/res/values/attrs.xml
new file mode 100644
index 00000000..e52391d2
--- /dev/null
+++ b/src/app/src/main/res/values/attrs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/app/src/main/res/values/themes.xml b/src/app/src/main/res/values/themes.xml
new file mode 100644
index 00000000..5de1ca46
--- /dev/null
+++ b/src/app/src/main/res/values/themes.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
\ No newline at end of file