master
chenhonghao 3 years ago
parent 7f48a46d38
commit ee7701c1ca

@ -1,29 +0,0 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "30.0.3"
defaultConfig {
applicationId "net.micode.notes"
minSdkVersion 16
//noinspection ExpiredTargetSdkVersion
targetSdkVersion 26
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
useLibrary 'org.apache.http.legacy'
buildFeatures {
viewBinding true
}
}
dependencies {
implementation 'com.android.support:appcompat-v7:26.+'
}

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

@ -1,52 +0,0 @@
// Generated by view binder compiler. Do not edit!
package net.micode.notes.databinding;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.viewbinding.ViewBinding;
import android.widget.LinearLayout;
import java.lang.NullPointerException;
import java.lang.Override;
import net.micode.notes.R;
public final class ActivityLockBinding implements ViewBinding {
@NonNull
private final LinearLayout rootView;
private ActivityLockBinding(@NonNull LinearLayout rootView) {
this.rootView = rootView;
}
@Override
@NonNull
public LinearLayout getRoot() {
return rootView;
}
@NonNull
public static ActivityLockBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static ActivityLockBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.activity_lock, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static ActivityLockBinding bind(@NonNull View rootView) {
if (rootView == null) {
throw new NullPointerException("rootView");
}
return new ActivityLockBinding((LinearLayout) rootView);
}
}

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

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

@ -1,52 +0,0 @@
// Generated by view binder compiler. Do not edit!
package net.micode.notes.databinding;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.viewbinding.ViewBinding;
import android.widget.LinearLayout;
import java.lang.NullPointerException;
import java.lang.Override;
import net.micode.notes.R;
public final class AddAccountTextBinding implements ViewBinding {
@NonNull
private final LinearLayout rootView;
private AddAccountTextBinding(@NonNull LinearLayout rootView) {
this.rootView = rootView;
}
@Override
@NonNull
public LinearLayout getRoot() {
return rootView;
}
@NonNull
public static AddAccountTextBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static AddAccountTextBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.add_account_text, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static AddAccountTextBinding bind(@NonNull View rootView) {
if (rootView == null) {
throw new NullPointerException("rootView");
}
return new AddAccountTextBinding((LinearLayout) rootView);
}
}

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

@ -1,58 +0,0 @@
// Generated by view binder compiler. Do not edit!
package net.micode.notes.databinding;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.viewbinding.ViewBinding;
import android.widget.EditText;
import java.lang.NullPointerException;
import java.lang.Override;
import net.micode.notes.R;
public final class DialogEditTextBinding implements ViewBinding {
@NonNull
private final EditText rootView;
@NonNull
public final EditText etFolerName;
private DialogEditTextBinding(@NonNull EditText rootView, @NonNull EditText etFolerName) {
this.rootView = rootView;
this.etFolerName = etFolerName;
}
@Override
@NonNull
public EditText getRoot() {
return rootView;
}
@NonNull
public static DialogEditTextBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static DialogEditTextBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.dialog_edit_text, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static DialogEditTextBinding bind(@NonNull View rootView) {
if (rootView == null) {
throw new NullPointerException("rootView");
}
EditText etFolerName = (EditText) rootView;
return new DialogEditTextBinding((EditText) rootView, etFolerName);
}
}

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

@ -1,369 +0,0 @@
// Generated by view binder compiler. Do not edit!
package net.micode.notes.databinding;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.viewbinding.ViewBinding;
import android.viewbinding.ViewBindings;
import android.widget.FrameLayout;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
import net.micode.notes.R;
import net.micode.notes.ui.NoteEditText;
public final class NoteEditBinding implements ViewBinding {
@NonNull
private final FrameLayout rootView;
@NonNull
public final ImageView btnSetBgColor;
@NonNull
public final LinearLayout fontSizeSelector;
@NonNull
public final ImageView ivAlertIcon;
@NonNull
public final ImageView ivBgBlue;
@NonNull
public final ImageView ivBgBlueSelect;
@NonNull
public final ImageView ivBgGreen;
@NonNull
public final ImageView ivBgGreenSelect;
@NonNull
public final ImageView ivBgRed;
@NonNull
public final ImageView ivBgRedSelect;
@NonNull
public final ImageView ivBgWhite;
@NonNull
public final ImageView ivBgWhiteSelect;
@NonNull
public final ImageView ivBgYellow;
@NonNull
public final ImageView ivBgYellowSelect;
@NonNull
public final ImageView ivLargeSelect;
@NonNull
public final ImageView ivMediumSelect;
@NonNull
public final ImageView ivSmallSelect;
@NonNull
public final ImageView ivSuperSelect;
@NonNull
public final FrameLayout llFontLarge;
@NonNull
public final FrameLayout llFontNormal;
@NonNull
public final FrameLayout llFontSmall;
@NonNull
public final FrameLayout llFontSuper;
@NonNull
public final LinearLayout noteBgColorSelector;
@NonNull
public final LinearLayout noteEditList;
@NonNull
public final NoteEditText noteEditView;
@NonNull
public final LinearLayout noteTitle;
@NonNull
public final LinearLayout svNoteEdit;
@NonNull
public final TextView textNum;
@NonNull
public final TextView tvAlertDate;
@NonNull
public final TextView tvModifiedDate;
private NoteEditBinding(@NonNull FrameLayout rootView, @NonNull ImageView btnSetBgColor,
@NonNull LinearLayout fontSizeSelector, @NonNull ImageView ivAlertIcon,
@NonNull ImageView ivBgBlue, @NonNull ImageView ivBgBlueSelect, @NonNull ImageView ivBgGreen,
@NonNull ImageView ivBgGreenSelect, @NonNull ImageView ivBgRed,
@NonNull ImageView ivBgRedSelect, @NonNull ImageView ivBgWhite,
@NonNull ImageView ivBgWhiteSelect, @NonNull ImageView ivBgYellow,
@NonNull ImageView ivBgYellowSelect, @NonNull ImageView ivLargeSelect,
@NonNull ImageView ivMediumSelect, @NonNull ImageView ivSmallSelect,
@NonNull ImageView ivSuperSelect, @NonNull FrameLayout llFontLarge,
@NonNull FrameLayout llFontNormal, @NonNull FrameLayout llFontSmall,
@NonNull FrameLayout llFontSuper, @NonNull LinearLayout noteBgColorSelector,
@NonNull LinearLayout noteEditList, @NonNull NoteEditText noteEditView,
@NonNull LinearLayout noteTitle, @NonNull LinearLayout svNoteEdit, @NonNull TextView textNum,
@NonNull TextView tvAlertDate, @NonNull TextView tvModifiedDate) {
this.rootView = rootView;
this.btnSetBgColor = btnSetBgColor;
this.fontSizeSelector = fontSizeSelector;
this.ivAlertIcon = ivAlertIcon;
this.ivBgBlue = ivBgBlue;
this.ivBgBlueSelect = ivBgBlueSelect;
this.ivBgGreen = ivBgGreen;
this.ivBgGreenSelect = ivBgGreenSelect;
this.ivBgRed = ivBgRed;
this.ivBgRedSelect = ivBgRedSelect;
this.ivBgWhite = ivBgWhite;
this.ivBgWhiteSelect = ivBgWhiteSelect;
this.ivBgYellow = ivBgYellow;
this.ivBgYellowSelect = ivBgYellowSelect;
this.ivLargeSelect = ivLargeSelect;
this.ivMediumSelect = ivMediumSelect;
this.ivSmallSelect = ivSmallSelect;
this.ivSuperSelect = ivSuperSelect;
this.llFontLarge = llFontLarge;
this.llFontNormal = llFontNormal;
this.llFontSmall = llFontSmall;
this.llFontSuper = llFontSuper;
this.noteBgColorSelector = noteBgColorSelector;
this.noteEditList = noteEditList;
this.noteEditView = noteEditView;
this.noteTitle = noteTitle;
this.svNoteEdit = svNoteEdit;
this.textNum = textNum;
this.tvAlertDate = tvAlertDate;
this.tvModifiedDate = tvModifiedDate;
}
@Override
@NonNull
public FrameLayout getRoot() {
return rootView;
}
@NonNull
public static NoteEditBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static NoteEditBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.note_edit, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static NoteEditBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.btn_set_bg_color;
ImageView btnSetBgColor = ViewBindings.findChildViewById(rootView, id);
if (btnSetBgColor == null) {
break missingId;
}
id = R.id.font_size_selector;
LinearLayout fontSizeSelector = ViewBindings.findChildViewById(rootView, id);
if (fontSizeSelector == null) {
break missingId;
}
id = R.id.iv_alert_icon;
ImageView ivAlertIcon = ViewBindings.findChildViewById(rootView, id);
if (ivAlertIcon == null) {
break missingId;
}
id = R.id.iv_bg_blue;
ImageView ivBgBlue = ViewBindings.findChildViewById(rootView, id);
if (ivBgBlue == null) {
break missingId;
}
id = R.id.iv_bg_blue_select;
ImageView ivBgBlueSelect = ViewBindings.findChildViewById(rootView, id);
if (ivBgBlueSelect == null) {
break missingId;
}
id = R.id.iv_bg_green;
ImageView ivBgGreen = ViewBindings.findChildViewById(rootView, id);
if (ivBgGreen == null) {
break missingId;
}
id = R.id.iv_bg_green_select;
ImageView ivBgGreenSelect = ViewBindings.findChildViewById(rootView, id);
if (ivBgGreenSelect == null) {
break missingId;
}
id = R.id.iv_bg_red;
ImageView ivBgRed = ViewBindings.findChildViewById(rootView, id);
if (ivBgRed == null) {
break missingId;
}
id = R.id.iv_bg_red_select;
ImageView ivBgRedSelect = ViewBindings.findChildViewById(rootView, id);
if (ivBgRedSelect == null) {
break missingId;
}
id = R.id.iv_bg_white;
ImageView ivBgWhite = ViewBindings.findChildViewById(rootView, id);
if (ivBgWhite == null) {
break missingId;
}
id = R.id.iv_bg_white_select;
ImageView ivBgWhiteSelect = ViewBindings.findChildViewById(rootView, id);
if (ivBgWhiteSelect == null) {
break missingId;
}
id = R.id.iv_bg_yellow;
ImageView ivBgYellow = ViewBindings.findChildViewById(rootView, id);
if (ivBgYellow == null) {
break missingId;
}
id = R.id.iv_bg_yellow_select;
ImageView ivBgYellowSelect = ViewBindings.findChildViewById(rootView, id);
if (ivBgYellowSelect == null) {
break missingId;
}
id = R.id.iv_large_select;
ImageView ivLargeSelect = ViewBindings.findChildViewById(rootView, id);
if (ivLargeSelect == null) {
break missingId;
}
id = R.id.iv_medium_select;
ImageView ivMediumSelect = ViewBindings.findChildViewById(rootView, id);
if (ivMediumSelect == null) {
break missingId;
}
id = R.id.iv_small_select;
ImageView ivSmallSelect = ViewBindings.findChildViewById(rootView, id);
if (ivSmallSelect == null) {
break missingId;
}
id = R.id.iv_super_select;
ImageView ivSuperSelect = ViewBindings.findChildViewById(rootView, id);
if (ivSuperSelect == null) {
break missingId;
}
id = R.id.ll_font_large;
FrameLayout llFontLarge = ViewBindings.findChildViewById(rootView, id);
if (llFontLarge == null) {
break missingId;
}
id = R.id.ll_font_normal;
FrameLayout llFontNormal = ViewBindings.findChildViewById(rootView, id);
if (llFontNormal == null) {
break missingId;
}
id = R.id.ll_font_small;
FrameLayout llFontSmall = ViewBindings.findChildViewById(rootView, id);
if (llFontSmall == null) {
break missingId;
}
id = R.id.ll_font_super;
FrameLayout llFontSuper = ViewBindings.findChildViewById(rootView, id);
if (llFontSuper == null) {
break missingId;
}
id = R.id.note_bg_color_selector;
LinearLayout noteBgColorSelector = ViewBindings.findChildViewById(rootView, id);
if (noteBgColorSelector == null) {
break missingId;
}
id = R.id.note_edit_list;
LinearLayout noteEditList = ViewBindings.findChildViewById(rootView, id);
if (noteEditList == null) {
break missingId;
}
id = R.id.note_edit_view;
NoteEditText noteEditView = ViewBindings.findChildViewById(rootView, id);
if (noteEditView == null) {
break missingId;
}
id = R.id.note_title;
LinearLayout noteTitle = ViewBindings.findChildViewById(rootView, id);
if (noteTitle == null) {
break missingId;
}
id = R.id.sv_note_edit;
LinearLayout svNoteEdit = ViewBindings.findChildViewById(rootView, id);
if (svNoteEdit == null) {
break missingId;
}
id = R.id.text_num;
TextView textNum = ViewBindings.findChildViewById(rootView, id);
if (textNum == null) {
break missingId;
}
id = R.id.tv_alert_date;
TextView tvAlertDate = ViewBindings.findChildViewById(rootView, id);
if (tvAlertDate == null) {
break missingId;
}
id = R.id.tv_modified_date;
TextView tvModifiedDate = ViewBindings.findChildViewById(rootView, id);
if (tvModifiedDate == null) {
break missingId;
}
return new NoteEditBinding((FrameLayout) rootView, btnSetBgColor, fontSizeSelector,
ivAlertIcon, ivBgBlue, ivBgBlueSelect, ivBgGreen, ivBgGreenSelect, ivBgRed, ivBgRedSelect,
ivBgWhite, ivBgWhiteSelect, ivBgYellow, ivBgYellowSelect, ivLargeSelect, ivMediumSelect,
ivSmallSelect, ivSuperSelect, llFontLarge, llFontNormal, llFontSmall, llFontSuper,
noteBgColorSelector, noteEditList, noteEditView, noteTitle, svNoteEdit, textNum,
tvAlertDate, tvModifiedDate);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}

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

@ -1,129 +0,0 @@
// Generated by view binder compiler. Do not edit!
package net.micode.notes.databinding;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.viewbinding.ViewBinding;
import android.viewbinding.ViewBindings;
import android.widget.CheckBox;
import android.widget.FrameLayout;
import android.widget.ImageView;
import android.widget.TextView;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
import net.micode.notes.R;
public final class NoteItemBinding implements ViewBinding {
@NonNull
private final FrameLayout rootView;
@NonNull
public final CheckBox checkbox;
@NonNull
public final ImageView ivAlertIcon;
@NonNull
public final ImageView ivLockIcon;
@NonNull
public final FrameLayout noteItem;
@NonNull
public final TextView tvName;
@NonNull
public final TextView tvTime;
@NonNull
public final TextView tvTitle;
private NoteItemBinding(@NonNull FrameLayout rootView, @NonNull CheckBox checkbox,
@NonNull ImageView ivAlertIcon, @NonNull ImageView ivLockIcon, @NonNull FrameLayout noteItem,
@NonNull TextView tvName, @NonNull TextView tvTime, @NonNull TextView tvTitle) {
this.rootView = rootView;
this.checkbox = checkbox;
this.ivAlertIcon = ivAlertIcon;
this.ivLockIcon = ivLockIcon;
this.noteItem = noteItem;
this.tvName = tvName;
this.tvTime = tvTime;
this.tvTitle = tvTitle;
}
@Override
@NonNull
public FrameLayout getRoot() {
return rootView;
}
@NonNull
public static NoteItemBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static NoteItemBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.note_item, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static NoteItemBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = android.R.id.checkbox;
CheckBox checkbox = ViewBindings.findChildViewById(rootView, id);
if (checkbox == null) {
break missingId;
}
id = R.id.iv_alert_icon;
ImageView ivAlertIcon = ViewBindings.findChildViewById(rootView, id);
if (ivAlertIcon == null) {
break missingId;
}
id = R.id.iv_lock_icon;
ImageView ivLockIcon = ViewBindings.findChildViewById(rootView, id);
if (ivLockIcon == null) {
break missingId;
}
FrameLayout noteItem = (FrameLayout) rootView;
id = R.id.tv_name;
TextView tvName = ViewBindings.findChildViewById(rootView, id);
if (tvName == null) {
break missingId;
}
id = R.id.tv_time;
TextView tvTime = ViewBindings.findChildViewById(rootView, id);
if (tvTime == null) {
break missingId;
}
id = R.id.tv_title;
TextView tvTitle = ViewBindings.findChildViewById(rootView, id);
if (tvTitle == null) {
break missingId;
}
return new NoteItemBinding((FrameLayout) rootView, checkbox, ivAlertIcon, ivLockIcon,
noteItem, tvName, tvTime, tvTitle);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}

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

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

@ -1,51 +0,0 @@
// Generated by view binder compiler. Do not edit!
package net.micode.notes.databinding;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.viewbinding.ViewBinding;
import java.lang.NullPointerException;
import java.lang.Override;
import net.micode.notes.R;
public final class NoteListFooterBinding implements ViewBinding {
@NonNull
private final View rootView;
private NoteListFooterBinding(@NonNull View rootView) {
this.rootView = rootView;
}
@Override
@NonNull
public View getRoot() {
return rootView;
}
@NonNull
public static NoteListFooterBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static NoteListFooterBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.note_list_footer, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static NoteListFooterBinding bind(@NonNull View rootView) {
if (rootView == null) {
throw new NullPointerException("rootView");
}
return new NoteListFooterBinding(rootView);
}
}

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

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

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

@ -1,61 +0,0 @@
// Generated by view binder compiler. Do not edit!
package net.micode.notes.databinding;
import android.support.annotation.NonNull;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.viewbinding.ViewBinding;
import android.viewbinding.ViewBindings;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
import net.micode.notes.R;
import net.micode.notes.ui.LockPatternView;
public final class WidgetLockViewBinding implements ViewBinding {
@NonNull
private final View rootView;
@NonNull
public final LockPatternView lockView;
private WidgetLockViewBinding(@NonNull View rootView, @NonNull LockPatternView lockView) {
this.rootView = rootView;
this.lockView = lockView;
}
@Override
@NonNull
public View getRoot() {
return rootView;
}
@NonNull
public static WidgetLockViewBinding inflate(@NonNull LayoutInflater inflater,
@NonNull ViewGroup parent) {
if (parent == null) {
throw new NullPointerException("parent");
}
inflater.inflate(R.layout.widget_lock_view, parent);
return bind(parent);
}
@NonNull
public static WidgetLockViewBinding 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.lockView;
LockPatternView lockView = ViewBindings.findChildViewById(rootView, id);
if (lockView == null) {
break missingId;
}
return new WidgetLockViewBinding(rootView, lockView);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}

@ -1,12 +0,0 @@
/**
* Automatically generated file. DO NOT MODIFY
*/
package net.micode.notes;
public final class BuildConfig {
public static final boolean DEBUG = Boolean.parseBoolean("true");
public static final String APPLICATION_ID = "net.micode.notes";
public static final String BUILD_TYPE = "debug";
public static final int VERSION_CODE = 1;
public static final String VERSION_NAME = "0.1";
}

@ -1,2 +0,0 @@
appMetadataVersion=1.0
androidGradlePluginVersion=7.0.2

@ -1,10 +0,0 @@
{
"version": 3,
"artifactType": {
"type": "COMPATIBLE_SCREEN_MANIFEST",
"kind": "Directory"
},
"applicationId": "net.micode.notes",
"variantName": "debug",
"elements": []
}

@ -1 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="account_dialog_title" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\account_dialog_title.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/account_dialog_title_0" view="LinearLayout"><Expressions/><location startLine="17" startOffset="0" endLine="42" endOffset="14"/></Target><Target id="@+id/account_dialog_title" view="TextView"><Expressions/><location startLine="23" startOffset="4" endLine="32" endOffset="45"/></Target><Target id="@+id/account_dialog_subtitle" view="TextView"><Expressions/><location startLine="34" startOffset="4" endLine="40" endOffset="33"/></Target></Targets></Layout>

@ -1 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_lock" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\activity_lock.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/activity_lock_0" view="LinearLayout"><Expressions/><location startLine="1" startOffset="0" endLine="19" endOffset="14"/></Target><Target tag="layout/activity_lock_0" include="widget_lock_view"><Expressions/><location startLine="17" startOffset="4" endLine="17" endOffset="47"/></Target></Targets></Layout>

@ -1 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_set_lock" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\activity_set_lock.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/activity_set_lock_0" view="LinearLayout"><Expressions/><location startLine="1" startOffset="0" endLine="31" endOffset="14"/></Target><Target tag="layout/activity_set_lock_0" include="widget_lock_view"><Expressions/><location startLine="18" startOffset="4" endLine="18" endOffset="47"/></Target><Target id="@+id/tv_activity_set_lock_title" view="TextView"><Expressions/><location startLine="9" startOffset="4" endLine="16" endOffset="32"/></Target><Target id="@+id/btn_password_clear" view="Button"><Expressions/><location startLine="21" startOffset="4" endLine="29" endOffset="34"/></Target></Targets></Layout>

@ -1 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="activity_splash" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\activity_splash.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout"><Targets><Target tag="layout/activity_splash_0" view="FrameLayout"><Expressions/><location startLine="1" startOffset="0" endLine="50" endOffset="13"/></Target><Target id="@+id/fullscreen_content" view="TextView"><Expressions/><location startLine="12" startOffset="4" endLine="21" endOffset="34"/></Target><Target id="@+id/fullscreen_content_controls" view="LinearLayout"><Expressions/><location startLine="30" startOffset="8" endLine="47" endOffset="22"/></Target><Target id="@+id/dummy_button" view="Button"><Expressions/><location startLine="39" startOffset="12" endLine="45" endOffset="53"/></Target></Targets></Layout>

@ -1 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="add_account_text" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\add_account_text.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/add_account_text_0" view="LinearLayout"><Expressions/><location startLine="17" startOffset="0" endLine="31" endOffset="14"/></Target></Targets></Layout>

@ -1 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="datetime_picker" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\datetime_picker.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/datetime_picker_0" view="LinearLayout"><Expressions/><location startLine="15" startOffset="0" endLine="55" endOffset="14"/></Target><Target id="@+id/date" view="NumberPicker"><Expressions/><location startLine="21" startOffset="4" endLine="27" endOffset="9"/></Target><Target id="@+id/hour" view="NumberPicker"><Expressions/><location startLine="29" startOffset="4" endLine="36" endOffset="9"/></Target><Target id="@+id/minute" view="NumberPicker"><Expressions/><location startLine="38" startOffset="4" endLine="45" endOffset="9"/></Target><Target id="@+id/amPm" view="NumberPicker"><Expressions/><location startLine="47" startOffset="4" endLine="54" endOffset="9"/></Target></Targets></Layout>

@ -1 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="dialog_edit_text" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\dialog_edit_text.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.EditText" rootNodeViewId="@+id/et_foler_name"><Targets><Target id="@+id/et_foler_name" tag="layout/dialog_edit_text_0" view="EditText"><Expressions/><location startLine="17" startOffset="0" endLine="22" endOffset="41"/></Target></Targets></Layout>

@ -1 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="folder_list_item" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\folder_list_item.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/folder_list_item_0" view="LinearLayout"><Expressions/><location startLine="17" startOffset="0" endLine="28" endOffset="14"/></Target><Target id="@+id/tv_folder_name" view="TextView"><Expressions/><location startLine="22" startOffset="4" endLine="27" endOffset="67"/></Target></Targets></Layout>

@ -1 +0,0 @@
<?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="406" endOffset="13"/></Target><Target id="@+id/note_title" view="LinearLayout"><Expressions/><location startLine="28" startOffset="8" endLine="70" endOffset="22"/></Target><Target id="@+id/tv_modified_date" view="TextView"><Expressions/><location startLine="33" startOffset="12" endLine="40" endOffset="77"/></Target><Target id="@+id/iv_alert_icon" view="ImageView"><Expressions/><location startLine="42" startOffset="12" endLine="47" endOffset="60"/></Target><Target id="@+id/text_num" view="TextView"><Expressions/><location startLine="49" startOffset="12" endLine="54" endOffset="51"/></Target><Target id="@+id/tv_alert_date" view="TextView"><Expressions/><location startLine="56" startOffset="12" endLine="63" endOffset="77"/></Target><Target id="@+id/sv_note_edit" view="LinearLayout"><Expressions/><location startLine="72" startOffset="8" endLine="122" endOffset="22"/></Target><Target id="@+id/note_edit_view" view="net.micode.notes.ui.NoteEditText"><Expressions/><location startLine="96" startOffset="20" endLine="106" endOffset="61"/></Target><Target id="@+id/note_edit_list" view="LinearLayout"><Expressions/><location startLine="108" startOffset="20" endLine="114" endOffset="51"/></Target><Target id="@+id/btn_set_bg_color" view="ImageView"><Expressions/><location startLine="125" startOffset="4" endLine="130" endOffset="44"/></Target><Target id="@+id/note_bg_color_selector" view="LinearLayout"><Expressions/><location startLine="132" startOffset="4" endLine="244" endOffset="18"/></Target><Target id="@+id/iv_bg_yellow" view="ImageView"><Expressions/><location startLine="147" startOffset="12" endLine="150" endOffset="54"/></Target><Target id="@+id/iv_bg_yellow_select" view="ImageView"><Expressions/><location startLine="152" startOffset="12" endLine="160" endOffset="50"/></Target><Target id="@+id/iv_bg_blue" view="ImageView"><Expressions/><location startLine="168" startOffset="12" endLine="171" endOffset="54"/></Target><Target id="@+id/iv_bg_blue_select" view="ImageView"><Expressions/><location startLine="173" startOffset="12" endLine="181" endOffset="50"/></Target><Target id="@+id/iv_bg_white" view="ImageView"><Expressions/><location startLine="189" startOffset="12" endLine="192" endOffset="54"/></Target><Target id="@+id/iv_bg_white_select" view="ImageView"><Expressions/><location startLine="194" startOffset="12" endLine="202" endOffset="50"/></Target><Target id="@+id/iv_bg_green" view="ImageView"><Expressions/><location startLine="210" startOffset="12" endLine="213" endOffset="54"/></Target><Target id="@+id/iv_bg_green_select" view="ImageView"><Expressions/><location startLine="215" startOffset="12" endLine="222" endOffset="50"/></Target><Target id="@+id/iv_bg_red" view="ImageView"><Expressions/><location startLine="230" startOffset="12" endLine="233" endOffset="54"/></Target><Target id="@+id/iv_bg_red_select" view="ImageView"><Expressions/><location startLine="235" startOffset="12" endLine="242" endOffset="43"/></Target><Target id="@+id/font_size_selector" view="LinearLayout"><Expressions/><location startLine="246" startOffset="4" endLine="405" endOffset="18"/></Target><Target id="@+id/ll_font_small" view="FrameLayout"><Expressions/><location startLine="254" startOffset="8" endLine="290" endOffset="21"/></Target><Target id="@+id/iv_small_select" view="ImageView"><Expressions/><location startLine="280" startOffset="12" endLine="289" endOffset="50"/></Target><Target id="@+id/ll_font_normal" view="FrameLayout"><Expressions/><location startLine="292" startOffset="8" endLine="328" endOffset="21"/></Target><Target id="@+id/iv_medium_select" view="ImageView"><Expressions/><location startLine="318" startOffset="12" endLine="327" endOffset="50"/></Target><Target id="@+id/ll_font_large" view="FrameLayout"><Expressions/><location startLine="330" startOffset="8" endLine="366" endOffset="21"/></Target><Target id="@+id/iv_large_select" view="ImageView"><Expressions/><location startLine="356" startOffset="12" endLine="365" endOffset="50"/></Target><Target id="@+id/ll_font_super" view="FrameLayout"><Expressions/><location startLine="368" startOffset="8" endLine="404" endOffset="21"/></Target><Target id="@+id/iv_super_select" view="ImageView"><Expressions/><location startLine="394" startOffset="12" endLine="403" endOffset="50"/></Target></Targets></Layout>

@ -1 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_edit_list_item" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_edit_list_item.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/note_edit_list_item_0" view="LinearLayout"><Expressions/><location startLine="17" startOffset="0" endLine="38" endOffset="14"/></Target><Target id="@+id/cb_edit_item" view="CheckBox"><Expressions/><location startLine="22" startOffset="4" endLine="28" endOffset="43"/></Target><Target id="@+id/et_edit_text" view="net.micode.notes.ui.NoteEditText"><Expressions/><location startLine="30" startOffset="4" endLine="37" endOffset="36"/></Target></Targets></Layout>

@ -1 +0,0 @@
<?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="83" 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><Target id="@+id/iv_lock_icon" view="ImageView"><Expressions/><location startLine="77" startOffset="4" endLine="81" endOffset="42"/></Target></Targets></Layout>

@ -1 +0,0 @@
<?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>

@ -1 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_list_dropdown_menu" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_list_dropdown_menu.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout" rootNodeViewId="@+id/navigation_bar"><Targets><Target id="@+id/navigation_bar" tag="layout/note_list_dropdown_menu_0" view="LinearLayout"><Expressions/><location startLine="17" startOffset="0" endLine="31" endOffset="14"/></Target><Target id="@+id/selection_menu" view="Button"><Expressions/><location startLine="24" startOffset="4" endLine="30" endOffset="57"/></Target></Targets></Layout>

@ -1 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="note_list_footer" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\note_list_footer.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.view.View"><Targets><Target tag="layout/note_list_footer_0" view="View"><Expressions/><location startLine="17" startOffset="0" endLine="23" endOffset="51"/></Target></Targets></Layout>

@ -1 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="settings_header" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\settings_header.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.LinearLayout"><Targets><Target tag="layout/settings_header_0" view="LinearLayout"><Expressions/><location startLine="17" startOffset="0" endLine="40" endOffset="14"/></Target><Target id="@+id/preference_sync_button" view="Button"><Expressions/><location startLine="23" startOffset="4" endLine="31" endOffset="67"/></Target><Target id="@+id/prefenerece_sync_status_textview" view="TextView"><Expressions/><location startLine="33" startOffset="4" endLine="38" endOffset="34"/></Target></Targets></Layout>

@ -1 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="widget_2x" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\widget_2x.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout"><Targets><Target tag="layout/widget_2x_0" view="FrameLayout"><Expressions/><location startLine="17" startOffset="0" endLine="36" endOffset="13"/></Target><Target id="@+id/widget_bg_image" view="ImageView"><Expressions/><location startLine="21" startOffset="4" endLine="24" endOffset="45"/></Target><Target id="@+id/widget_text" view="TextView"><Expressions/><location startLine="25" startOffset="4" endLine="35" endOffset="45"/></Target></Targets></Layout>

@ -1 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="widget_4x" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\widget_4x.xml" directory="layout" isMerge="false" isBindingData="false" rootNodeType="android.widget.FrameLayout"><Targets><Target tag="layout/widget_4x_0" view="FrameLayout"><Expressions/><location startLine="17" startOffset="0" endLine="38" endOffset="13"/></Target><Target id="@+id/widget_bg_image" view="ImageView"><Expressions/><location startLine="22" startOffset="4" endLine="25" endOffset="45"/></Target><Target id="@+id/widget_text" view="TextView"><Expressions/><location startLine="27" startOffset="4" endLine="37" endOffset="45"/></Target></Targets></Layout>

@ -1 +0,0 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?><Layout layout="widget_lock_view" modulePackage="net.micode.notes" filePath="app\src\main\res\layout\widget_lock_view.xml" directory="layout" isMerge="true" isBindingData="false" rootNodeType="android.widget.merge"><Targets><Target id="@+id/lockView" tag="layout/widget_lock_view_0" view="net.micode.notes.ui.LockPatternView"><Expressions/><location startLine="4" startOffset="4" endLine="8" endOffset="34"/></Target></Targets></Layout>

@ -1,2 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="E:\xiaomibianqian_xqs\src\Notes-master\app\src\main\assets"/><source path="E:\xiaomibianqian_xqs\src\Notes-master\app\build\intermediates\shader_assets\debug\out"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="E:\xiaomibianqian_xqs\src\Notes-master\app\src\debug\assets"/></dataSet></merger>

@ -1,2 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<merger version="3"><dataSet config="main" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="E:\xiaomibianqian_xqs\src\Notes-master\app\src\main\jniLibs"/></dataSet><dataSet config="debug" ignore_pattern="!.svn:!.git:!.ds_store:!*.scc:.*:&lt;dir>_*:!CVS:!thumbs.db:!picasa.ini:!*~"><source path="E:\xiaomibianqian_xqs\src\Notes-master\app\src\debug\jniLibs"/></dataSet></merger>

@ -1,113 +0,0 @@
#Wed Nov 10 11:32:45 CST 2021
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\new_note_normal.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_new_note_normal.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\raw\\introduction=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\raw_introduction.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\incremental\\mergeDebugResources\\stripped.dir\\layout\\note_edit.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\layout_note_edit.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\incremental\\mergeDebugResources\\stripped.dir\\layout\\dialog_edit_text.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\layout_dialog_edit_text.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\incremental\\mergeDebugResources\\stripped.dir\\layout\\activity_set_lock.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\layout_activity_set_lock.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\incremental\\mergeDebugResources\\stripped.dir\\layout\\note_list_footer.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\layout_note_list_footer.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\bitmap_pressed.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_bitmap_pressed.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\font_small.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_small.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\widget_4x_blue.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_blue.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\search_result.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_search_result.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\widget_4x_green.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_green.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable\\new_note.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable_new_note.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\font_size_selector_bg.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_size_selector_bg.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\incremental\\mergeDebugResources\\stripped.dir\\layout\\account_dialog_title.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\layout_account_dialog_title.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\list_green_middle.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_green_middle.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\title_alert.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_title_alert.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\selected.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_selected.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\list_red_middle.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_red_middle.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\menu\\note_list_options.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\menu_note_list_options.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\xml\\searchable.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\xml_searchable.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\edit_title_red.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_red.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\incremental\\mergeDebugResources\\stripped.dir\\layout\\settings_header.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\layout_settings_header.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\widget_4x_white.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_white.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\font_large.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_large.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\menu\\call_record_folder.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\menu_call_record_folder.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\list_yellow_up.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_yellow_up.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\color\\secondary_text_dark.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\color_secondary_text_dark.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\note_edit_color_selector_panel.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_note_edit_color_selector_panel.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\incremental\\mergeDebugResources\\stripped.dir\\layout\\widget_lock_view.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\layout_widget_lock_view.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\bitmap_normal.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_bitmap_normal.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\menu\\note_list.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\menu_note_list.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\icon_app.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_icon_app.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\list_green_down.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_green_down.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\widget_2x_red.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_red.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\list_blue_single.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_blue_single.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\list_green_single.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_green_single.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\widget_2x_blue.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_blue.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\bg_btn_set_color.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_bg_btn_set_color.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\list_white_up.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_white_up.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\menu_move.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_menu_move.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\list_folder.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_folder.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\incremental\\mergeDebugResources\\stripped.dir\\layout\\note_list.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\layout_note_list.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\incremental\\mergeDebugResources\\stripped.dir\\layout\\widget_4x.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\layout_widget_4x.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\edit_yellow.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_yellow.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\bitmap_error.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_bitmap_error.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\incremental\\mergeDebugResources\\stripped.dir\\layout\\note_edit_list_item.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\layout_note_edit_list_item.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\list_white_middle.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_white_middle.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\delete.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_delete.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\raw-zh-rCN\\event.txt=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\raw-zh-rCN_event.txt.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\edit_white.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_white.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\edit_blue.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_blue.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\list_green_up.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_green_up.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\menu\\note_list_dropdown.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\menu_note_list_dropdown.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\notification.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_notification.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\widget_2x_yellow.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_yellow.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\edit_red.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_red.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\xml\\widget_4x_info.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\xml_widget_4x_info.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\font_super.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_super.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\incremental\\mergeDebugResources\\stripped.dir\\layout\\note_item.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\layout_note_item.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\widget_4x_yellow.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_yellow.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\widget_4x_red.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_red.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\menu\\call_note_edit.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\menu_call_note_edit.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\list_red_single.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_red_single.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\title_bar_bg.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_title_bar_bg.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\widget_2x_white.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_white.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\menu_delete.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_menu_delete.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\list_white_single.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_white_single.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\list_white_down.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_white_down.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\raw\\passwd.txt=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\raw_passwd.txt.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\list_yellow_single.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_yellow_single.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\list_blue_middle.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_blue_middle.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\menu\\sub_folder.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\menu_sub_folder.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\dropdown_icon.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_dropdown_icon.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\edit_green.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_green.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\lock.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_lock.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\list_blue_up.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_blue_up.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\line_pressed.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_line_pressed.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\clock.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_clock.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\incremental\\mergeDebugResources\\stripped.dir\\layout\\note_list_dropdown_menu.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\layout_note_list_dropdown_menu.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\incremental\\mergeDebugResources\\stripped.dir\\layout\\activity_lock.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\layout_activity_lock.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\list_red_up.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_red_up.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\incremental\\mergeDebugResources\\stripped.dir\\layout\\add_account_text.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\layout_add_account_text.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\call_record.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_call_record.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\edit_title_green.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_green.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\widget_2x_green.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_green.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\list_yellow_middle.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_yellow_middle.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\list_blue_down.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_blue_down.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\incremental\\mergeDebugResources\\stripped.dir\\layout\\activity_splash.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\layout_activity_splash.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\xml\\preferences.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\xml_preferences.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\incremental\\mergeDebugResources\\stripped.dir\\layout\\widget_2x.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\layout_widget_2x.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\xml\\widget_2x_info.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\xml_widget_2x_info.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\edit_title_blue.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_blue.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\raw-zh-rCN\\introduction=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\raw-zh-rCN_introduction.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\line_error.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_line_error.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\color\\primary_text_dark.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\color_primary_text_dark.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\list_red_down.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_red_down.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\bg_color_btn_mask.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_bg_color_btn_mask.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\font_normal.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_normal.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\menu\\note_edit.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\menu_note_edit.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\list_background.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_background.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\edit_title_yellow.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_yellow.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\list_footer_bg.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_footer_bg.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\raw\\event.txt=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\raw_event.txt.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\new_note_pressed.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_new_note_pressed.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\raw-zh-rCN\\contact.txt=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\raw-zh-rCN_contact.txt.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\edit_title_white.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_white.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\incremental\\mergeDebugResources\\stripped.dir\\layout\\datetime_picker.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\layout_datetime_picker.xml.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\raw-zh-rCN\\passwd.txt=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\raw-zh-rCN_passwd.txt.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\list_yellow_down.9.png=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_yellow_down.9.png.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\drawable-hdpi\\welcome.jpeg=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_welcome.jpeg.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\src\\main\\res\\raw\\contact.txt=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\raw_contact.txt.flat
E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\incremental\\mergeDebugResources\\stripped.dir\\layout\\folder_list_item.xml=E\:\\xiaomibianqian_xqs\\src\\Notes-master\\app\\build\\intermediates\\merged_res\\debug\\layout_folder_list_item.xml.flat

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigeer tuis"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</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="121134116657445385" name="abc_capital_off">"AF"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"AAN"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Soek …"</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>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Vou in"</string>
<string msgid="146198913615257606" name="search_menu_title">"Soek"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"ወደ መነሻ ይዳስሱ"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s፣ %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s፣ %2$s፣ %3$s"</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="121134116657445385" name="abc_capital_off">"ጠፍቷል"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"በርቷል"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"ፈልግ…"</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>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"ሰብስብ"</string>
<string msgid="146198913615257606" name="search_menu_title">"ፈልግ"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"التنقل إلى الشاشة الرئيسية"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s، %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s، %2$s، %3$s"</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="121134116657445385" name="abc_capital_off">"إيقاف"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"تشغيل"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"بحث…"</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>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"تصغير"</string>
<string msgid="146198913615257606" name="search_menu_title">"البحث"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"+999"</string>
</resources>

@ -1,23 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Evə naviqasiya et"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Yuxarı get"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Digər variantlar"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Hazırdır"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Hamısına baxın"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Tətbiq seçin"</string>
<string msgid="121134116657445385" name="abc_capital_off">"DEAKTİV"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"AKTİV"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Axtarış..."</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Sorğunu təmizlə"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Axtarış sorğusu"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Axtarış"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Sorğunu göndərin"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Səsli axtarış"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Bununla paylaşın"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Dağıt"</string>
<string msgid="146198913615257606" name="search_menu_title">"Axtarış"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Odlazak na Početnu"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Kretanje nagore"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Još opcija"</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">"Izbor aplikacije"</string>
<string msgid="121134116657445385" name="abc_capital_off">"ISKLJUČI"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"UKLJUČI"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Pretražite..."</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Brisanje upita"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Upit za pretragu"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Pretraga"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Slanje upita"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Glasovna pretraga"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Deli sa"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Deli sa aplikacijom %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Skupi"</string>
<string msgid="146198913615257606" name="search_menu_title">"Pretraži"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string>
</resources>

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Перайсці на галоўную старонку"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</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="121134116657445385" name="abc_capital_off">"ВЫКЛ."</string>
<string msgid="3405795526292276155" name="abc_capital_on">"УКЛ."</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Пошук..."</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Выдалiць запыт"</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>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Згарнуць"</string>
<string msgid="146198913615257606" name="search_menu_title">"Пошук"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"больш за 999"</string>
</resources>

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Придвижване към „Начало“"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"„%1$s“ %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"„%1$s“, „%2$s“ %3$s"</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="121134116657445385" name="abc_capital_off">"ИЗКЛ."</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ВКЛ."</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Търсете…"</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>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Свиване"</string>
<string msgid="146198913615257606" name="search_menu_title">"Търсене"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"হোম এ নেভিগেট করুন"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</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="121134116657445385" name="abc_capital_off">"বন্ধ"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"চালু"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"অনুসন্ধান..."</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>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"সঙ্কুচিত করুন"</string>
<string msgid="146198913615257606" name="search_menu_title">"অনুসন্ধান করুন"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"৯৯৯+"</string>
</resources>

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Vrati se na početnu stranicu"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</string>
<string msgid="1594238315039666878" name="abc_action_bar_up_description">"Navigiraj prema gore"</string>
<string msgid="3588849162933574182" name="abc_action_menu_overflow_description">"Više opcija"</string>
<string msgid="4076576682505996667" name="abc_action_mode_done">"Gotovo"</string>
<string msgid="7468859129482906941" name="abc_activity_chooser_view_see_all">"Vidi sve"</string>
<string msgid="2031811694353399454" name="abc_activitychooserview_choose_application">"Odaberite aplikaciju"</string>
<string msgid="121134116657445385" name="abc_capital_off">"ISKLJUČI"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"UKLJUČI"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Pretraži..."</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Obriši upit"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"Pretraži upit"</string>
<string msgid="8264924765203268293" name="abc_searchview_description_search">"Traži"</string>
<string msgid="8928215447528550784" name="abc_searchview_description_submit">"Pošalji upit"</string>
<string msgid="893419373245838918" name="abc_searchview_description_voice">"Pretraživanje glasom"</string>
<string msgid="3421042268587513524" name="abc_shareactionprovider_share_with">"Podijeli sa"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Podijeli sa %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Skupi"</string>
<string msgid="146198913615257606" name="search_menu_title">"Pretraži"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string>
</resources>

@ -1,24 +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="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</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="121134116657445385" name="abc_capital_off">"DESACTIVAT"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ACTIVAT"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Cerca..."</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>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Replega"</string>
<string msgid="146198913615257606" name="search_menu_title">"Cerca"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"+999"</string>
</resources>

@ -1,24 +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="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s %3$s"</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="121134116657445385" name="abc_capital_off">"VYPNUTO"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ZAPNUTO"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Vyhledat…"</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>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Sbalit"</string>
<string msgid="146198913615257606" name="search_menu_title">"Hledat"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Naviger hjem"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</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="121134116657445385" name="abc_capital_off">"FRA"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"TIL"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Søg…"</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">"Talesø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>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Skjul"</string>
<string msgid="146198913615257606" name="search_menu_title">"Søg"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Zur Startseite"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s: %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s: %3$s"</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="121134116657445385" name="abc_capital_off">"Aus"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"An"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Suchen…"</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>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Minimieren"</string>
<string msgid="146198913615257606" name="search_menu_title">"Suchen"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Πλοήγηση στην αρχική σελίδα"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</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="121134116657445385" name="abc_capital_off">"ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ΕΝΕΡΓΟΠΟΙΗΣΗ"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Αναζήτηση…"</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>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Σύμπτυξη"</string>
<string msgid="146198913615257606" name="search_menu_title">"Αναζήτηση"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</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">"Done"</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="121134116657445385" name="abc_capital_off">"OFF"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ON"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Search…"</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>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string>
<string msgid="146198913615257606" name="search_menu_title">"Search"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</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">"Done"</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="121134116657445385" name="abc_capital_off">"OFF"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ON"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Search…"</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>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string>
<string msgid="146198913615257606" name="search_menu_title">"Search"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigate home"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</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">"Done"</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="121134116657445385" name="abc_capital_off">"OFF"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ON"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Search…"</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>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Collapse"</string>
<string msgid="146198913615257606" name="search_menu_title">"Search"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -1,24 +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="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</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="121134116657445385" name="abc_capital_off">"DESACTIVADO"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ACTIVADO"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Buscar…"</string>
<string msgid="3691816814315814921" name="abc_searchview_description_clear">"Eliminar la consulta"</string>
<string msgid="2550479030709304392" name="abc_searchview_description_query">"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>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Contraer"</string>
<string msgid="146198913615257606" name="search_menu_title">"Buscar"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -1,24 +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="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</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="121134116657445385" name="abc_capital_off">"DESACTIVADO"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ACTIVADO"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Buscar…"</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>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Contraer"</string>
<string msgid="146198913615257606" name="search_menu_title">"Buscar"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"+999"</string>
</resources>

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Navigeerimine avaekraanile"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</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="121134116657445385" name="abc_capital_off">"VÄLJAS"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"SEES"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Otsige …"</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>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Ahendamine"</string>
<string msgid="146198913615257606" name="search_menu_title">"Otsing"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -1,24 +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="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</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="121134116657445385" name="abc_capital_off">"DESAKTIBATUTA"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"AKTIBATUTA"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Bilatu…"</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>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Tolestu"</string>
<string msgid="146198913615257606" name="search_menu_title">"Bilatu"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"پیمایش به صفحه اصلی"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s، %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s، %2$s، %3$s"</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="121134116657445385" name="abc_capital_off">"خاموش"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"روشن"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"جستجو…"</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>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"کوچک کردن"</string>
<string msgid="146198913615257606" name="search_menu_title">"جستجو"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"۹۹۹+"</string>
</resources>

@ -1,24 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string msgid="4600421777120114993" name="abc_action_bar_home_description">"Siirry etusivulle"</string>
<string msgid="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</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="121134116657445385" name="abc_capital_off">"POIS KÄYTÖSTÄ"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"KÄYTÖSSÄ"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Haku…"</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>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Kutista"</string>
<string msgid="146198913615257606" name="search_menu_title">"Haku"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -1,24 +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="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</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="121134116657445385" name="abc_capital_off">"DÉSACTIVÉ"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ACTIVÉ"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Recherche en cours..."</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"</string>
<string msgid="7165123711973476752" name="abc_shareactionprovider_share_with_application">"Partager avec %s"</string>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Réduire"</string>
<string msgid="146198913615257606" name="search_menu_title">"Rechercher"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string>
</resources>

@ -1,24 +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="1397052879051804371" name="abc_action_bar_home_description_format">"%1$s, %2$s"</string>
<string msgid="6623331958280229229" name="abc_action_bar_home_subtitle_description_format">"%1$s, %2$s, %3$s"</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="121134116657445385" name="abc_capital_off">"DÉSACTIVÉ"</string>
<string msgid="3405795526292276155" name="abc_capital_on">"ACTIVÉ"</string>
<string msgid="7723749260725869598" name="abc_search_hint">"Rechercher…"</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>
<string msgid="1603543279005712093" name="abc_toolbar_collapse_description">"Réduire"</string>
<string msgid="146198913615257606" name="search_menu_title">"Rechercher"</string>
<string msgid="2869576371154716097" name="status_bar_notification_info_overflow">">999"</string>
</resources>

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

Loading…
Cancel
Save