小组最终版!!!

main
huige 2 years ago
parent 4f3aff5be0
commit 715df5bfea

Binary file not shown.

@ -12,6 +12,6 @@
</deviceKey> </deviceKey>
</Target> </Target>
</targetSelectedWithDropDown> </targetSelectedWithDropDown>
<timeTargetWasSelectedWithDropDown value="2023-12-08T16:45:36.991735100Z" /> <timeTargetWasSelectedWithDropDown value="2024-01-18T17:22:48.685340200Z" />
</component> </component>
</project> </project>

@ -0,0 +1,102 @@
// Generated by view binder compiler. Do not edit!
package net.micode.notes.databinding;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.viewbinding.ViewBinding;
import android.viewbinding.ViewBindings;
import android.widget.Button;
import android.widget.EditText;
import android.widget.LinearLayout;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
import net.micode.notes.R;
public final class ActivityChangePasswordBinding implements ViewBinding {
@NonNull
private final LinearLayout rootView;
@NonNull
public final Button Acknowledged;
@NonNull
public final EditText ackPassword;
@NonNull
public final EditText newPassword;
@NonNull
public final EditText oldPassword;
private ActivityChangePasswordBinding(@NonNull LinearLayout rootView,
@NonNull Button Acknowledged, @NonNull EditText ackPassword, @NonNull EditText newPassword,
@NonNull EditText oldPassword) {
this.rootView = rootView;
this.Acknowledged = Acknowledged;
this.ackPassword = ackPassword;
this.newPassword = newPassword;
this.oldPassword = oldPassword;
}
@Override
@NonNull
public LinearLayout getRoot() {
return rootView;
}
@NonNull
public static ActivityChangePasswordBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static ActivityChangePasswordBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.activity_change_password, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static ActivityChangePasswordBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.Acknowledged;
Button Acknowledged = ViewBindings.findChildViewById(rootView, id);
if (Acknowledged == null) {
break missingId;
}
id = R.id.ack_password;
EditText ackPassword = ViewBindings.findChildViewById(rootView, id);
if (ackPassword == null) {
break missingId;
}
id = R.id.new_password;
EditText newPassword = ViewBindings.findChildViewById(rootView, id);
if (newPassword == null) {
break missingId;
}
id = R.id.old_password;
EditText oldPassword = ViewBindings.findChildViewById(rootView, id);
if (oldPassword == null) {
break missingId;
}
return new ActivityChangePasswordBinding((LinearLayout) rootView, Acknowledged, ackPassword,
newPassword, oldPassword);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}

@ -0,0 +1,81 @@
// Generated by view binder compiler. Do not edit!
package net.micode.notes.databinding;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.viewbinding.ViewBinding;
import android.viewbinding.ViewBindings;
import android.widget.Button;
import android.widget.EditText;
import android.widget.LinearLayout;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
import net.micode.notes.R;
public final class ActivityDeletePasswordBinding implements ViewBinding {
@NonNull
private final LinearLayout rootView;
@NonNull
public final Button DtAcknowledged;
@NonNull
public final EditText thepassword;
private ActivityDeletePasswordBinding(@NonNull LinearLayout rootView,
@NonNull Button DtAcknowledged, @NonNull EditText thepassword) {
this.rootView = rootView;
this.DtAcknowledged = DtAcknowledged;
this.thepassword = thepassword;
}
@Override
@NonNull
public LinearLayout getRoot() {
return rootView;
}
@NonNull
public static ActivityDeletePasswordBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static ActivityDeletePasswordBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.activity_delete_password, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static ActivityDeletePasswordBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.Dt_Acknowledged;
Button DtAcknowledged = ViewBindings.findChildViewById(rootView, id);
if (DtAcknowledged == null) {
break missingId;
}
id = R.id.thepassword;
EditText thepassword = ViewBindings.findChildViewById(rootView, id);
if (thepassword == null) {
break missingId;
}
return new ActivityDeletePasswordBinding((LinearLayout) rootView, DtAcknowledged,
thepassword);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}

@ -0,0 +1,80 @@
// Generated by view binder compiler. Do not edit!
package net.micode.notes.databinding;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.viewbinding.ViewBinding;
import android.viewbinding.ViewBindings;
import android.widget.Button;
import android.widget.EditText;
import android.widget.LinearLayout;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
import net.micode.notes.R;
public final class ActivityLoginBinding implements ViewBinding {
@NonNull
private final LinearLayout rootView;
@NonNull
public final EditText lgPassword;
@NonNull
public final Button login;
private ActivityLoginBinding(@NonNull LinearLayout rootView, @NonNull EditText lgPassword,
@NonNull Button login) {
this.rootView = rootView;
this.lgPassword = lgPassword;
this.login = login;
}
@Override
@NonNull
public LinearLayout getRoot() {
return rootView;
}
@NonNull
public static ActivityLoginBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static ActivityLoginBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.activity_login, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static ActivityLoginBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.lg_password;
EditText lgPassword = ViewBindings.findChildViewById(rootView, id);
if (lgPassword == null) {
break missingId;
}
id = R.id.login;
Button login = ViewBindings.findChildViewById(rootView, id);
if (login == null) {
break missingId;
}
return new ActivityLoginBinding((LinearLayout) rootView, lgPassword, login);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}

@ -0,0 +1,91 @@
// Generated by view binder compiler. Do not edit!
package net.micode.notes.databinding;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.viewbinding.ViewBinding;
import android.viewbinding.ViewBindings;
import android.widget.Button;
import android.widget.EditText;
import android.widget.LinearLayout;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
import net.micode.notes.R;
public final class ActivitySetLoginpasswordBinding implements ViewBinding {
@NonNull
private final LinearLayout rootView;
@NonNull
public final Button acknowledge;
@NonNull
public final EditText password;
@NonNull
public final EditText passwordAck;
private ActivitySetLoginpasswordBinding(@NonNull LinearLayout rootView,
@NonNull Button acknowledge, @NonNull EditText password, @NonNull EditText passwordAck) {
this.rootView = rootView;
this.acknowledge = acknowledge;
this.password = password;
this.passwordAck = passwordAck;
}
@Override
@NonNull
public LinearLayout getRoot() {
return rootView;
}
@NonNull
public static ActivitySetLoginpasswordBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static ActivitySetLoginpasswordBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.activity_set_loginpassword, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static ActivitySetLoginpasswordBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.acknowledge;
Button acknowledge = ViewBindings.findChildViewById(rootView, id);
if (acknowledge == null) {
break missingId;
}
id = R.id.password;
EditText password = ViewBindings.findChildViewById(rootView, id);
if (password == null) {
break missingId;
}
id = R.id.password_ack;
EditText passwordAck = ViewBindings.findChildViewById(rootView, id);
if (passwordAck == null) {
break missingId;
}
return new ActivitySetLoginpasswordBinding((LinearLayout) rootView, acknowledge, password,
passwordAck);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}

@ -8,6 +8,7 @@ import android.view.View;
import android.view.ViewGroup; import android.view.ViewGroup;
import android.viewbinding.ViewBinding; import android.viewbinding.ViewBinding;
import android.viewbinding.ViewBindings; import android.viewbinding.ViewBindings;
import android.widget.Button;
import android.widget.FrameLayout; import android.widget.FrameLayout;
import android.widget.ImageView; import android.widget.ImageView;
import android.widget.LinearLayout; import android.widget.LinearLayout;
@ -25,6 +26,9 @@ public final class NoteEditBinding implements ViewBinding {
@NonNull @NonNull
public final ImageView btnSetBgColor; public final ImageView btnSetBgColor;
@NonNull
public final Button btnSetType;
@NonNull @NonNull
public final LinearLayout fontSizeSelector; public final LinearLayout fontSizeSelector;
@ -110,8 +114,9 @@ public final class NoteEditBinding implements ViewBinding {
public final TextView tvModifiedDate; public final TextView tvModifiedDate;
private NoteEditBinding(@NonNull FrameLayout rootView, @NonNull ImageView btnSetBgColor, private NoteEditBinding(@NonNull FrameLayout rootView, @NonNull ImageView btnSetBgColor,
@NonNull LinearLayout fontSizeSelector, @NonNull ImageView ivAlertIcon, @NonNull Button btnSetType, @NonNull LinearLayout fontSizeSelector,
@NonNull ImageView ivBgBlue, @NonNull ImageView ivBgBlueSelect, @NonNull ImageView ivBgGreen, @NonNull ImageView ivAlertIcon, @NonNull ImageView ivBgBlue,
@NonNull ImageView ivBgBlueSelect, @NonNull ImageView ivBgGreen,
@NonNull ImageView ivBgGreenSelect, @NonNull ImageView ivBgRed, @NonNull ImageView ivBgGreenSelect, @NonNull ImageView ivBgRed,
@NonNull ImageView ivBgRedSelect, @NonNull ImageView ivBgWhite, @NonNull ImageView ivBgRedSelect, @NonNull ImageView ivBgWhite,
@NonNull ImageView ivBgWhiteSelect, @NonNull ImageView ivBgYellow, @NonNull ImageView ivBgWhiteSelect, @NonNull ImageView ivBgYellow,
@ -125,6 +130,7 @@ public final class NoteEditBinding implements ViewBinding {
@NonNull TextView tvAlertDate, @NonNull TextView tvModifiedDate) { @NonNull TextView tvAlertDate, @NonNull TextView tvModifiedDate) {
this.rootView = rootView; this.rootView = rootView;
this.btnSetBgColor = btnSetBgColor; this.btnSetBgColor = btnSetBgColor;
this.btnSetType = btnSetType;
this.fontSizeSelector = fontSizeSelector; this.fontSizeSelector = fontSizeSelector;
this.ivAlertIcon = ivAlertIcon; this.ivAlertIcon = ivAlertIcon;
this.ivBgBlue = ivBgBlue; this.ivBgBlue = ivBgBlue;
@ -188,6 +194,12 @@ public final class NoteEditBinding implements ViewBinding {
break missingId; break missingId;
} }
id = R.id.btn_SetType;
Button btnSetType = ViewBindings.findChildViewById(rootView, id);
if (btnSetType == null) {
break missingId;
}
id = R.id.font_size_selector; id = R.id.font_size_selector;
LinearLayout fontSizeSelector = ViewBindings.findChildViewById(rootView, id); LinearLayout fontSizeSelector = ViewBindings.findChildViewById(rootView, id);
if (fontSizeSelector == null) { if (fontSizeSelector == null) {
@ -356,12 +368,12 @@ public final class NoteEditBinding implements ViewBinding {
break missingId; break missingId;
} }
return new NoteEditBinding((FrameLayout) rootView, btnSetBgColor, fontSizeSelector, return new NoteEditBinding((FrameLayout) rootView, btnSetBgColor, btnSetType,
ivAlertIcon, ivBgBlue, ivBgBlueSelect, ivBgGreen, ivBgGreenSelect, ivBgRed, ivBgRedSelect, fontSizeSelector, ivAlertIcon, ivBgBlue, ivBgBlueSelect, ivBgGreen, ivBgGreenSelect,
ivBgWhite, ivBgWhiteSelect, ivBgYellow, ivBgYellowSelect, ivLargeSelect, ivMediumSelect, ivBgRed, ivBgRedSelect, ivBgWhite, ivBgWhiteSelect, ivBgYellow, ivBgYellowSelect,
ivSmallSelect, ivSuperSelect, llFontLarge, llFontNormal, llFontSmall, llFontSuper, ivLargeSelect, ivMediumSelect, ivSmallSelect, ivSuperSelect, llFontLarge, llFontNormal,
noteBgColorSelector, noteEditList, noteEditView, noteTitle, svNoteEdit, textNum, llFontSmall, llFontSuper, noteBgColorSelector, noteEditList, noteEditView, noteTitle,
tvAlertDate, tvModifiedDate); svNoteEdit, textNum, tvAlertDate, tvModifiedDate);
} }
String missingId = rootView.getResources().getResourceName(id); String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId)); throw new NullPointerException("Missing required view with ID: ".concat(missingId));

@ -39,9 +39,12 @@ public final class NoteItemBinding implements ViewBinding {
@NonNull @NonNull
public final TextView tvTitle; public final TextView tvTitle;
@NonNull
public final TextView tvType;
private NoteItemBinding(@NonNull FrameLayout rootView, @NonNull CheckBox checkbox, private NoteItemBinding(@NonNull FrameLayout rootView, @NonNull CheckBox checkbox,
@NonNull ImageView ivAlertIcon, @NonNull FrameLayout noteItem, @NonNull TextView tvName, @NonNull ImageView ivAlertIcon, @NonNull FrameLayout noteItem, @NonNull TextView tvName,
@NonNull TextView tvTime, @NonNull TextView tvTitle) { @NonNull TextView tvTime, @NonNull TextView tvTitle, @NonNull TextView tvType) {
this.rootView = rootView; this.rootView = rootView;
this.checkbox = checkbox; this.checkbox = checkbox;
this.ivAlertIcon = ivAlertIcon; this.ivAlertIcon = ivAlertIcon;
@ -49,6 +52,7 @@ public final class NoteItemBinding implements ViewBinding {
this.tvName = tvName; this.tvName = tvName;
this.tvTime = tvTime; this.tvTime = tvTime;
this.tvTitle = tvTitle; this.tvTitle = tvTitle;
this.tvType = tvType;
} }
@Override @Override
@ -110,8 +114,14 @@ public final class NoteItemBinding implements ViewBinding {
break missingId; break missingId;
} }
id = R.id.tv_type;
TextView tvType = ViewBindings.findChildViewById(rootView, id);
if (tvType == null) {
break missingId;
}
return new NoteItemBinding((FrameLayout) rootView, checkbox, ivAlertIcon, noteItem, tvName, return new NoteItemBinding((FrameLayout) rootView, checkbox, ivAlertIcon, noteItem, tvName,
tvTime, tvTitle); tvTime, tvTitle, tvType);
} }
String missingId = rootView.getResources().getResourceName(id); String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId)); throw new NullPointerException("Missing required view with ID: ".concat(missingId));

@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_change_password" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\activity_change_password.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/activity_change_password_0" view="LinearLayout"><Expressions/><location startLine="2" startOffset="0" endLine="68" endOffset="14"/></Target><Target id="@+id/old_password" view="EditText"><Expressions/><location startLine="17" startOffset="8" endLine="22" endOffset="39"/></Target><Target id="@+id/new_password" view="EditText"><Expressions/><location startLine="32" startOffset="8" endLine="37" endOffset="39"/></Target><Target id="@+id/ack_password" view="EditText"><Expressions/><location startLine="48" startOffset="8" endLine="53" endOffset="39"/></Target><Target id="@+id/Acknowledged" view="Button"><Expressions/><location startLine="61" startOffset="8" endLine="65" endOffset="30"/></Target></Targets></Layout>

@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_delete_password" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\activity_delete_password.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/activity_delete_password_0" view="LinearLayout"><Expressions/><location startLine="2" startOffset="0" endLine="30" endOffset="14"/></Target><Target id="@+id/thepassword" view="EditText"><Expressions/><location startLine="15" startOffset="8" endLine="19" endOffset="36"/></Target><Target id="@+id/Dt_Acknowledged" view="Button"><Expressions/><location startLine="24" startOffset="33" endLine="28" endOffset="26"/></Target></Targets></Layout>

@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_login" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\activity_login.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/activity_login_0" view="LinearLayout"><Expressions/><location startLine="2" startOffset="0" endLine="33" endOffset="14"/></Target><Target id="@+id/lg_password" view="EditText"><Expressions/><location startLine="16" startOffset="8" endLine="20" endOffset="36"/></Target><Target id="@+id/login" view="Button"><Expressions/><location startLine="27" startOffset="8" endLine="31" endOffset="30"/></Target></Targets></Layout>

@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_set_loginpassword" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\activity_set_loginpassword.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/activity_set_loginpassword_0" view="LinearLayout"><Expressions/><location startLine="2" startOffset="0" endLine="55" endOffset="14"/></Target><Target id="@+id/password" view="EditText"><Expressions/><location startLine="19" startOffset="8" endLine="23" endOffset="37"/></Target><Target id="@+id/password_ack" view="EditText"><Expressions/><location startLine="37" startOffset="8" endLine="41" endOffset="37"/></Target><Target id="@+id/acknowledge" view="Button"><Expressions/><location startLine="49" startOffset="8" endLine="53" endOffset="31"/></Target></Targets></Layout>

@ -1 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_edit" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_edit.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout"><Targets><Target tag="layout/note_edit_0" view="FrameLayout"><Expressions/><location startLine="17" startOffset="0" endLine="407" endOffset="13"/></Target><Target id="@+id/note_title" view="LinearLayout"><Expressions/><location startLine="28" startOffset="8" endLine="71" endOffset="22"/></Target><Target id="@+id/text_num" view="TextView"><Expressions/><location startLine="34" startOffset="12" endLine="39" endOffset="46"/></Target><Target id="@+id/tv_modified_date" view="TextView"><Expressions/><location startLine="41" startOffset="12" endLine="48" endOffset="77"/></Target><Target id="@+id/iv_alert_icon" view="ImageView"><Expressions/><location startLine="50" startOffset="12" endLine="55" endOffset="60"/></Target><Target id="@+id/tv_alert_date" view="TextView"><Expressions/><location startLine="57" startOffset="12" endLine="64" endOffset="77"/></Target><Target id="@+id/sv_note_edit" view="LinearLayout"><Expressions/><location startLine="73" startOffset="8" endLine="123" endOffset="22"/></Target><Target id="@+id/note_edit_view" view="net.micode.notes.ui.NoteEditText"><Expressions/><location startLine="97" startOffset="20" endLine="107" endOffset="61"/></Target><Target id="@+id/note_edit_list" view="LinearLayout"><Expressions/><location startLine="109" startOffset="20" endLine="115" endOffset="51"/></Target><Target id="@+id/btn_set_bg_color" view="ImageView"><Expressions/><location startLine="126" startOffset="4" endLine="131" endOffset="44"/></Target><Target id="@+id/note_bg_color_selector" view="LinearLayout"><Expressions/><location startLine="133" startOffset="4" endLine="245" endOffset="18"/></Target><Target id="@+id/iv_bg_yellow" view="ImageView"><Expressions/><location startLine="148" startOffset="12" endLine="151" endOffset="54"/></Target><Target id="@+id/iv_bg_yellow_select" view="ImageView"><Expressions/><location startLine="153" startOffset="12" endLine="161" endOffset="50"/></Target><Target id="@+id/iv_bg_blue" view="ImageView"><Expressions/><location startLine="169" startOffset="12" endLine="172" endOffset="54"/></Target><Target id="@+id/iv_bg_blue_select" view="ImageView"><Expressions/><location startLine="174" startOffset="12" endLine="182" endOffset="50"/></Target><Target id="@+id/iv_bg_white" view="ImageView"><Expressions/><location startLine="190" startOffset="12" endLine="193" endOffset="54"/></Target><Target id="@+id/iv_bg_white_select" view="ImageView"><Expressions/><location startLine="195" startOffset="12" endLine="203" endOffset="50"/></Target><Target id="@+id/iv_bg_green" view="ImageView"><Expressions/><location startLine="211" startOffset="12" endLine="214" endOffset="54"/></Target><Target id="@+id/iv_bg_green_select" view="ImageView"><Expressions/><location startLine="216" startOffset="12" endLine="223" endOffset="50"/></Target><Target id="@+id/iv_bg_red" view="ImageView"><Expressions/><location startLine="231" startOffset="12" endLine="234" endOffset="54"/></Target><Target id="@+id/iv_bg_red_select" view="ImageView"><Expressions/><location startLine="236" startOffset="12" endLine="243" endOffset="50"/></Target><Target id="@+id/font_size_selector" view="LinearLayout"><Expressions/><location startLine="247" startOffset="4" endLine="406" endOffset="18"/></Target><Target id="@+id/ll_font_small" view="FrameLayout"><Expressions/><location startLine="255" startOffset="8" endLine="291" endOffset="21"/></Target><Target id="@+id/iv_small_select" view="ImageView"><Expressions/><location startLine="281" startOffset="12" endLine="290" endOffset="50"/></Target><Target id="@+id/ll_font_normal" view="FrameLayout"><Expressions/><location startLine="293" startOffset="8" endLine="329" endOffset="21"/></Target><Target id="@+id/iv_medium_select" view="ImageView"><Expressions/><location startLine="319" startOffset="12" endLine="328" endOffset="50"/></Target><Target id="@+id/ll_font_large" view="FrameLayout"><Expressions/><location startLine="331" startOffset="8" endLine="367" endOffset="21"/></Target><Target id="@+id/iv_large_select" view="ImageView"><Expressions/><location startLine="357" startOffset="12" endLine="366" endOffset="50"/></Target><Target id="@+id/ll_font_super" view="FrameLayout"><Expressions/><location startLine="369" startOffset="8" endLine="405" endOffset="21"/></Target><Target id="@+id/iv_super_select" view="ImageView"><Expressions/><location startLine="395" startOffset="12" endLine="404" endOffset="50"/></Target></Targets></Layout> <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_edit" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_edit.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout"><Targets><Target tag="layout/note_edit_0" view="FrameLayout"><Expressions/><location startLine="17" startOffset="0" endLine="415" endOffset="13"/></Target><Target id="@+id/note_title" view="LinearLayout"><Expressions/><location startLine="28" startOffset="8" endLine="79" endOffset="22"/></Target><Target id="@+id/text_num" view="TextView"><Expressions/><location startLine="34" startOffset="12" endLine="39" endOffset="46"/></Target><Target id="@+id/tv_modified_date" view="TextView"><Expressions/><location startLine="41" startOffset="12" endLine="48" endOffset="77"/></Target><Target id="@+id/iv_alert_icon" view="ImageView"><Expressions/><location startLine="50" startOffset="12" endLine="55" endOffset="60"/></Target><Target id="@+id/tv_alert_date" view="TextView"><Expressions/><location startLine="57" startOffset="12" endLine="64" endOffset="77"/></Target><Target id="@+id/btn_SetType" view="Button"><Expressions/><location startLine="66" startOffset="12" endLine="72" endOffset="48"/></Target><Target id="@+id/sv_note_edit" view="LinearLayout"><Expressions/><location startLine="81" startOffset="8" endLine="131" endOffset="22"/></Target><Target id="@+id/note_edit_view" view="net.micode.notes.ui.NoteEditText"><Expressions/><location startLine="105" startOffset="20" endLine="115" endOffset="61"/></Target><Target id="@+id/note_edit_list" view="LinearLayout"><Expressions/><location startLine="117" startOffset="20" endLine="123" endOffset="51"/></Target><Target id="@+id/btn_set_bg_color" view="ImageView"><Expressions/><location startLine="134" startOffset="4" endLine="139" endOffset="44"/></Target><Target id="@+id/note_bg_color_selector" view="LinearLayout"><Expressions/><location startLine="141" startOffset="4" endLine="253" endOffset="18"/></Target><Target id="@+id/iv_bg_yellow" view="ImageView"><Expressions/><location startLine="156" startOffset="12" endLine="159" endOffset="54"/></Target><Target id="@+id/iv_bg_yellow_select" view="ImageView"><Expressions/><location startLine="161" startOffset="12" endLine="169" endOffset="50"/></Target><Target id="@+id/iv_bg_blue" view="ImageView"><Expressions/><location startLine="177" startOffset="12" endLine="180" endOffset="54"/></Target><Target id="@+id/iv_bg_blue_select" view="ImageView"><Expressions/><location startLine="182" startOffset="12" endLine="190" endOffset="50"/></Target><Target id="@+id/iv_bg_white" view="ImageView"><Expressions/><location startLine="198" startOffset="12" endLine="201" endOffset="54"/></Target><Target id="@+id/iv_bg_white_select" view="ImageView"><Expressions/><location startLine="203" startOffset="12" endLine="211" endOffset="50"/></Target><Target id="@+id/iv_bg_green" view="ImageView"><Expressions/><location startLine="219" startOffset="12" endLine="222" endOffset="54"/></Target><Target id="@+id/iv_bg_green_select" view="ImageView"><Expressions/><location startLine="224" startOffset="12" endLine="231" endOffset="50"/></Target><Target id="@+id/iv_bg_red" view="ImageView"><Expressions/><location startLine="239" startOffset="12" endLine="242" endOffset="54"/></Target><Target id="@+id/iv_bg_red_select" view="ImageView"><Expressions/><location startLine="244" startOffset="12" endLine="251" endOffset="50"/></Target><Target id="@+id/font_size_selector" view="LinearLayout"><Expressions/><location startLine="255" startOffset="4" endLine="414" endOffset="18"/></Target><Target id="@+id/ll_font_small" view="FrameLayout"><Expressions/><location startLine="263" startOffset="8" endLine="299" endOffset="21"/></Target><Target id="@+id/iv_small_select" view="ImageView"><Expressions/><location startLine="289" startOffset="12" endLine="298" endOffset="50"/></Target><Target id="@+id/ll_font_normal" view="FrameLayout"><Expressions/><location startLine="301" startOffset="8" endLine="337" endOffset="21"/></Target><Target id="@+id/iv_medium_select" view="ImageView"><Expressions/><location startLine="327" startOffset="12" endLine="336" endOffset="50"/></Target><Target id="@+id/ll_font_large" view="FrameLayout"><Expressions/><location startLine="339" startOffset="8" endLine="375" endOffset="21"/></Target><Target id="@+id/iv_large_select" view="ImageView"><Expressions/><location startLine="365" startOffset="12" endLine="374" endOffset="50"/></Target><Target id="@+id/ll_font_super" view="FrameLayout"><Expressions/><location startLine="377" startOffset="8" endLine="413" endOffset="21"/></Target><Target id="@+id/iv_super_select" view="ImageView"><Expressions/><location startLine="403" startOffset="12" endLine="412" endOffset="50"/></Target></Targets></Layout>

@ -1 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_item" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_item.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout" rootNodeViewId="@+id/note_item"><Targets><Target id="@+id/note_item" tag="layout/note_item_0" view="FrameLayout"><Expressions/><location startLine="17" startOffset="0" endLine="77" endOffset="13"/></Target><Target id="@+id/tv_name" view="TextView"><Expressions/><location startLine="35" startOffset="12" endLine="41" endOffset="43"/></Target><Target id="@+id/tv_title" view="TextView"><Expressions/><location startLine="48" startOffset="16" endLine="53" endOffset="47"/></Target><Target id="@+id/tv_time" view="TextView"><Expressions/><location startLine="55" startOffset="16" endLine="59" endOffset="81"/></Target><Target id="@android:id/checkbox" view="CheckBox"><Expressions/><location startLine="63" startOffset="8" endLine="69" endOffset="39"/></Target><Target id="@+id/iv_alert_icon" view="ImageView"><Expressions/><location startLine="72" startOffset="4" endLine="76" endOffset="43"/></Target></Targets></Layout> <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_item" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_item.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout" rootNodeViewId="@+id/note_item"><Targets><Target id="@+id/note_item" tag="layout/note_item_0" view="FrameLayout"><Expressions/><location startLine="17" startOffset="0" endLine="84" endOffset="13"/></Target><Target id="@+id/tv_name" view="TextView"><Expressions/><location startLine="35" startOffset="12" endLine="41" endOffset="43"/></Target><Target id="@+id/tv_title" view="TextView"><Expressions/><location startLine="48" startOffset="16" endLine="53" endOffset="47"/></Target><Target id="@+id/tv_type" view="TextView"><Expressions/><location startLine="55" startOffset="16" endLine="60" endOffset="47"/></Target><Target id="@+id/tv_time" view="TextView"><Expressions/><location startLine="62" startOffset="16" endLine="66" endOffset="81"/></Target><Target id="@android:id/checkbox" view="CheckBox"><Expressions/><location startLine="70" startOffset="8" endLine="76" endOffset="39"/></Target><Target id="@+id/iv_alert_icon" view="ImageView"><Expressions/><location startLine="79" startOffset="4" endLine="83" endOffset="43"/></Target></Targets></Layout>

@ -1 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_list" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_list.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout"><Targets><Target tag="layout/note_list_0" view="FrameLayout"><Expressions/><location startLine="17" startOffset="0" endLine="57" endOffset="13"/></Target><Target id="@+id/tv_title_bar" view="TextView"><Expressions/><location startLine="28" startOffset="8" endLine="37" endOffset="61"/></Target><Target id="@+id/notes_list" view="ListView"><Expressions/><location startLine="39" startOffset="8" endLine="47" endOffset="40"/></Target><Target id="@+id/btn_new_note" view="Button"><Expressions/><location startLine="50" startOffset="4" endLine="56" endOffset="41"/></Target></Targets></Layout> <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_list" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_list.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout"><Targets><Target tag="layout/note_list_0" view="FrameLayout"><Expressions/><location startLine="17" startOffset="0" endLine="56" endOffset="13"/></Target><Target id="@+id/tv_title_bar" view="TextView"><Expressions/><location startLine="27" startOffset="8" endLine="36" endOffset="61"/></Target><Target id="@+id/notes_list" view="ListView"><Expressions/><location startLine="38" startOffset="8" endLine="46" endOffset="40"/></Target><Target id="@+id/btn_new_note" view="Button"><Expressions/><location startLine="49" startOffset="4" endLine="55" endOffset="41"/></Target></Targets></Layout>

@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_change_password" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\activity_change_password.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/activity_change_password_0" view="LinearLayout"><Expressions/><location startLine="2" startOffset="0" endLine="68" endOffset="14"/></Target><Target id="@+id/old_password" view="EditText"><Expressions/><location startLine="17" startOffset="8" endLine="22" endOffset="39"/></Target><Target id="@+id/new_password" view="EditText"><Expressions/><location startLine="32" startOffset="8" endLine="37" endOffset="39"/></Target><Target id="@+id/ack_password" view="EditText"><Expressions/><location startLine="48" startOffset="8" endLine="53" endOffset="39"/></Target><Target id="@+id/Acknowledged" view="Button"><Expressions/><location startLine="61" startOffset="8" endLine="65" endOffset="30"/></Target></Targets></Layout>

@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_delete_password" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\activity_delete_password.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/activity_delete_password_0" view="LinearLayout"><Expressions/><location startLine="2" startOffset="0" endLine="30" endOffset="14"/></Target><Target id="@+id/thepassword" view="EditText"><Expressions/><location startLine="15" startOffset="8" endLine="19" endOffset="36"/></Target><Target id="@+id/Dt_Acknowledged" view="Button"><Expressions/><location startLine="24" startOffset="33" endLine="28" endOffset="26"/></Target></Targets></Layout>

@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_login" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\activity_login.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/activity_login_0" view="LinearLayout"><Expressions/><location startLine="2" startOffset="0" endLine="33" endOffset="14"/></Target><Target id="@+id/lg_password" view="EditText"><Expressions/><location startLine="16" startOffset="8" endLine="20" endOffset="36"/></Target><Target id="@+id/login" view="Button"><Expressions/><location startLine="27" startOffset="8" endLine="31" endOffset="30"/></Target></Targets></Layout>

@ -0,0 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_set_loginpassword" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\activity_set_loginpassword.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/activity_set_loginpassword_0" view="LinearLayout"><Expressions/><location startLine="2" startOffset="0" endLine="55" endOffset="14"/></Target><Target id="@+id/password" view="EditText"><Expressions/><location startLine="19" startOffset="8" endLine="23" endOffset="37"/></Target><Target id="@+id/password_ack" view="EditText"><Expressions/><location startLine="37" startOffset="8" endLine="41" endOffset="37"/></Target><Target id="@+id/acknowledge" view="Button"><Expressions/><location startLine="49" startOffset="8" endLine="53" endOffset="31"/></Target></Targets></Layout>

@ -1 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_edit" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_edit.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout"><Targets><Target tag="layout/note_edit_0" view="FrameLayout"><Expressions/><location startLine="17" startOffset="0" endLine="407" endOffset="13"/></Target><Target id="@+id/note_title" view="LinearLayout"><Expressions/><location startLine="28" startOffset="8" endLine="71" endOffset="22"/></Target><Target id="@+id/text_num" view="TextView"><Expressions/><location startLine="34" startOffset="12" endLine="39" endOffset="46"/></Target><Target id="@+id/tv_modified_date" view="TextView"><Expressions/><location startLine="41" startOffset="12" endLine="48" endOffset="77"/></Target><Target id="@+id/iv_alert_icon" view="ImageView"><Expressions/><location startLine="50" startOffset="12" endLine="55" endOffset="60"/></Target><Target id="@+id/tv_alert_date" view="TextView"><Expressions/><location startLine="57" startOffset="12" endLine="64" endOffset="77"/></Target><Target id="@+id/sv_note_edit" view="LinearLayout"><Expressions/><location startLine="73" startOffset="8" endLine="123" endOffset="22"/></Target><Target id="@+id/note_edit_view" view="net.micode.notes.ui.NoteEditText"><Expressions/><location startLine="97" startOffset="20" endLine="107" endOffset="61"/></Target><Target id="@+id/note_edit_list" view="LinearLayout"><Expressions/><location startLine="109" startOffset="20" endLine="115" endOffset="51"/></Target><Target id="@+id/btn_set_bg_color" view="ImageView"><Expressions/><location startLine="126" startOffset="4" endLine="131" endOffset="44"/></Target><Target id="@+id/note_bg_color_selector" view="LinearLayout"><Expressions/><location startLine="133" startOffset="4" endLine="245" endOffset="18"/></Target><Target id="@+id/iv_bg_yellow" view="ImageView"><Expressions/><location startLine="148" startOffset="12" endLine="151" endOffset="54"/></Target><Target id="@+id/iv_bg_yellow_select" view="ImageView"><Expressions/><location startLine="153" startOffset="12" endLine="161" endOffset="50"/></Target><Target id="@+id/iv_bg_blue" view="ImageView"><Expressions/><location startLine="169" startOffset="12" endLine="172" endOffset="54"/></Target><Target id="@+id/iv_bg_blue_select" view="ImageView"><Expressions/><location startLine="174" startOffset="12" endLine="182" endOffset="50"/></Target><Target id="@+id/iv_bg_white" view="ImageView"><Expressions/><location startLine="190" startOffset="12" endLine="193" endOffset="54"/></Target><Target id="@+id/iv_bg_white_select" view="ImageView"><Expressions/><location startLine="195" startOffset="12" endLine="203" endOffset="50"/></Target><Target id="@+id/iv_bg_green" view="ImageView"><Expressions/><location startLine="211" startOffset="12" endLine="214" endOffset="54"/></Target><Target id="@+id/iv_bg_green_select" view="ImageView"><Expressions/><location startLine="216" startOffset="12" endLine="223" endOffset="50"/></Target><Target id="@+id/iv_bg_red" view="ImageView"><Expressions/><location startLine="231" startOffset="12" endLine="234" endOffset="54"/></Target><Target id="@+id/iv_bg_red_select" view="ImageView"><Expressions/><location startLine="236" startOffset="12" endLine="243" endOffset="50"/></Target><Target id="@+id/font_size_selector" view="LinearLayout"><Expressions/><location startLine="247" startOffset="4" endLine="406" endOffset="18"/></Target><Target id="@+id/ll_font_small" view="FrameLayout"><Expressions/><location startLine="255" startOffset="8" endLine="291" endOffset="21"/></Target><Target id="@+id/iv_small_select" view="ImageView"><Expressions/><location startLine="281" startOffset="12" endLine="290" endOffset="50"/></Target><Target id="@+id/ll_font_normal" view="FrameLayout"><Expressions/><location startLine="293" startOffset="8" endLine="329" endOffset="21"/></Target><Target id="@+id/iv_medium_select" view="ImageView"><Expressions/><location startLine="319" startOffset="12" endLine="328" endOffset="50"/></Target><Target id="@+id/ll_font_large" view="FrameLayout"><Expressions/><location startLine="331" startOffset="8" endLine="367" endOffset="21"/></Target><Target id="@+id/iv_large_select" view="ImageView"><Expressions/><location startLine="357" startOffset="12" endLine="366" endOffset="50"/></Target><Target id="@+id/ll_font_super" view="FrameLayout"><Expressions/><location startLine="369" startOffset="8" endLine="405" endOffset="21"/></Target><Target id="@+id/iv_super_select" view="ImageView"><Expressions/><location startLine="395" startOffset="12" endLine="404" endOffset="50"/></Target></Targets></Layout> <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_edit" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_edit.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout"><Targets><Target tag="layout/note_edit_0" view="FrameLayout"><Expressions/><location startLine="17" startOffset="0" endLine="415" endOffset="13"/></Target><Target id="@+id/note_title" view="LinearLayout"><Expressions/><location startLine="28" startOffset="8" endLine="79" endOffset="22"/></Target><Target id="@+id/text_num" view="TextView"><Expressions/><location startLine="34" startOffset="12" endLine="39" endOffset="46"/></Target><Target id="@+id/tv_modified_date" view="TextView"><Expressions/><location startLine="41" startOffset="12" endLine="48" endOffset="77"/></Target><Target id="@+id/iv_alert_icon" view="ImageView"><Expressions/><location startLine="50" startOffset="12" endLine="55" endOffset="60"/></Target><Target id="@+id/tv_alert_date" view="TextView"><Expressions/><location startLine="57" startOffset="12" endLine="64" endOffset="77"/></Target><Target id="@+id/btn_SetType" view="Button"><Expressions/><location startLine="66" startOffset="12" endLine="72" endOffset="48"/></Target><Target id="@+id/sv_note_edit" view="LinearLayout"><Expressions/><location startLine="81" startOffset="8" endLine="131" endOffset="22"/></Target><Target id="@+id/note_edit_view" view="net.micode.notes.ui.NoteEditText"><Expressions/><location startLine="105" startOffset="20" endLine="115" endOffset="61"/></Target><Target id="@+id/note_edit_list" view="LinearLayout"><Expressions/><location startLine="117" startOffset="20" endLine="123" endOffset="51"/></Target><Target id="@+id/btn_set_bg_color" view="ImageView"><Expressions/><location startLine="134" startOffset="4" endLine="139" endOffset="44"/></Target><Target id="@+id/note_bg_color_selector" view="LinearLayout"><Expressions/><location startLine="141" startOffset="4" endLine="253" endOffset="18"/></Target><Target id="@+id/iv_bg_yellow" view="ImageView"><Expressions/><location startLine="156" startOffset="12" endLine="159" endOffset="54"/></Target><Target id="@+id/iv_bg_yellow_select" view="ImageView"><Expressions/><location startLine="161" startOffset="12" endLine="169" endOffset="50"/></Target><Target id="@+id/iv_bg_blue" view="ImageView"><Expressions/><location startLine="177" startOffset="12" endLine="180" endOffset="54"/></Target><Target id="@+id/iv_bg_blue_select" view="ImageView"><Expressions/><location startLine="182" startOffset="12" endLine="190" endOffset="50"/></Target><Target id="@+id/iv_bg_white" view="ImageView"><Expressions/><location startLine="198" startOffset="12" endLine="201" endOffset="54"/></Target><Target id="@+id/iv_bg_white_select" view="ImageView"><Expressions/><location startLine="203" startOffset="12" endLine="211" endOffset="50"/></Target><Target id="@+id/iv_bg_green" view="ImageView"><Expressions/><location startLine="219" startOffset="12" endLine="222" endOffset="54"/></Target><Target id="@+id/iv_bg_green_select" view="ImageView"><Expressions/><location startLine="224" startOffset="12" endLine="231" endOffset="50"/></Target><Target id="@+id/iv_bg_red" view="ImageView"><Expressions/><location startLine="239" startOffset="12" endLine="242" endOffset="54"/></Target><Target id="@+id/iv_bg_red_select" view="ImageView"><Expressions/><location startLine="244" startOffset="12" endLine="251" endOffset="50"/></Target><Target id="@+id/font_size_selector" view="LinearLayout"><Expressions/><location startLine="255" startOffset="4" endLine="414" endOffset="18"/></Target><Target id="@+id/ll_font_small" view="FrameLayout"><Expressions/><location startLine="263" startOffset="8" endLine="299" endOffset="21"/></Target><Target id="@+id/iv_small_select" view="ImageView"><Expressions/><location startLine="289" startOffset="12" endLine="298" endOffset="50"/></Target><Target id="@+id/ll_font_normal" view="FrameLayout"><Expressions/><location startLine="301" startOffset="8" endLine="337" endOffset="21"/></Target><Target id="@+id/iv_medium_select" view="ImageView"><Expressions/><location startLine="327" startOffset="12" endLine="336" endOffset="50"/></Target><Target id="@+id/ll_font_large" view="FrameLayout"><Expressions/><location startLine="339" startOffset="8" endLine="375" endOffset="21"/></Target><Target id="@+id/iv_large_select" view="ImageView"><Expressions/><location startLine="365" startOffset="12" endLine="374" endOffset="50"/></Target><Target id="@+id/ll_font_super" view="FrameLayout"><Expressions/><location startLine="377" startOffset="8" endLine="413" endOffset="21"/></Target><Target id="@+id/iv_super_select" view="ImageView"><Expressions/><location startLine="403" startOffset="12" endLine="412" endOffset="50"/></Target></Targets></Layout>

@ -1 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_item" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_item.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout" rootNodeViewId="@+id/note_item"><Targets><Target id="@+id/note_item" tag="layout/note_item_0" view="FrameLayout"><Expressions/><location startLine="17" startOffset="0" endLine="77" endOffset="13"/></Target><Target id="@+id/tv_name" view="TextView"><Expressions/><location startLine="35" startOffset="12" endLine="41" endOffset="43"/></Target><Target id="@+id/tv_title" view="TextView"><Expressions/><location startLine="48" startOffset="16" endLine="53" endOffset="47"/></Target><Target id="@+id/tv_time" view="TextView"><Expressions/><location startLine="55" startOffset="16" endLine="59" endOffset="81"/></Target><Target id="@android:id/checkbox" view="CheckBox"><Expressions/><location startLine="63" startOffset="8" endLine="69" endOffset="39"/></Target><Target id="@+id/iv_alert_icon" view="ImageView"><Expressions/><location startLine="72" startOffset="4" endLine="76" endOffset="43"/></Target></Targets></Layout> <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_item" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_item.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout" rootNodeViewId="@+id/note_item"><Targets><Target id="@+id/note_item" tag="layout/note_item_0" view="FrameLayout"><Expressions/><location startLine="17" startOffset="0" endLine="84" endOffset="13"/></Target><Target id="@+id/tv_name" view="TextView"><Expressions/><location startLine="35" startOffset="12" endLine="41" endOffset="43"/></Target><Target id="@+id/tv_title" view="TextView"><Expressions/><location startLine="48" startOffset="16" endLine="53" endOffset="47"/></Target><Target id="@+id/tv_type" view="TextView"><Expressions/><location startLine="55" startOffset="16" endLine="60" endOffset="47"/></Target><Target id="@+id/tv_time" view="TextView"><Expressions/><location startLine="62" startOffset="16" endLine="66" endOffset="81"/></Target><Target id="@android:id/checkbox" view="CheckBox"><Expressions/><location startLine="70" startOffset="8" endLine="76" endOffset="39"/></Target><Target id="@+id/iv_alert_icon" view="ImageView"><Expressions/><location startLine="79" startOffset="4" endLine="83" endOffset="43"/></Target></Targets></Layout>

@ -1 +1 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_list" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_list.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout"><Targets><Target tag="layout/note_list_0" view="FrameLayout"><Expressions/><location startLine="17" startOffset="0" endLine="57" endOffset="13"/></Target><Target id="@+id/tv_title_bar" view="TextView"><Expressions/><location startLine="28" startOffset="8" endLine="37" endOffset="61"/></Target><Target id="@+id/notes_list" view="ListView"><Expressions/><location startLine="39" startOffset="8" endLine="47" endOffset="40"/></Target><Target id="@+id/btn_new_note" view="Button"><Expressions/><location startLine="50" startOffset="4" endLine="56" endOffset="41"/></Target></Targets></Layout> <?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_list" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_list.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout"><Targets><Target tag="layout/note_list_0" view="FrameLayout"><Expressions/><location startLine="17" startOffset="0" endLine="56" endOffset="13"/></Target><Target id="@+id/tv_title_bar" view="TextView"><Expressions/><location startLine="27" startOffset="8" endLine="36" endOffset="61"/></Target><Target id="@+id/notes_list" view="ListView"><Expressions/><location startLine="38" startOffset="8" endLine="46" endOffset="40"/></Target><Target id="@+id/btn_new_note" view="Button"><Expressions/><location startLine="49" startOffset="4" endLine="55" endOffset="41"/></Target></Targets></Layout>

@ -1,102 +1,109 @@
#Thu Jan 18 09:02:54 CST 2024 #Thu Jan 18 22:10:51 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/primary_text_dark.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\color_primary_text_dark.xml.flat
net.micode.notes.app-main-7\:/color/secondary_text_dark.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\color_secondary_text_dark.xml.flat net.micode.notes.app-main-7\:/color/secondary_text_dark.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\color_secondary_text_dark.xml.flat
net.micode.notes.app-main-7\:/drawable-hdpi/a.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_a.png.flat net.micode.notes.app-main-7\:/drawable-hdpi/a.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_a.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/abc.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_abc.png.flat net.micode.notes.app-main-7\:/drawable-hdpi/abc.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_abc.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/bg_btn_set_color.png=C\:\\Users\\huigenb\\Desktop\\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_btn_set_color.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_bg_btn_set_color.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/bg_color_btn_mask.png=C\:\\Users\\huigenb\\Desktop\\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/bg_color_btn_mask.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_bg_color_btn_mask.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/call_record.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_call_record.png.flat net.micode.notes.app-main-7\:/drawable-hdpi/call_record.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_call_record.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/clock.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_clock.png.flat net.micode.notes.app-main-7\:/drawable-hdpi/clock.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_clock.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/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/daybackground.webp=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_daybackground.webp.flat
net.micode.notes.app-main-7\:/drawable-hdpi/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/delete.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_delete.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/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/dropdown_icon.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_dropdown_icon.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/edit_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_blue.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_blue.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/edit_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_green.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_green.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/edit_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_red.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_red.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/edit_title_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_blue.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_blue.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/edit_title_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_green.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_green.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/edit_title_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_red.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_red.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/edit_title_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_title_white.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_white.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/edit_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_title_yellow.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_yellow.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/edit_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/edit_white.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_white.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/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/edit_yellow.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_yellow.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/font_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_large.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_large.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/font_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_normal.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_normal.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/font_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_size_selector_bg.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_size_selector_bg.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/font_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/font_small.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_small.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/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/font_super.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_super.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/icon_app_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/icon_app.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_icon_app.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/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/icon_app_new.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_icon_app_new.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/list_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_background.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_background.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/list_blue_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_down.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_blue_down.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/list_blue_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_middle.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_blue_middle.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/list_blue_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_blue_single.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_blue_single.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/list_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_blue_up.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_blue_up.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/list_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_folder.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_folder.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/list_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_footer_bg.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_footer_bg.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/list_green_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_down.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_green_down.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/list_green_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_middle.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_green_middle.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/list_green_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_green_single.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_green_single.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/list_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_green_up.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_green_up.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/list_red_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_down.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_red_down.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/list_red_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_middle.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_red_middle.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/list_red_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_red_single.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_red_single.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/list_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_red_up.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_red_up.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/list_white_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_down.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_white_down.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/list_white_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_middle.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_white_middle.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/list_white_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_white_single.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_white_single.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/list_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_white_up.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_white_up.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/list_yellow_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_down.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_yellow_down.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/list_yellow_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_middle.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_yellow_middle.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/list_yellow_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/list_yellow_single.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_yellow_single.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/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/list_yellow_up.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_yellow_up.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/menu_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/menu_delete.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_menu_delete.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/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/menu_move.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_menu_move.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/new_note_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/new_note_normal.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_new_note_normal.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/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/new_note_pressed.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_new_note_pressed.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/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/nightbackground.webp=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_nightbackground.webp.flat
net.micode.notes.app-main-7\:/drawable-hdpi/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/note_edit_color_selector_panel.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_note_edit_color_selector_panel.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/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/notification.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_notification.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/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/search_result.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_search_result.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/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/selected.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_selected.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/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/splash.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_splash.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/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/title_alert.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_title_alert.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/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/title_bar_bg.9.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_title_bar_bg.9.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/widget_2x_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_blue.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_blue.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/widget_2x_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_green.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_green.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/widget_2x_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_2x_red.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_red.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/widget_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_2x_white.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_white.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/widget_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_2x_yellow.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_yellow.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/widget_4x_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_blue.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_blue.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/widget_4x_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_green.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_green.png.flat
net.micode.notes.app-main-7\:/drawable-hdpi/widget_4x_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-hdpi/widget_4x_red.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_red.png.flat
net.micode.notes.app-main-7\:/drawable/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-hdpi/widget_4x_white.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_white.png.flat
net.micode.notes.app-main-7\:/drawable/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\:/drawable-hdpi/widget_4x_yellow.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_yellow.png.flat
net.micode.notes.app-main-7\:/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\:/drawable/new_note.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable_new_note.xml.flat
net.micode.notes.app-main-7\:/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\:/drawable/splash.png=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\drawable_splash.png.flat
net.micode.notes.app-main-7\:/menu/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/call_note_edit.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\menu_call_note_edit.xml.flat
net.micode.notes.app-main-7\:/menu/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/call_record_folder.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\menu_call_record_folder.xml.flat
net.micode.notes.app-main-7\:/menu/note_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_edit.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\menu_note_edit.xml.flat
net.micode.notes.app-main-7\:/menu/note_list_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/note_list.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\menu_note_list.xml.flat
net.micode.notes.app-main-7\:/menu/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\:/menu/note_list_dropdown.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\menu_note_list_dropdown.xml.flat
net.micode.notes.app-main-7\:/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\:/menu/note_list_options.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\menu_note_list_options.xml.flat
net.micode.notes.app-main-7\:/raw/introduction=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\raw_introduction.flat net.micode.notes.app-main-7\:/menu/note_type.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\menu_note_type.xml.flat
net.micode.notes.app-main-7\:/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\:/menu/sub_folder.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\menu_sub_folder.xml.flat
net.micode.notes.app-main-7\:/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\:/raw-zh-rCN/introduction=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\raw-zh-rCN_introduction.flat
net.micode.notes.app-main-7\:/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\:/raw/introduction=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\raw_introduction.flat
net.micode.notes.app-main-7\:/xml/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-main-7\:/xml/preferences.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\xml_preferences.xml.flat
net.micode.notes.app-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-main-7\:/xml/searchable.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\xml_searchable.xml.flat
net.micode.notes.app-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-main-7\:/xml/widget_2x_info.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\xml_widget_2x_info.xml.flat
net.micode.notes.app-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-main-7\:/xml/widget_4x_info.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\xml_widget_4x_info.xml.flat
net.micode.notes.app-mergeDebugResources-4\:/layout/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/account_dialog_title.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_account_dialog_title.xml.flat
net.micode.notes.app-mergeDebugResources-4\:/layout/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/activity_change_password.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_activity_change_password.xml.flat
net.micode.notes.app-mergeDebugResources-4\:/layout/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/activity_delete_password.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_activity_delete_password.xml.flat
net.micode.notes.app-mergeDebugResources-4\:/layout/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/activity_login.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_activity_login.xml.flat
net.micode.notes.app-mergeDebugResources-4\:/layout/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/activity_set_loginpassword.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_activity_set_loginpassword.xml.flat
net.micode.notes.app-mergeDebugResources-4\:/layout/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/activity_splash.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_activity_splash.xml.flat
net.micode.notes.app-mergeDebugResources-4\:/layout/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/add_account_text.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_add_account_text.xml.flat
net.micode.notes.app-mergeDebugResources-4\:/layout/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/datetime_picker.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_datetime_picker.xml.flat
net.micode.notes.app-mergeDebugResources-4\:/layout/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/dialog_edit_text.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_dialog_edit_text.xml.flat
net.micode.notes.app-mergeDebugResources-4\:/layout/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/folder_list_item.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_folder_list_item.xml.flat
net.micode.notes.app-mergeDebugResources-4\:/layout/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/note_edit.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_note_edit.xml.flat
net.micode.notes.app-mergeDebugResources-4\:/layout/widget_4x.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_widget_4x.xml.flat net.micode.notes.app-mergeDebugResources-4\:/layout/note_edit_list_item.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_note_edit_list_item.xml.flat
net.micode.notes.app-mergeDebugResources-4\:/layout/note_item.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_note_item.xml.flat
net.micode.notes.app-mergeDebugResources-4\:/layout/note_list.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_note_list.xml.flat
net.micode.notes.app-mergeDebugResources-4\:/layout/note_list_dropdown_menu.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_note_list_dropdown_menu.xml.flat
net.micode.notes.app-mergeDebugResources-4\:/layout/note_list_footer.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_note_list_footer.xml.flat
net.micode.notes.app-mergeDebugResources-4\:/layout/settings_header.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_settings_header.xml.flat
net.micode.notes.app-mergeDebugResources-4\:/layout/widget_2x.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_widget_2x.xml.flat
net.micode.notes.app-mergeDebugResources-4\:/layout/widget_4x.xml=C\:\\Users\\huigenb\\Desktop\\All tasks\\software\\Code\\app\\build\\intermediates\\merged_res\\debug\\layout_widget_4x.xml.flat

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigeer tuis"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigeer op"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Nog opsies"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Klaar"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Sien alles"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Kies \'n program"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Vee navraag uit"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Soeknavraag"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Soek"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Dien navraag in"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Stemsoektog"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deel met"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Deel met %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"ወደ መነሻ ይዳስሱ"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"ወደ ላይ ይዳስሱ"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ተጨማሪ አማራጮች"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"ተከናውኗል"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ሁሉንም ይመልከቱ"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"መተግበሪያ ይምረጡ"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"መጠይቅ አጽዳ"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"የፍለጋ ጥያቄ"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"ፍለጋ"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"መጠይቅ ያስረክቡ"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"የድምፅ ፍለጋ"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ከሚከተለው ጋር ያጋሩ"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"ከ%s ጋር ያጋሩ"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"التنقل إلى الشاشة الرئيسية"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"التنقل إلى أعلى"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"خيارات إضافية"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"تم"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"عرض الكل"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"اختيار تطبيق"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"محو طلب البحث"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"طلب البحث"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"بحث"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"إرسال طلب البحث"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"البحث الصوتي"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"مشاركة مع"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"‏مشاركة مع %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Придвижване към „Начало“"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Придвижване нагоре"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Още опции"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Готово"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Вижте всички"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Изберете приложение"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Изчистване на заявката"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Заявка за търсене"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Търсене"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Изпращане на заявката"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Гласово търсене"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Споделяне със:"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Споделяне със: %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"হোম এ নেভিগেট করুন"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"উপরের দিকে নেভিগেট করুন"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"আরো বিকল্প"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"সম্পন্ন হয়েছে"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"সবগুলো দেখুন"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"একটি অ্যাপ্লিকেশান চয়ন করুন"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"ক্যোয়ারী সাফ করুন"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"ক্যোয়ারী অনুসন্ধান করুন"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"অনুসন্ধান করুন"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"ক্যোয়ারী জমা দিন"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"ভয়েস অনুসন্ধান"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"এর সাথে ভাগ করুন"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s এর সাথে ভাগ করুন"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navega a la pàgina d\'inici"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navega cap a dalt"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Més opcions"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Fet"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Mostra\'ls tots"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Selecciona una aplicació"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Esborra la consulta"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de cerca"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Cerca"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Envia la consulta"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Cerca per veu"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Comparteix amb"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Comparteix amb %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Přejít na plochu"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Přejít nahoru"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Více možností"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Hotovo"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Zobrazit vše"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Vybrat aplikaci"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Smazat dotaz"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Vyhledávací dotaz"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Hledat"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Odeslat dotaz"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Hlasové vyhledávání"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Sdílet pomocí"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Sdílet pomocí %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Naviger hjem"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Naviger op"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Flere muligheder"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Luk"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Se alle"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Vælg en app"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Ryd forespørgslen"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Søgeforespørgsel"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Søg"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Indsend forespørgslen"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Stemmesøgning"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Del med"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Del med %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Zur Startseite"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Nach oben"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Weitere Optionen"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Fertig"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Alle ansehen"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"App auswählen"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Suchanfrage löschen"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Suchanfrage"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Suchen"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Suchanfrage senden"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Sprachsuche"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Freigeben für"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Freigeben für %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Πλοήγηση στην αρχική σελίδα"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Πλοήγηση προς τα επάνω"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Περισσότερες επιλογές"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Τέλος"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Προβολή όλων"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Επιλέξτε κάποια εφαρμογή"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Διαγραφή ερωτήματος"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Ερώτημα αναζήτησης"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Αναζήτηση"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Υποβολή ερωτήματος"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Φωνητική αναζήτηση"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Κοινή χρήση με"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Κοινή χρήση με %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigate up"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"More options"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Finished"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"See all"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Choose an app"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Clear query"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Search query"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Search"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Submit query"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Voice search"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Share with"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Share with %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigate up"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"More options"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Finished"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"See all"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Choose an app"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Clear query"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Search query"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Search"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Submit query"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Voice search"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Share with"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Share with %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navegar a la página principal"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navegar hacia arriba"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Más opciones"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Listo"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver todo"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Elige una aplicación."</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Eliminar la consulta"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de búsqueda"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Búsqueda"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Búsqueda por voz"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartir con"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartir con %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ir a la pantalla de inicio"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Desplazarse hacia arriba"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Más opciones"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Listo"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver todo"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Seleccionar una aplicación"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Borrar consulta"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Buscar"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Búsqueda por voz"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartir con"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartir con %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigeerimine avaekraanile"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigeerimine üles"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Rohkem valikuid"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Valmis"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Kuva kõik"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Valige rakendus"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Päringu tühistamine"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Otsingupäring"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Otsing"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Päringu esitamine"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Häälotsing"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Jagamine:"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Jagamine kasutajaga %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Joan orri nagusira"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Joan gora"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Aukera gehiago"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Eginda"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ikusi guztiak"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Aukeratu aplikazio bat"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Garbitu kontsulta"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Bilaketa-kontsulta"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Bilatu"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Bidali kontsulta"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Ahots bidezko bilaketa"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partekatu hauekin"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Partekatu %s erabiltzailearekin"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"پیمایش به صفحه اصلی"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"پیمایش به بالا"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"گزینه‌های بیشتر"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"انجام شد"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"مشاهده همه"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"انتخاب برنامه"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"پاک کردن عبارت جستجو"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"عبارت جستجو"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"جستجو"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"ارسال عبارت جستجو"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"جستجوی شفاهی"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"اشتراک‌گذاری با"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"‏اشتراک‌گذاری با %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Siirry etusivulle"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Siirry ylös"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Lisää"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Valmis"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Näytä kaikki"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Valitse sovellus"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Tyhjennä kysely"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Hakulauseke"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Haku"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Lähetä kysely"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Puhehaku"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Jakaminen:"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Jakaminen: %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Revenir à l\'accueil"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Revenir en haut de la page"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Plus d\'options"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Terminé"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Voir toutes les chaînes"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Sélectionnez une application"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Effacer la requête"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Requête de recherche"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Rechercher"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Envoyer la requête"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Recherche vocale"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partager avec"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Partager avec %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Revenir à l\'accueil"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Revenir en haut de la page"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Plus d\'options"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"OK"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Tout afficher"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Sélectionner une application"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Effacer la requête"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Requête de recherche"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Rechercher"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Envoyer la requête"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Recherche vocale"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Partager avec"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Partager avec %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ir á páxina de inicio"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Desprazarse cara arriba"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Máis opcións"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Feito"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Ver todas"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Escoller unha aplicación"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Borrar consulta"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Consulta de busca"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Buscar"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Enviar consulta"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Busca de voz"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Compartir con"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Compartir con %s"</string>
</resources>

@ -1,4 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="abc_alert_dialog_button_bar_height">54dip</dimen>
</resources>

@ -1,8 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Base.Widget.AppCompat.DrawerArrowToggle" parent="Base.Widget.AppCompat.DrawerArrowToggle.Common">
<item name="barSize">18.66dp</item>
<item name="gapBetweenBars">3.33dp</item>
<item name="drawableSize">24dp</item>
</style>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"मुखपृष्ठ पर नेविगेट करें"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"ऊपर नेविगेट करें"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"अधिक विकल्प"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"पूर्ण"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"सभी देखें"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"कोई एप्‍लिकेशन चुनें"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"क्‍वेरी साफ़ करें"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"खोज क्वेरी"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"खोजें"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"क्वेरी सबमिट करें"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"ध्वनि खोज"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"इसके द्वारा साझा करें"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s के साथ साझा करें"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Idi na početnu"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Idi gore"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Dodatne opcije"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Gotovo"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Prikaži sve"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Odabir aplikacije"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Izbriši upit"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Upit za pretraživanje"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Pretraživanje"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Pošalji upit"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Glasovno pretraživanje"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Dijeljenje sa"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Dijeljenje sa: %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ugrás a főoldalra"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Felfelé mozgatás"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"További lehetőségek"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Kész"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Összes megtekintése"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Válasszon ki egy alkalmazást"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Lekérdezés törlése"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Keresési lekérdezés"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Keresés"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Lekérdezés küldése"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Hangalapú keresés"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Megosztás a következővel:"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Megosztás a következővel: %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Ուղղվել տուն"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Ուղղվել վերև"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Այլ ընտրանքներ"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Կատարված է"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Տեսնել բոլորը"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Ընտրել ծրագիր"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Մաքրել հարցումը"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Որոնման հարցում"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Որոնել"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Ուղարկել հարցումը"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Ձայնային որոնում"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Տարածել"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Տարածել ըստ %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigasi ke beranda"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigasi naik"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Opsi lain"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Selesai"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Lihat semua"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Pilih aplikasi"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Hapus kueri"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Kueri penelusuran"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Telusuri"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Kirim kueri"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Penelusuran suara"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Bagikan dengan"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Bagikan dengan %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Fara heim"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Fara upp"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Fleiri valkostir"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Lokið"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Sjá allt"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Veldu forrit"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Hreinsa fyrirspurn"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Leitarfyrirspurn"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Leita"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Senda fyrirspurn"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Raddleit"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deila með"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Deila með %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Vai alla home page"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Vai in alto"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Altre opzioni"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Fine"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Visualizza tutte"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Scegli un\'applicazione"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Cancella query"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Query di ricerca"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Cerca"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Invia query"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Ricerca vocale"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Condividi con"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Condividi con %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"נווט לדף הבית"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"נווט למעלה"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"עוד אפשרויות"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"בוצע"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ראה הכול"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"בחר אפליקציה"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"מחק שאילתה"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"שאילתת חיפוש"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"חפש"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"שלח שאילתה"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"חיפוש קולי"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"שתף עם"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"‏שתף עם %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"ホームへ移動"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"上へ移動"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"その他のオプション"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"完了"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"すべて表示"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"アプリの選択"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"検索キーワードを削除"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"検索キーワード"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"検索"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"検索キーワードを送信"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"音声検索"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"共有"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%sと共有"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"მთავარზე ნავიგაცია"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"ზემოთ ნავიგაცია"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"მეტი ვარიანტები"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"დასრულდა"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ყველას ნახვა"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"აპის არჩევა"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"მოთხოვნის გასუფთავება"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"ძიების მოთხოვნა"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"ძიება"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"მოთხოვნის გადაგზავნა"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"ხმოვანი ძიება"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"გაზიარება:"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s-თან გაზიარება"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Негізгі бетте қозғалу"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Жоғары қозғалу"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Басқа опциялар"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Орындалды"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Барлығын көру"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Қолданбаны таңдау"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Сұрақты жою"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Сұрақты іздеу"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Іздеу"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Сұрақты жіберу"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Дауыс арқылы іздеу"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Бөлісу"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s бөлісу"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"រកមើល​ទៅ​ដើម"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"រកមើល​ឡើងលើ"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ជម្រើស​ច្រើន​ទៀត"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"រួចរាល់"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"មើល​ទាំងអស់"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ជ្រើស​កម្មវិធី​​"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"សម្អាត​សំណួរ"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"ស្វែងរក​សំណួរ"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"ស្វែងរក"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"ដាក់​​​ស្នើ​សំណួរ"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"ការស្វែងរក​សំឡេង"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ចែករំលែក​ជាមួយ"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"ចែករំលែក​ជាមួយ %s"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"ಮುಗಿದಿದೆ"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"ಎಲ್ಲವನ್ನೂ ನೋಡಿ"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"ಹುಡುಕು"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"ಧ್ವನಿ ಹುಡುಕಾಟ"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ"</string>
</resources>

@ -1,16 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"홈 탐색"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"위로 탐색"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"옵션 더보기"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"완료"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"전체 보기"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"앱 선택"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"검색어 삭제"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"검색어"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"검색"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"검색어 보내기"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"음성 검색"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"공유 대상"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"%s와(과) 공유"</string>
</resources>

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save