diff --git a/src/.gradle/8.0/executionHistory/executionHistory.bin b/src/.gradle/8.0/executionHistory/executionHistory.bin index 7e05445b..2099630e 100644 Binary files a/src/.gradle/8.0/executionHistory/executionHistory.bin and b/src/.gradle/8.0/executionHistory/executionHistory.bin differ diff --git a/src/.gradle/8.0/executionHistory/executionHistory.lock b/src/.gradle/8.0/executionHistory/executionHistory.lock index e3a01d50..aa793573 100644 Binary files a/src/.gradle/8.0/executionHistory/executionHistory.lock and b/src/.gradle/8.0/executionHistory/executionHistory.lock differ diff --git a/src/.gradle/8.0/fileHashes/fileHashes.bin b/src/.gradle/8.0/fileHashes/fileHashes.bin index 9f5ee25a..140bc91c 100644 Binary files a/src/.gradle/8.0/fileHashes/fileHashes.bin and b/src/.gradle/8.0/fileHashes/fileHashes.bin differ diff --git a/src/.gradle/8.0/fileHashes/fileHashes.lock b/src/.gradle/8.0/fileHashes/fileHashes.lock index ece16565..8c556ed9 100644 Binary files a/src/.gradle/8.0/fileHashes/fileHashes.lock and b/src/.gradle/8.0/fileHashes/fileHashes.lock differ diff --git a/src/.gradle/8.0/fileHashes/resourceHashesCache.bin b/src/.gradle/8.0/fileHashes/resourceHashesCache.bin index a0c10b25..ed5f2329 100644 Binary files a/src/.gradle/8.0/fileHashes/resourceHashesCache.bin and b/src/.gradle/8.0/fileHashes/resourceHashesCache.bin differ diff --git a/src/.gradle/buildOutputCleanup/buildOutputCleanup.lock b/src/.gradle/buildOutputCleanup/buildOutputCleanup.lock index 00cb6f8a..af1e8b38 100644 Binary files a/src/.gradle/buildOutputCleanup/buildOutputCleanup.lock and b/src/.gradle/buildOutputCleanup/buildOutputCleanup.lock differ diff --git a/src/.gradle/buildOutputCleanup/outputFiles.bin b/src/.gradle/buildOutputCleanup/outputFiles.bin index 1f7f0f67..6b21a062 100644 Binary files a/src/.gradle/buildOutputCleanup/outputFiles.bin and b/src/.gradle/buildOutputCleanup/outputFiles.bin differ diff --git a/src/.gradle/file-system.probe b/src/.gradle/file-system.probe index 4f15eef4..f48a2d7b 100644 Binary files a/src/.gradle/file-system.probe and b/src/.gradle/file-system.probe differ diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/AccountDialogTitleBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/AccountDialogTitleBinding.java new file mode 100644 index 00000000..872d89e5 --- /dev/null +++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/AccountDialogTitleBinding.java @@ -0,0 +1,80 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.support.annotation.NonNull; +import android.support.annotation.Nullable; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.viewbinding.ViewBinding; +import android.viewbinding.ViewBindings; +import android.widget.LinearLayout; +import android.widget.TextView; +import java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; + +public final class AccountDialogTitleBinding implements ViewBinding { + @NonNull + private final LinearLayout rootView; + + @NonNull + public final TextView accountDialogSubtitle; + + @NonNull + public final TextView accountDialogTitle; + + private AccountDialogTitleBinding(@NonNull LinearLayout rootView, + @NonNull TextView accountDialogSubtitle, @NonNull TextView accountDialogTitle) { + this.rootView = rootView; + this.accountDialogSubtitle = accountDialogSubtitle; + this.accountDialogTitle = accountDialogTitle; + } + + @Override + @NonNull + public LinearLayout getRoot() { + return rootView; + } + + @NonNull + public static AccountDialogTitleBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static AccountDialogTitleBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.account_dialog_title, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static AccountDialogTitleBinding bind(@NonNull View rootView) { + // The body of this method is generated in a way you would not otherwise write. + // This is done to optimize the compiled bytecode for size and performance. + int id; + missingId: { + id = R.id.account_dialog_subtitle; + TextView accountDialogSubtitle = ViewBindings.findChildViewById(rootView, id); + if (accountDialogSubtitle == null) { + break missingId; + } + + id = R.id.account_dialog_title; + TextView accountDialogTitle = ViewBindings.findChildViewById(rootView, id); + if (accountDialogTitle == null) { + break missingId; + } + + return new AccountDialogTitleBinding((LinearLayout) rootView, accountDialogSubtitle, + accountDialogTitle); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivitySplashBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivitySplashBinding.java new file mode 100644 index 00000000..2ed56e16 --- /dev/null +++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/ActivitySplashBinding.java @@ -0,0 +1,92 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.support.annotation.NonNull; +import android.support.annotation.Nullable; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.viewbinding.ViewBinding; +import android.viewbinding.ViewBindings; +import android.widget.Button; +import android.widget.FrameLayout; +import android.widget.LinearLayout; +import android.widget.TextView; +import java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; + +public final class ActivitySplashBinding implements ViewBinding { + @NonNull + private final FrameLayout rootView; + + @NonNull + public final Button dummyButton; + + @NonNull + public final TextView fullscreenContent; + + @NonNull + public final LinearLayout fullscreenContentControls; + + private ActivitySplashBinding(@NonNull FrameLayout rootView, @NonNull Button dummyButton, + @NonNull TextView fullscreenContent, @NonNull LinearLayout fullscreenContentControls) { + this.rootView = rootView; + this.dummyButton = dummyButton; + this.fullscreenContent = fullscreenContent; + this.fullscreenContentControls = fullscreenContentControls; + } + + @Override + @NonNull + public FrameLayout getRoot() { + return rootView; + } + + @NonNull + public static ActivitySplashBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static ActivitySplashBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.activity_splash, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static ActivitySplashBinding bind(@NonNull View rootView) { + // The body of this method is generated in a way you would not otherwise write. + // This is done to optimize the compiled bytecode for size and performance. + int id; + missingId: { + id = R.id.dummy_button; + Button dummyButton = ViewBindings.findChildViewById(rootView, id); + if (dummyButton == null) { + break missingId; + } + + id = R.id.fullscreen_content; + TextView fullscreenContent = ViewBindings.findChildViewById(rootView, id); + if (fullscreenContent == null) { + break missingId; + } + + id = R.id.fullscreen_content_controls; + LinearLayout fullscreenContentControls = ViewBindings.findChildViewById(rootView, id); + if (fullscreenContentControls == null) { + break missingId; + } + + return new ActivitySplashBinding((FrameLayout) rootView, dummyButton, fullscreenContent, + fullscreenContentControls); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/AddAccountTextBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/AddAccountTextBinding.java new file mode 100644 index 00000000..8d15ea41 --- /dev/null +++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/AddAccountTextBinding.java @@ -0,0 +1,52 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.support.annotation.NonNull; +import android.support.annotation.Nullable; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.viewbinding.ViewBinding; +import android.widget.LinearLayout; +import java.lang.NullPointerException; +import java.lang.Override; +import net.micode.notes.R; + +public final class AddAccountTextBinding implements ViewBinding { + @NonNull + private final LinearLayout rootView; + + private AddAccountTextBinding(@NonNull LinearLayout rootView) { + this.rootView = rootView; + } + + @Override + @NonNull + public LinearLayout getRoot() { + return rootView; + } + + @NonNull + public static AddAccountTextBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static AddAccountTextBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.add_account_text, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static AddAccountTextBinding bind(@NonNull View rootView) { + if (rootView == null) { + throw new NullPointerException("rootView"); + } + + return new AddAccountTextBinding((LinearLayout) rootView); + } +} diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/DatetimePickerBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/DatetimePickerBinding.java new file mode 100644 index 00000000..fd721a01 --- /dev/null +++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/DatetimePickerBinding.java @@ -0,0 +1,99 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.support.annotation.NonNull; +import android.support.annotation.Nullable; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.viewbinding.ViewBinding; +import android.viewbinding.ViewBindings; +import android.widget.LinearLayout; +import android.widget.NumberPicker; +import java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; + +public final class DatetimePickerBinding implements ViewBinding { + @NonNull + private final LinearLayout rootView; + + @NonNull + public final NumberPicker amPm; + + @NonNull + public final NumberPicker date; + + @NonNull + public final NumberPicker hour; + + @NonNull + public final NumberPicker minute; + + private DatetimePickerBinding(@NonNull LinearLayout rootView, @NonNull NumberPicker amPm, + @NonNull NumberPicker date, @NonNull NumberPicker hour, @NonNull NumberPicker minute) { + this.rootView = rootView; + this.amPm = amPm; + this.date = date; + this.hour = hour; + this.minute = minute; + } + + @Override + @NonNull + public LinearLayout getRoot() { + return rootView; + } + + @NonNull + public static DatetimePickerBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static DatetimePickerBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.datetime_picker, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static DatetimePickerBinding bind(@NonNull View rootView) { + // The body of this method is generated in a way you would not otherwise write. + // This is done to optimize the compiled bytecode for size and performance. + int id; + missingId: { + id = R.id.amPm; + NumberPicker amPm = ViewBindings.findChildViewById(rootView, id); + if (amPm == null) { + break missingId; + } + + id = R.id.date; + NumberPicker date = ViewBindings.findChildViewById(rootView, id); + if (date == null) { + break missingId; + } + + id = R.id.hour; + NumberPicker hour = ViewBindings.findChildViewById(rootView, id); + if (hour == null) { + break missingId; + } + + id = R.id.minute; + NumberPicker minute = ViewBindings.findChildViewById(rootView, id); + if (minute == null) { + break missingId; + } + + return new DatetimePickerBinding((LinearLayout) rootView, amPm, date, hour, minute); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/DialogEditTextBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/DialogEditTextBinding.java new file mode 100644 index 00000000..e634c684 --- /dev/null +++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/DialogEditTextBinding.java @@ -0,0 +1,58 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.support.annotation.NonNull; +import android.support.annotation.Nullable; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.viewbinding.ViewBinding; +import android.widget.EditText; +import java.lang.NullPointerException; +import java.lang.Override; +import net.micode.notes.R; + +public final class DialogEditTextBinding implements ViewBinding { + @NonNull + private final EditText rootView; + + @NonNull + public final EditText etFolerName; + + private DialogEditTextBinding(@NonNull EditText rootView, @NonNull EditText etFolerName) { + this.rootView = rootView; + this.etFolerName = etFolerName; + } + + @Override + @NonNull + public EditText getRoot() { + return rootView; + } + + @NonNull + public static DialogEditTextBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static DialogEditTextBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.dialog_edit_text, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static DialogEditTextBinding bind(@NonNull View rootView) { + if (rootView == null) { + throw new NullPointerException("rootView"); + } + + EditText etFolerName = (EditText) rootView; + + return new DialogEditTextBinding((EditText) rootView, etFolerName); + } +} diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/FolderListItemBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/FolderListItemBinding.java new file mode 100644 index 00000000..5f4ed706 --- /dev/null +++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/FolderListItemBinding.java @@ -0,0 +1,68 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.support.annotation.NonNull; +import android.support.annotation.Nullable; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.viewbinding.ViewBinding; +import android.viewbinding.ViewBindings; +import android.widget.LinearLayout; +import android.widget.TextView; +import java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; + +public final class FolderListItemBinding implements ViewBinding { + @NonNull + private final LinearLayout rootView; + + @NonNull + public final TextView tvFolderName; + + private FolderListItemBinding(@NonNull LinearLayout rootView, @NonNull TextView tvFolderName) { + this.rootView = rootView; + this.tvFolderName = tvFolderName; + } + + @Override + @NonNull + public LinearLayout getRoot() { + return rootView; + } + + @NonNull + public static FolderListItemBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static FolderListItemBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.folder_list_item, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static FolderListItemBinding bind(@NonNull View rootView) { + // The body of this method is generated in a way you would not otherwise write. + // This is done to optimize the compiled bytecode for size and performance. + int id; + missingId: { + id = R.id.tv_folder_name; + TextView tvFolderName = ViewBindings.findChildViewById(rootView, id); + if (tvFolderName == null) { + break missingId; + } + + return new FolderListItemBinding((LinearLayout) rootView, tvFolderName); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteEditBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteEditBinding.java new file mode 100644 index 00000000..f98a1bcd --- /dev/null +++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteEditBinding.java @@ -0,0 +1,369 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.support.annotation.NonNull; +import android.support.annotation.Nullable; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.viewbinding.ViewBinding; +import android.viewbinding.ViewBindings; +import android.widget.FrameLayout; +import android.widget.ImageView; +import android.widget.LinearLayout; +import android.widget.TextView; +import java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; +import net.micode.notes.ui.NoteEditText; + +public final class NoteEditBinding implements ViewBinding { + @NonNull + private final FrameLayout rootView; + + @NonNull + public final ImageView btnSetBgColor; + + @NonNull + public final LinearLayout fontSizeSelector; + + @NonNull + public final ImageView ivAlertIcon; + + @NonNull + public final ImageView ivBgBlue; + + @NonNull + public final ImageView ivBgBlueSelect; + + @NonNull + public final ImageView ivBgGreen; + + @NonNull + public final ImageView ivBgGreenSelect; + + @NonNull + public final ImageView ivBgRed; + + @NonNull + public final ImageView ivBgRedSelect; + + @NonNull + public final ImageView ivBgWhite; + + @NonNull + public final ImageView ivBgWhiteSelect; + + @NonNull + public final ImageView ivBgYellow; + + @NonNull + public final ImageView ivBgYellowSelect; + + @NonNull + public final ImageView ivLargeSelect; + + @NonNull + public final ImageView ivMediumSelect; + + @NonNull + public final ImageView ivSmallSelect; + + @NonNull + public final ImageView ivSuperSelect; + + @NonNull + public final FrameLayout llFontLarge; + + @NonNull + public final FrameLayout llFontNormal; + + @NonNull + public final FrameLayout llFontSmall; + + @NonNull + public final FrameLayout llFontSuper; + + @NonNull + public final LinearLayout noteBgColorSelector; + + @NonNull + public final LinearLayout noteEditList; + + @NonNull + public final NoteEditText noteEditView; + + @NonNull + public final LinearLayout noteTitle; + + @NonNull + public final LinearLayout svNoteEdit; + + @NonNull + public final TextView textNum; + + @NonNull + public final TextView tvAlertDate; + + @NonNull + public final TextView tvModifiedDate; + + private NoteEditBinding(@NonNull FrameLayout rootView, @NonNull ImageView btnSetBgColor, + @NonNull LinearLayout fontSizeSelector, @NonNull ImageView ivAlertIcon, + @NonNull ImageView ivBgBlue, @NonNull ImageView ivBgBlueSelect, @NonNull ImageView ivBgGreen, + @NonNull ImageView ivBgGreenSelect, @NonNull ImageView ivBgRed, + @NonNull ImageView ivBgRedSelect, @NonNull ImageView ivBgWhite, + @NonNull ImageView ivBgWhiteSelect, @NonNull ImageView ivBgYellow, + @NonNull ImageView ivBgYellowSelect, @NonNull ImageView ivLargeSelect, + @NonNull ImageView ivMediumSelect, @NonNull ImageView ivSmallSelect, + @NonNull ImageView ivSuperSelect, @NonNull FrameLayout llFontLarge, + @NonNull FrameLayout llFontNormal, @NonNull FrameLayout llFontSmall, + @NonNull FrameLayout llFontSuper, @NonNull LinearLayout noteBgColorSelector, + @NonNull LinearLayout noteEditList, @NonNull NoteEditText noteEditView, + @NonNull LinearLayout noteTitle, @NonNull LinearLayout svNoteEdit, @NonNull TextView textNum, + @NonNull TextView tvAlertDate, @NonNull TextView tvModifiedDate) { + this.rootView = rootView; + this.btnSetBgColor = btnSetBgColor; + this.fontSizeSelector = fontSizeSelector; + this.ivAlertIcon = ivAlertIcon; + this.ivBgBlue = ivBgBlue; + this.ivBgBlueSelect = ivBgBlueSelect; + this.ivBgGreen = ivBgGreen; + this.ivBgGreenSelect = ivBgGreenSelect; + this.ivBgRed = ivBgRed; + this.ivBgRedSelect = ivBgRedSelect; + this.ivBgWhite = ivBgWhite; + this.ivBgWhiteSelect = ivBgWhiteSelect; + this.ivBgYellow = ivBgYellow; + this.ivBgYellowSelect = ivBgYellowSelect; + this.ivLargeSelect = ivLargeSelect; + this.ivMediumSelect = ivMediumSelect; + this.ivSmallSelect = ivSmallSelect; + this.ivSuperSelect = ivSuperSelect; + this.llFontLarge = llFontLarge; + this.llFontNormal = llFontNormal; + this.llFontSmall = llFontSmall; + this.llFontSuper = llFontSuper; + this.noteBgColorSelector = noteBgColorSelector; + this.noteEditList = noteEditList; + this.noteEditView = noteEditView; + this.noteTitle = noteTitle; + this.svNoteEdit = svNoteEdit; + this.textNum = textNum; + this.tvAlertDate = tvAlertDate; + this.tvModifiedDate = tvModifiedDate; + } + + @Override + @NonNull + public FrameLayout getRoot() { + return rootView; + } + + @NonNull + public static NoteEditBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static NoteEditBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.note_edit, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static NoteEditBinding bind(@NonNull View rootView) { + // The body of this method is generated in a way you would not otherwise write. + // This is done to optimize the compiled bytecode for size and performance. + int id; + missingId: { + id = R.id.btn_set_bg_color; + ImageView btnSetBgColor = ViewBindings.findChildViewById(rootView, id); + if (btnSetBgColor == null) { + break missingId; + } + + id = R.id.font_size_selector; + LinearLayout fontSizeSelector = ViewBindings.findChildViewById(rootView, id); + if (fontSizeSelector == null) { + break missingId; + } + + id = R.id.iv_alert_icon; + ImageView ivAlertIcon = ViewBindings.findChildViewById(rootView, id); + if (ivAlertIcon == null) { + break missingId; + } + + id = R.id.iv_bg_blue; + ImageView ivBgBlue = ViewBindings.findChildViewById(rootView, id); + if (ivBgBlue == null) { + break missingId; + } + + id = R.id.iv_bg_blue_select; + ImageView ivBgBlueSelect = ViewBindings.findChildViewById(rootView, id); + if (ivBgBlueSelect == null) { + break missingId; + } + + id = R.id.iv_bg_green; + ImageView ivBgGreen = ViewBindings.findChildViewById(rootView, id); + if (ivBgGreen == null) { + break missingId; + } + + id = R.id.iv_bg_green_select; + ImageView ivBgGreenSelect = ViewBindings.findChildViewById(rootView, id); + if (ivBgGreenSelect == null) { + break missingId; + } + + id = R.id.iv_bg_red; + ImageView ivBgRed = ViewBindings.findChildViewById(rootView, id); + if (ivBgRed == null) { + break missingId; + } + + id = R.id.iv_bg_red_select; + ImageView ivBgRedSelect = ViewBindings.findChildViewById(rootView, id); + if (ivBgRedSelect == null) { + break missingId; + } + + id = R.id.iv_bg_white; + ImageView ivBgWhite = ViewBindings.findChildViewById(rootView, id); + if (ivBgWhite == null) { + break missingId; + } + + id = R.id.iv_bg_white_select; + ImageView ivBgWhiteSelect = ViewBindings.findChildViewById(rootView, id); + if (ivBgWhiteSelect == null) { + break missingId; + } + + id = R.id.iv_bg_yellow; + ImageView ivBgYellow = ViewBindings.findChildViewById(rootView, id); + if (ivBgYellow == null) { + break missingId; + } + + id = R.id.iv_bg_yellow_select; + ImageView ivBgYellowSelect = ViewBindings.findChildViewById(rootView, id); + if (ivBgYellowSelect == null) { + break missingId; + } + + id = R.id.iv_large_select; + ImageView ivLargeSelect = ViewBindings.findChildViewById(rootView, id); + if (ivLargeSelect == null) { + break missingId; + } + + id = R.id.iv_medium_select; + ImageView ivMediumSelect = ViewBindings.findChildViewById(rootView, id); + if (ivMediumSelect == null) { + break missingId; + } + + id = R.id.iv_small_select; + ImageView ivSmallSelect = ViewBindings.findChildViewById(rootView, id); + if (ivSmallSelect == null) { + break missingId; + } + + id = R.id.iv_super_select; + ImageView ivSuperSelect = ViewBindings.findChildViewById(rootView, id); + if (ivSuperSelect == null) { + break missingId; + } + + id = R.id.ll_font_large; + FrameLayout llFontLarge = ViewBindings.findChildViewById(rootView, id); + if (llFontLarge == null) { + break missingId; + } + + id = R.id.ll_font_normal; + FrameLayout llFontNormal = ViewBindings.findChildViewById(rootView, id); + if (llFontNormal == null) { + break missingId; + } + + id = R.id.ll_font_small; + FrameLayout llFontSmall = ViewBindings.findChildViewById(rootView, id); + if (llFontSmall == null) { + break missingId; + } + + id = R.id.ll_font_super; + FrameLayout llFontSuper = ViewBindings.findChildViewById(rootView, id); + if (llFontSuper == null) { + break missingId; + } + + id = R.id.note_bg_color_selector; + LinearLayout noteBgColorSelector = ViewBindings.findChildViewById(rootView, id); + if (noteBgColorSelector == null) { + break missingId; + } + + id = R.id.note_edit_list; + LinearLayout noteEditList = ViewBindings.findChildViewById(rootView, id); + if (noteEditList == null) { + break missingId; + } + + id = R.id.note_edit_view; + NoteEditText noteEditView = ViewBindings.findChildViewById(rootView, id); + if (noteEditView == null) { + break missingId; + } + + id = R.id.note_title; + LinearLayout noteTitle = ViewBindings.findChildViewById(rootView, id); + if (noteTitle == null) { + break missingId; + } + + id = R.id.sv_note_edit; + LinearLayout svNoteEdit = ViewBindings.findChildViewById(rootView, id); + if (svNoteEdit == null) { + break missingId; + } + + id = R.id.text_num; + TextView textNum = ViewBindings.findChildViewById(rootView, id); + if (textNum == null) { + break missingId; + } + + id = R.id.tv_alert_date; + TextView tvAlertDate = ViewBindings.findChildViewById(rootView, id); + if (tvAlertDate == null) { + break missingId; + } + + id = R.id.tv_modified_date; + TextView tvModifiedDate = ViewBindings.findChildViewById(rootView, id); + if (tvModifiedDate == null) { + break missingId; + } + + return new NoteEditBinding((FrameLayout) rootView, btnSetBgColor, fontSizeSelector, + ivAlertIcon, ivBgBlue, ivBgBlueSelect, ivBgGreen, ivBgGreenSelect, ivBgRed, ivBgRedSelect, + ivBgWhite, ivBgWhiteSelect, ivBgYellow, ivBgYellowSelect, ivLargeSelect, ivMediumSelect, + ivSmallSelect, ivSuperSelect, llFontLarge, llFontNormal, llFontSmall, llFontSuper, + noteBgColorSelector, noteEditList, noteEditView, noteTitle, svNoteEdit, textNum, + tvAlertDate, tvModifiedDate); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteEditListItemBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteEditListItemBinding.java new file mode 100644 index 00000000..a9385959 --- /dev/null +++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteEditListItemBinding.java @@ -0,0 +1,80 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.support.annotation.NonNull; +import android.support.annotation.Nullable; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.viewbinding.ViewBinding; +import android.viewbinding.ViewBindings; +import android.widget.CheckBox; +import android.widget.LinearLayout; +import java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; +import net.micode.notes.ui.NoteEditText; + +public final class NoteEditListItemBinding implements ViewBinding { + @NonNull + private final LinearLayout rootView; + + @NonNull + public final CheckBox cbEditItem; + + @NonNull + public final NoteEditText etEditText; + + private NoteEditListItemBinding(@NonNull LinearLayout rootView, @NonNull CheckBox cbEditItem, + @NonNull NoteEditText etEditText) { + this.rootView = rootView; + this.cbEditItem = cbEditItem; + this.etEditText = etEditText; + } + + @Override + @NonNull + public LinearLayout getRoot() { + return rootView; + } + + @NonNull + public static NoteEditListItemBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static NoteEditListItemBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.note_edit_list_item, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static NoteEditListItemBinding bind(@NonNull View rootView) { + // The body of this method is generated in a way you would not otherwise write. + // This is done to optimize the compiled bytecode for size and performance. + int id; + missingId: { + id = R.id.cb_edit_item; + CheckBox cbEditItem = ViewBindings.findChildViewById(rootView, id); + if (cbEditItem == null) { + break missingId; + } + + id = R.id.et_edit_text; + NoteEditText etEditText = ViewBindings.findChildViewById(rootView, id); + if (etEditText == null) { + break missingId; + } + + return new NoteEditListItemBinding((LinearLayout) rootView, cbEditItem, etEditText); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteItemBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteItemBinding.java new file mode 100644 index 00000000..592f6059 --- /dev/null +++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteItemBinding.java @@ -0,0 +1,119 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.support.annotation.NonNull; +import android.support.annotation.Nullable; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.viewbinding.ViewBinding; +import android.viewbinding.ViewBindings; +import android.widget.CheckBox; +import android.widget.FrameLayout; +import android.widget.ImageView; +import android.widget.TextView; +import java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; + +public final class NoteItemBinding implements ViewBinding { + @NonNull + private final FrameLayout rootView; + + @NonNull + public final CheckBox checkbox; + + @NonNull + public final ImageView ivAlertIcon; + + @NonNull + public final FrameLayout noteItem; + + @NonNull + public final TextView tvName; + + @NonNull + public final TextView tvTime; + + @NonNull + public final TextView tvTitle; + + private NoteItemBinding(@NonNull FrameLayout rootView, @NonNull CheckBox checkbox, + @NonNull ImageView ivAlertIcon, @NonNull FrameLayout noteItem, @NonNull TextView tvName, + @NonNull TextView tvTime, @NonNull TextView tvTitle) { + this.rootView = rootView; + this.checkbox = checkbox; + this.ivAlertIcon = ivAlertIcon; + this.noteItem = noteItem; + this.tvName = tvName; + this.tvTime = tvTime; + this.tvTitle = tvTitle; + } + + @Override + @NonNull + public FrameLayout getRoot() { + return rootView; + } + + @NonNull + public static NoteItemBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static NoteItemBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.note_item, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static NoteItemBinding bind(@NonNull View rootView) { + // The body of this method is generated in a way you would not otherwise write. + // This is done to optimize the compiled bytecode for size and performance. + int id; + missingId: { + id = android.R.id.checkbox; + CheckBox checkbox = ViewBindings.findChildViewById(rootView, id); + if (checkbox == null) { + break missingId; + } + + id = R.id.iv_alert_icon; + ImageView ivAlertIcon = ViewBindings.findChildViewById(rootView, id); + if (ivAlertIcon == null) { + break missingId; + } + + FrameLayout noteItem = (FrameLayout) rootView; + + id = R.id.tv_name; + TextView tvName = ViewBindings.findChildViewById(rootView, id); + if (tvName == null) { + break missingId; + } + + id = R.id.tv_time; + TextView tvTime = ViewBindings.findChildViewById(rootView, id); + if (tvTime == null) { + break missingId; + } + + id = R.id.tv_title; + TextView tvTitle = ViewBindings.findChildViewById(rootView, id); + if (tvTitle == null) { + break missingId; + } + + return new NoteItemBinding((FrameLayout) rootView, checkbox, ivAlertIcon, noteItem, tvName, + tvTime, tvTitle); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListBinding.java new file mode 100644 index 00000000..3fbe4104 --- /dev/null +++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListBinding.java @@ -0,0 +1,91 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.support.annotation.NonNull; +import android.support.annotation.Nullable; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.viewbinding.ViewBinding; +import android.viewbinding.ViewBindings; +import android.widget.Button; +import android.widget.FrameLayout; +import android.widget.ListView; +import android.widget.TextView; +import java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; + +public final class NoteListBinding implements ViewBinding { + @NonNull + private final FrameLayout rootView; + + @NonNull + public final Button btnNewNote; + + @NonNull + public final ListView notesList; + + @NonNull + public final TextView tvTitleBar; + + private NoteListBinding(@NonNull FrameLayout rootView, @NonNull Button btnNewNote, + @NonNull ListView notesList, @NonNull TextView tvTitleBar) { + this.rootView = rootView; + this.btnNewNote = btnNewNote; + this.notesList = notesList; + this.tvTitleBar = tvTitleBar; + } + + @Override + @NonNull + public FrameLayout getRoot() { + return rootView; + } + + @NonNull + public static NoteListBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static NoteListBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.note_list, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static NoteListBinding bind(@NonNull View rootView) { + // The body of this method is generated in a way you would not otherwise write. + // This is done to optimize the compiled bytecode for size and performance. + int id; + missingId: { + id = R.id.btn_new_note; + Button btnNewNote = ViewBindings.findChildViewById(rootView, id); + if (btnNewNote == null) { + break missingId; + } + + id = R.id.notes_list; + ListView notesList = ViewBindings.findChildViewById(rootView, id); + if (notesList == null) { + break missingId; + } + + id = R.id.tv_title_bar; + TextView tvTitleBar = ViewBindings.findChildViewById(rootView, id); + if (tvTitleBar == null) { + break missingId; + } + + return new NoteListBinding((FrameLayout) rootView, btnNewNote, notesList, tvTitleBar); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListDropdownMenuBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListDropdownMenuBinding.java new file mode 100644 index 00000000..c20da817 --- /dev/null +++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListDropdownMenuBinding.java @@ -0,0 +1,75 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.support.annotation.NonNull; +import android.support.annotation.Nullable; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.viewbinding.ViewBinding; +import android.viewbinding.ViewBindings; +import android.widget.Button; +import android.widget.LinearLayout; +import java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; + +public final class NoteListDropdownMenuBinding implements ViewBinding { + @NonNull + private final LinearLayout rootView; + + @NonNull + public final LinearLayout navigationBar; + + @NonNull + public final Button selectionMenu; + + private NoteListDropdownMenuBinding(@NonNull LinearLayout rootView, + @NonNull LinearLayout navigationBar, @NonNull Button selectionMenu) { + this.rootView = rootView; + this.navigationBar = navigationBar; + this.selectionMenu = selectionMenu; + } + + @Override + @NonNull + public LinearLayout getRoot() { + return rootView; + } + + @NonNull + public static NoteListDropdownMenuBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static NoteListDropdownMenuBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.note_list_dropdown_menu, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static NoteListDropdownMenuBinding bind(@NonNull View rootView) { + // The body of this method is generated in a way you would not otherwise write. + // This is done to optimize the compiled bytecode for size and performance. + int id; + missingId: { + LinearLayout navigationBar = (LinearLayout) rootView; + + id = R.id.selection_menu; + Button selectionMenu = ViewBindings.findChildViewById(rootView, id); + if (selectionMenu == null) { + break missingId; + } + + return new NoteListDropdownMenuBinding((LinearLayout) rootView, navigationBar, selectionMenu); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListFooterBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListFooterBinding.java new file mode 100644 index 00000000..848cf814 --- /dev/null +++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/NoteListFooterBinding.java @@ -0,0 +1,51 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.support.annotation.NonNull; +import android.support.annotation.Nullable; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.viewbinding.ViewBinding; +import java.lang.NullPointerException; +import java.lang.Override; +import net.micode.notes.R; + +public final class NoteListFooterBinding implements ViewBinding { + @NonNull + private final View rootView; + + private NoteListFooterBinding(@NonNull View rootView) { + this.rootView = rootView; + } + + @Override + @NonNull + public View getRoot() { + return rootView; + } + + @NonNull + public static NoteListFooterBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static NoteListFooterBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.note_list_footer, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static NoteListFooterBinding bind(@NonNull View rootView) { + if (rootView == null) { + throw new NullPointerException("rootView"); + } + + return new NoteListFooterBinding(rootView); + } +} diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/SettingsHeaderBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/SettingsHeaderBinding.java new file mode 100644 index 00000000..2da731b1 --- /dev/null +++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/SettingsHeaderBinding.java @@ -0,0 +1,81 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.support.annotation.NonNull; +import android.support.annotation.Nullable; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.viewbinding.ViewBinding; +import android.viewbinding.ViewBindings; +import android.widget.Button; +import android.widget.LinearLayout; +import android.widget.TextView; +import java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; + +public final class SettingsHeaderBinding implements ViewBinding { + @NonNull + private final LinearLayout rootView; + + @NonNull + public final TextView prefenereceSyncStatusTextview; + + @NonNull + public final Button preferenceSyncButton; + + private SettingsHeaderBinding(@NonNull LinearLayout rootView, + @NonNull TextView prefenereceSyncStatusTextview, @NonNull Button preferenceSyncButton) { + this.rootView = rootView; + this.prefenereceSyncStatusTextview = prefenereceSyncStatusTextview; + this.preferenceSyncButton = preferenceSyncButton; + } + + @Override + @NonNull + public LinearLayout getRoot() { + return rootView; + } + + @NonNull + public static SettingsHeaderBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static SettingsHeaderBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.settings_header, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static SettingsHeaderBinding bind(@NonNull View rootView) { + // The body of this method is generated in a way you would not otherwise write. + // This is done to optimize the compiled bytecode for size and performance. + int id; + missingId: { + id = R.id.prefenerece_sync_status_textview; + TextView prefenereceSyncStatusTextview = ViewBindings.findChildViewById(rootView, id); + if (prefenereceSyncStatusTextview == null) { + break missingId; + } + + id = R.id.preference_sync_button; + Button preferenceSyncButton = ViewBindings.findChildViewById(rootView, id); + if (preferenceSyncButton == null) { + break missingId; + } + + return new SettingsHeaderBinding((LinearLayout) rootView, prefenereceSyncStatusTextview, + preferenceSyncButton); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/Widget2xBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/Widget2xBinding.java new file mode 100644 index 00000000..85e7d093 --- /dev/null +++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/Widget2xBinding.java @@ -0,0 +1,80 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.support.annotation.NonNull; +import android.support.annotation.Nullable; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.viewbinding.ViewBinding; +import android.viewbinding.ViewBindings; +import android.widget.FrameLayout; +import android.widget.ImageView; +import android.widget.TextView; +import java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; + +public final class Widget2xBinding implements ViewBinding { + @NonNull + private final FrameLayout rootView; + + @NonNull + public final ImageView widgetBgImage; + + @NonNull + public final TextView widgetText; + + private Widget2xBinding(@NonNull FrameLayout rootView, @NonNull ImageView widgetBgImage, + @NonNull TextView widgetText) { + this.rootView = rootView; + this.widgetBgImage = widgetBgImage; + this.widgetText = widgetText; + } + + @Override + @NonNull + public FrameLayout getRoot() { + return rootView; + } + + @NonNull + public static Widget2xBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static Widget2xBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.widget_2x, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static Widget2xBinding bind(@NonNull View rootView) { + // The body of this method is generated in a way you would not otherwise write. + // This is done to optimize the compiled bytecode for size and performance. + int id; + missingId: { + id = R.id.widget_bg_image; + ImageView widgetBgImage = ViewBindings.findChildViewById(rootView, id); + if (widgetBgImage == null) { + break missingId; + } + + id = R.id.widget_text; + TextView widgetText = ViewBindings.findChildViewById(rootView, id); + if (widgetText == null) { + break missingId; + } + + return new Widget2xBinding((FrameLayout) rootView, widgetBgImage, widgetText); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} diff --git a/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/Widget4xBinding.java b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/Widget4xBinding.java new file mode 100644 index 00000000..10208e00 --- /dev/null +++ b/src/app/build/generated/data_binding_base_class_source_out/debug/out/net/micode/notes/databinding/Widget4xBinding.java @@ -0,0 +1,80 @@ +// Generated by view binder compiler. Do not edit! +package net.micode.notes.databinding; + +import android.support.annotation.NonNull; +import android.support.annotation.Nullable; +import android.view.LayoutInflater; +import android.view.View; +import android.view.ViewGroup; +import android.viewbinding.ViewBinding; +import android.viewbinding.ViewBindings; +import android.widget.FrameLayout; +import android.widget.ImageView; +import android.widget.TextView; +import java.lang.NullPointerException; +import java.lang.Override; +import java.lang.String; +import net.micode.notes.R; + +public final class Widget4xBinding implements ViewBinding { + @NonNull + private final FrameLayout rootView; + + @NonNull + public final ImageView widgetBgImage; + + @NonNull + public final TextView widgetText; + + private Widget4xBinding(@NonNull FrameLayout rootView, @NonNull ImageView widgetBgImage, + @NonNull TextView widgetText) { + this.rootView = rootView; + this.widgetBgImage = widgetBgImage; + this.widgetText = widgetText; + } + + @Override + @NonNull + public FrameLayout getRoot() { + return rootView; + } + + @NonNull + public static Widget4xBinding inflate(@NonNull LayoutInflater inflater) { + return inflate(inflater, null, false); + } + + @NonNull + public static Widget4xBinding inflate(@NonNull LayoutInflater inflater, + @Nullable ViewGroup parent, boolean attachToParent) { + View root = inflater.inflate(R.layout.widget_4x, parent, false); + if (attachToParent) { + parent.addView(root); + } + return bind(root); + } + + @NonNull + public static Widget4xBinding bind(@NonNull View rootView) { + // The body of this method is generated in a way you would not otherwise write. + // This is done to optimize the compiled bytecode for size and performance. + int id; + missingId: { + id = R.id.widget_bg_image; + ImageView widgetBgImage = ViewBindings.findChildViewById(rootView, id); + if (widgetBgImage == null) { + break missingId; + } + + id = R.id.widget_text; + TextView widgetText = ViewBindings.findChildViewById(rootView, id); + if (widgetText == null) { + break missingId; + } + + return new Widget4xBinding((FrameLayout) rootView, widgetBgImage, widgetText); + } + String missingId = rootView.getResources().getResourceName(id); + throw new NullPointerException("Missing required view with ID: ".concat(missingId)); + } +} diff --git a/src/app/build/intermediates/apk/debug/app-debug.apk b/src/app/build/intermediates/apk/debug/app-debug.apk index 1d185079..f55cd150 100644 Binary files a/src/app/build/intermediates/apk/debug/app-debug.apk and b/src/app/build/intermediates/apk/debug/app-debug.apk differ diff --git a/src/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar b/src/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar index 99088dab..18cc6495 100644 Binary files a/src/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar and b/src/app/build/intermediates/compile_and_runtime_not_namespaced_r_class_jar/debug/R.jar differ diff --git a/src/app/build/intermediates/compile_app_classes_jar/debug/classes.jar b/src/app/build/intermediates/compile_app_classes_jar/debug/classes.jar index 60012034..3a4ee780 100644 Binary files a/src/app/build/intermediates/compile_app_classes_jar/debug/classes.jar and b/src/app/build/intermediates/compile_app_classes_jar/debug/classes.jar differ diff --git a/src/app/build/intermediates/data_binding_base_class_log_artifact/debug/out/net.micode.notes-binding_classes.json b/src/app/build/intermediates/data_binding_base_class_log_artifact/debug/out/net.micode.notes-binding_classes.json new file mode 100644 index 00000000..eee12b00 Binary files /dev/null and b/src/app/build/intermediates/data_binding_base_class_log_artifact/debug/out/net.micode.notes-binding_classes.json differ diff --git a/src/app/build/intermediates/data_binding_base_class_log_artifact/debugAndroidTest/out/net.micode.notes.test-binding_classes.json b/src/app/build/intermediates/data_binding_base_class_log_artifact/debugAndroidTest/out/net.micode.notes.test-binding_classes.json new file mode 100644 index 00000000..2bea4465 Binary files /dev/null and b/src/app/build/intermediates/data_binding_base_class_log_artifact/debugAndroidTest/out/net.micode.notes.test-binding_classes.json differ diff --git a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/account_dialog_title-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/account_dialog_title-layout.xml new file mode 100644 index 00000000..a55380d0 --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/account_dialog_title-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/activity_splash-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/activity_splash-layout.xml new file mode 100644 index 00000000..3abc1c22 --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/activity_splash-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/add_account_text-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/add_account_text-layout.xml new file mode 100644 index 00000000..578a0ece --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/add_account_text-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/datetime_picker-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/datetime_picker-layout.xml new file mode 100644 index 00000000..49537f1c --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/datetime_picker-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/dialog_edit_text-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/dialog_edit_text-layout.xml new file mode 100644 index 00000000..0a219981 --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/dialog_edit_text-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/folder_list_item-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/folder_list_item-layout.xml new file mode 100644 index 00000000..34472de3 --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/folder_list_item-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_edit-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_edit-layout.xml new file mode 100644 index 00000000..6494f450 --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_edit-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_edit_list_item-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_edit_list_item-layout.xml new file mode 100644 index 00000000..eed3afcd --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_edit_list_item-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_item-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_item-layout.xml new file mode 100644 index 00000000..8f506645 --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_item-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_list-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_list-layout.xml new file mode 100644 index 00000000..d38ebb07 --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_list-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_list_dropdown_menu-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_list_dropdown_menu-layout.xml new file mode 100644 index 00000000..e29bc0b4 --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_list_dropdown_menu-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_list_footer-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_list_footer-layout.xml new file mode 100644 index 00000000..54657377 --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/note_list_footer-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/settings_header-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/settings_header-layout.xml new file mode 100644 index 00000000..114055f0 --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/settings_header-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/widget_2x-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/widget_2x-layout.xml new file mode 100644 index 00000000..3b1b0b6a --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/widget_2x-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/widget_4x-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/widget_4x-layout.xml new file mode 100644 index 00000000..fd60bdcb --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_merge/debug/out/widget_4x-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/account_dialog_title-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/account_dialog_title-layout.xml new file mode 100644 index 00000000..a55380d0 --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/account_dialog_title-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_splash-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_splash-layout.xml new file mode 100644 index 00000000..3abc1c22 --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/activity_splash-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/add_account_text-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/add_account_text-layout.xml new file mode 100644 index 00000000..578a0ece --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/add_account_text-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/datetime_picker-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/datetime_picker-layout.xml new file mode 100644 index 00000000..49537f1c --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/datetime_picker-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/dialog_edit_text-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/dialog_edit_text-layout.xml new file mode 100644 index 00000000..0a219981 --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/dialog_edit_text-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/folder_list_item-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/folder_list_item-layout.xml new file mode 100644 index 00000000..34472de3 --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/folder_list_item-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_edit-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_edit-layout.xml new file mode 100644 index 00000000..6494f450 --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_edit-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_edit_list_item-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_edit_list_item-layout.xml new file mode 100644 index 00000000..eed3afcd --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_edit_list_item-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_item-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_item-layout.xml new file mode 100644 index 00000000..8f506645 --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_item-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list-layout.xml new file mode 100644 index 00000000..d38ebb07 --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list_dropdown_menu-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list_dropdown_menu-layout.xml new file mode 100644 index 00000000..e29bc0b4 --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list_dropdown_menu-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list_footer-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list_footer-layout.xml new file mode 100644 index 00000000..54657377 --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/note_list_footer-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/settings_header-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/settings_header-layout.xml new file mode 100644 index 00000000..114055f0 --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/settings_header-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/widget_2x-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/widget_2x-layout.xml new file mode 100644 index 00000000..3b1b0b6a --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/widget_2x-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/widget_4x-layout.xml b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/widget_4x-layout.xml new file mode 100644 index 00000000..fd60bdcb --- /dev/null +++ b/src/app/build/intermediates/data_binding_layout_info_type_package/debug/out/widget_4x-layout.xml @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_0/graph.bin b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_0/graph.bin new file mode 100644 index 00000000..601f245f Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_0/graph.bin differ diff --git a/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_1/graph.bin b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_1/graph.bin new file mode 100644 index 00000000..601f245f Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_1/graph.bin differ diff --git a/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_2/graph.bin b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_2/graph.bin new file mode 100644 index 00000000..601f245f Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_2/graph.bin differ diff --git a/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_3/graph.bin b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_3/graph.bin new file mode 100644 index 00000000..601f245f Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_3/graph.bin differ diff --git a/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_4/graph.bin b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_4/graph.bin new file mode 100644 index 00000000..601f245f Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_4/graph.bin differ diff --git a/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_5/graph.bin b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_5/graph.bin new file mode 100644 index 00000000..601f245f Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_5/graph.bin differ diff --git a/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_6/graph.bin b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_6/graph.bin new file mode 100644 index 00000000..601f245f Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_6/graph.bin differ diff --git a/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_7/graph.bin b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_7/graph.bin new file mode 100644 index 00000000..601f245f Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debug/out/currentProject/jar_44c9c494fb49cbf7d7de4ac6738d371fd8bbc8d1494c7a79983ba440193e437b_bucket_7/graph.bin differ diff --git a/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_0/graph.bin b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_0/graph.bin new file mode 100644 index 00000000..601f245f Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_0/graph.bin differ diff --git a/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_1/graph.bin b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_1/graph.bin new file mode 100644 index 00000000..601f245f Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_1/graph.bin differ diff --git a/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_2/graph.bin b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_2/graph.bin new file mode 100644 index 00000000..601f245f Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_2/graph.bin differ diff --git a/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_3/graph.bin b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_3/graph.bin new file mode 100644 index 00000000..601f245f Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_3/graph.bin differ diff --git a/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_4/graph.bin b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_4/graph.bin new file mode 100644 index 00000000..601f245f Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_4/graph.bin differ diff --git a/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_5/graph.bin b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_5/graph.bin new file mode 100644 index 00000000..601f245f Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_5/graph.bin differ diff --git a/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_6/graph.bin b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_6/graph.bin new file mode 100644 index 00000000..601f245f Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_6/graph.bin differ diff --git a/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_7/graph.bin b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_7/graph.bin new file mode 100644 index 00000000..601f245f Binary files /dev/null and b/src/app/build/intermediates/desugar_graph/debugAndroidTest/out/currentProject/jar_7d2b1270ac842b42312a08fb2595e7862129105ea6848fae9b5f68a61c228a30_bucket_7/graph.bin differ diff --git a/src/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex b/src/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex new file mode 100644 index 00000000..a207e0b5 Binary files /dev/null and b/src/app/build/intermediates/dex/debug/mergeExtDexDebug/classes.dex differ diff --git a/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex new file mode 100644 index 00000000..977c376c Binary files /dev/null and b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/0/classes.dex differ diff --git a/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/11/classes.dex b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/11/classes.dex new file mode 100644 index 00000000..fd96e95e Binary files /dev/null and b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/11/classes.dex differ diff --git a/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/12/classes.dex b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/12/classes.dex new file mode 100644 index 00000000..a2499d0b Binary files /dev/null and b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/12/classes.dex differ diff --git a/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/13/classes.dex b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/13/classes.dex new file mode 100644 index 00000000..75e65910 Binary files /dev/null and b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/13/classes.dex differ diff --git a/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/15/classes.dex b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/15/classes.dex new file mode 100644 index 00000000..06e297c9 Binary files /dev/null and b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/15/classes.dex differ diff --git a/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/4/classes.dex b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/4/classes.dex new file mode 100644 index 00000000..1bd66248 Binary files /dev/null and b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/4/classes.dex differ diff --git a/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex new file mode 100644 index 00000000..020d14b6 Binary files /dev/null and b/src/app/build/intermediates/dex/debug/mergeProjectDexDebug/5/classes.dex differ diff --git a/src/app/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/0/classes.dex b/src/app/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/0/classes.dex new file mode 100644 index 00000000..b28650c1 Binary files /dev/null and b/src/app/build/intermediates/dex/debugAndroidTest/mergeProjectDexDebugAndroidTest/0/classes.dex differ diff --git a/src/app/build/intermediates/dex_archive_input_jar_hashes/debug/out b/src/app/build/intermediates/dex_archive_input_jar_hashes/debug/out index b298b232..21bf69b2 100644 Binary files a/src/app/build/intermediates/dex_archive_input_jar_hashes/debug/out and b/src/app/build/intermediates/dex_archive_input_jar_hashes/debug/out differ diff --git a/src/app/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/out b/src/app/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/out index 585d66c7..c2f6f291 100644 Binary files a/src/app/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/out and b/src/app/build/intermediates/dex_archive_input_jar_hashes/debugAndroidTest/out differ diff --git a/src/app/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json b/src/app/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json new file mode 100644 index 00000000..d897786b Binary files /dev/null and b/src/app/build/intermediates/incremental/dataBindingGenBaseClassesDebug/base_builder_log.json differ diff --git a/src/app/build/intermediates/incremental/dataBindingGenBaseClassesDebugAndroidTest/base_builder_log.json b/src/app/build/intermediates/incremental/dataBindingGenBaseClassesDebugAndroidTest/base_builder_log.json new file mode 100644 index 00000000..dca24b26 Binary files /dev/null and b/src/app/build/intermediates/incremental/dataBindingGenBaseClassesDebugAndroidTest/base_builder_log.json differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/1mH4UP_25Z2UDwm9_E8+fnKEirs= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/1mH4UP_25Z2UDwm9_E8+fnKEirs= new file mode 100644 index 00000000..3402ba54 Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/1mH4UP_25Z2UDwm9_E8+fnKEirs= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/1nkyePFa9NOckvvknlPBHNfhQ7Q= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/1nkyePFa9NOckvvknlPBHNfhQ7Q= new file mode 100644 index 00000000..54053705 Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/1nkyePFa9NOckvvknlPBHNfhQ7Q= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2_k+xieN3Zm2ReeIYOuBYaOTbGM= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2_k+xieN3Zm2ReeIYOuBYaOTbGM= new file mode 100644 index 00000000..810547b8 Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2_k+xieN3Zm2ReeIYOuBYaOTbGM= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2qnbC19pIulFO32Ofa1ejv6BFD4= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2qnbC19pIulFO32Ofa1ejv6BFD4= new file mode 100644 index 00000000..85e55458 Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/2qnbC19pIulFO32Ofa1ejv6BFD4= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/35Ag1gqzrhbBHWVzpCsZF6xgBs8= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/35Ag1gqzrhbBHWVzpCsZF6xgBs8= new file mode 100644 index 00000000..b322a604 Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/35Ag1gqzrhbBHWVzpCsZF6xgBs8= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/3OyN3TgyZi5N1sWV2uLrAm9_7No= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/3OyN3TgyZi5N1sWV2uLrAm9_7No= new file mode 100644 index 00000000..5137d2ea Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/3OyN3TgyZi5N1sWV2uLrAm9_7No= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/5h3v+ReqW3f9mk4lA9nYylUExTQ= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/5h3v+ReqW3f9mk4lA9nYylUExTQ= new file mode 100644 index 00000000..a20288b3 Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/5h3v+ReqW3f9mk4lA9nYylUExTQ= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/8HWiQSIjSJYk+yT_xngcgNovHIw= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/8HWiQSIjSJYk+yT_xngcgNovHIw= new file mode 100644 index 00000000..fdab8359 Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/8HWiQSIjSJYk+yT_xngcgNovHIw= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/95xqPfG2+27PMgrBbclG7yKXCaM= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/95xqPfG2+27PMgrBbclG7yKXCaM= new file mode 100644 index 00000000..172691b3 Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/95xqPfG2+27PMgrBbclG7yKXCaM= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/CRRm6ImuAgp2A8BmFNmBvJcOdSw= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/CRRm6ImuAgp2A8BmFNmBvJcOdSw= new file mode 100644 index 00000000..2b28058f Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/CRRm6ImuAgp2A8BmFNmBvJcOdSw= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/F3UA3NDokAHUq6GWVWvCHMBOcEY= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/F3UA3NDokAHUq6GWVWvCHMBOcEY= new file mode 100644 index 00000000..e40b65dd Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/F3UA3NDokAHUq6GWVWvCHMBOcEY= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/GjxvkfeeRXytA4RtgHiskh58JZ8= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/GjxvkfeeRXytA4RtgHiskh58JZ8= new file mode 100644 index 00000000..83cf3b71 Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/GjxvkfeeRXytA4RtgHiskh58JZ8= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/HALpD8Xa0vwcqpkszhAW4FScUxU= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/HALpD8Xa0vwcqpkszhAW4FScUxU= new file mode 100644 index 00000000..f27829e1 Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/HALpD8Xa0vwcqpkszhAW4FScUxU= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/HFzS_QIYlvqLfTU+AlOFJOXtJbw= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/HFzS_QIYlvqLfTU+AlOFJOXtJbw= new file mode 100644 index 00000000..3aad90c5 Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/HFzS_QIYlvqLfTU+AlOFJOXtJbw= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Izd8+e2EVEm3SRKDUDPobxkDnKE= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Izd8+e2EVEm3SRKDUDPobxkDnKE= new file mode 100644 index 00000000..3b859543 Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/Izd8+e2EVEm3SRKDUDPobxkDnKE= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/KECDHd053zw2YWpEiSntFog8lS8= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/KECDHd053zw2YWpEiSntFog8lS8= new file mode 100644 index 00000000..1f8cc12c Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/KECDHd053zw2YWpEiSntFog8lS8= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/N9gw+f6NK6U0nqb7m97vN6GktPk= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/N9gw+f6NK6U0nqb7m97vN6GktPk= new file mode 100644 index 00000000..3e3acf40 Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/N9gw+f6NK6U0nqb7m97vN6GktPk= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/NJu0v28qaHC+66I1Ec2oVxNPolU= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/NJu0v28qaHC+66I1Ec2oVxNPolU= new file mode 100644 index 00000000..5afb9b4c Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/NJu0v28qaHC+66I1Ec2oVxNPolU= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OEybqlfcPOvyi8dmITHcq15K7eE= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OEybqlfcPOvyi8dmITHcq15K7eE= new file mode 100644 index 00000000..9f562b57 Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OEybqlfcPOvyi8dmITHcq15K7eE= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OPfztvpHW7NHhi11Evq1kwZPf_4= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OPfztvpHW7NHhi11Evq1kwZPf_4= new file mode 100644 index 00000000..2e46a7cf Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/OPfztvpHW7NHhi11Evq1kwZPf_4= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/RJqNSoLtTKox2eR0s7zWw5SIQKo= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/RJqNSoLtTKox2eR0s7zWw5SIQKo= new file mode 100644 index 00000000..b5e5cbcf Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/RJqNSoLtTKox2eR0s7zWw5SIQKo= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/SqPBuwEBPypirnfZxJnvZZuhtRU= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/SqPBuwEBPypirnfZxJnvZZuhtRU= new file mode 100644 index 00000000..6a09445a Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/SqPBuwEBPypirnfZxJnvZZuhtRU= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/U4H_CLVhrcKn1t53_aHZ_UnGqes= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/U4H_CLVhrcKn1t53_aHZ_UnGqes= new file mode 100644 index 00000000..091b6b69 Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/U4H_CLVhrcKn1t53_aHZ_UnGqes= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/U7t9FKlIubKk8eFMDyJSvNTTsHY= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/U7t9FKlIubKk8eFMDyJSvNTTsHY= new file mode 100644 index 00000000..93b769e5 Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/U7t9FKlIubKk8eFMDyJSvNTTsHY= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VjeV442hkMtqiSnRxgxldWWBlTc= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VjeV442hkMtqiSnRxgxldWWBlTc= new file mode 100644 index 00000000..f3ed40bd Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/VjeV442hkMtqiSnRxgxldWWBlTc= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/YRkeAAackGEwWC8_0Sesp_YAddE= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/YRkeAAackGEwWC8_0Sesp_YAddE= new file mode 100644 index 00000000..40d280f3 Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/YRkeAAackGEwWC8_0Sesp_YAddE= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZMgyoquwMv0gzhEcg7WSYUL8tUs= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZMgyoquwMv0gzhEcg7WSYUL8tUs= new file mode 100644 index 00000000..d03b9777 Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ZMgyoquwMv0gzhEcg7WSYUL8tUs= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/duIkSDk3Ps6y9UQebRr04gTTQJg= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/duIkSDk3Ps6y9UQebRr04gTTQJg= new file mode 100644 index 00000000..6f7bb73e Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/duIkSDk3Ps6y9UQebRr04gTTQJg= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/e0952MRhsVbaNBrdwgIrRwYgERM= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/e0952MRhsVbaNBrdwgIrRwYgERM= new file mode 100644 index 00000000..3b89d322 Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/e0952MRhsVbaNBrdwgIrRwYgERM= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/iZnzAnIrm_uZ6R7XLo79vLbluKk= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/iZnzAnIrm_uZ6R7XLo79vLbluKk= new file mode 100644 index 00000000..ee0fc380 Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/iZnzAnIrm_uZ6R7XLo79vLbluKk= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/lVZHwiSftjM89UxDT6aHRJT1daA= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/lVZHwiSftjM89UxDT6aHRJT1daA= new file mode 100644 index 00000000..46d3cb39 Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/lVZHwiSftjM89UxDT6aHRJT1daA= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/n4+x26OWNJ2d3ZtqFRQmeldy_SY= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/n4+x26OWNJ2d3ZtqFRQmeldy_SY= new file mode 100644 index 00000000..0d4a161e Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/n4+x26OWNJ2d3ZtqFRQmeldy_SY= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/njye4xBaB+Ai60AMl61YohGQkxk= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/njye4xBaB+Ai60AMl61YohGQkxk= new file mode 100644 index 00000000..8190f889 Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/njye4xBaB+Ai60AMl61YohGQkxk= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/tM4+GZ6rU2U0eT2n0A9ESlzmEy8= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/tM4+GZ6rU2U0eT2n0A9ESlzmEy8= new file mode 100644 index 00000000..ea6f509c Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/tM4+GZ6rU2U0eT2n0A9ESlzmEy8= differ diff --git a/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/wamLxJN60k4qRShSf4T6_9b4AAA= b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/wamLxJN60k4qRShSf4T6_9b4AAA= new file mode 100644 index 00000000..24000905 Binary files /dev/null and b/src/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/wamLxJN60k4qRShSf4T6_9b4AAA= differ diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties b/src/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties new file mode 100644 index 00000000..cc5871dc --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/compile-file-map.properties @@ -0,0 +1,102 @@ +#Thu Jan 18 09:02:54 CST 2024 +net.micode.notes.app-main-7\:/color/primary_text_dark.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\color_primary_text_dark.xml.flat +net.micode.notes.app-main-7\:/color/secondary_text_dark.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\color_secondary_text_dark.xml.flat +net.micode.notes.app-main-7\:/drawable-hdpi/a.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_a.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/abc.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_abc.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/bg_btn_set_color.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_bg_btn_set_color.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/bg_color_btn_mask.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_bg_color_btn_mask.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/call_record.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_call_record.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/clock.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_clock.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/delete.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_delete.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/dropdown_icon.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_dropdown_icon.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/edit_blue.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_blue.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/edit_green.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_green.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/edit_red.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_red.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/edit_title_blue.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_blue.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/edit_title_green.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_green.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/edit_title_red.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_red.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/edit_title_white.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_white.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/edit_title_yellow.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_title_yellow.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/edit_white.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_white.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/edit_yellow.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_edit_yellow.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/font_large.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_large.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/font_normal.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_normal.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/font_size_selector_bg.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_size_selector_bg.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/font_small.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_small.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/font_super.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_font_super.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/icon_app.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_icon_app.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/icon_app_new.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_icon_app_new.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/list_background.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_background.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/list_blue_down.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_blue_down.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/list_blue_middle.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_blue_middle.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/list_blue_single.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_blue_single.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/list_blue_up.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_blue_up.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/list_folder.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_folder.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/list_footer_bg.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_footer_bg.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/list_green_down.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_green_down.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/list_green_middle.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_green_middle.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/list_green_single.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_green_single.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/list_green_up.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_green_up.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/list_red_down.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_red_down.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/list_red_middle.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_red_middle.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/list_red_single.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_red_single.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/list_red_up.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_red_up.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/list_white_down.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_white_down.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/list_white_middle.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_white_middle.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/list_white_single.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_white_single.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/list_white_up.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_white_up.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/list_yellow_down.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_yellow_down.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/list_yellow_middle.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_yellow_middle.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/list_yellow_single.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_yellow_single.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/list_yellow_up.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_list_yellow_up.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/menu_delete.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_menu_delete.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/menu_move.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_menu_move.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/new_note_normal.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_new_note_normal.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/new_note_pressed.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_new_note_pressed.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/note_edit_color_selector_panel.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_note_edit_color_selector_panel.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/notification.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_notification.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/search_result.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_search_result.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/selected.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_selected.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/splash.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_splash.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/title_alert.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_title_alert.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/title_bar_bg.9.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_title_bar_bg.9.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/widget_2x_blue.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_blue.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/widget_2x_green.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_green.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/widget_2x_red.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_red.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/widget_2x_white.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_white.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/widget_2x_yellow.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_2x_yellow.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/widget_4x_blue.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_blue.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/widget_4x_green.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_green.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/widget_4x_red.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_red.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/widget_4x_white.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_white.png.flat +net.micode.notes.app-main-7\:/drawable-hdpi/widget_4x_yellow.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable-hdpi_widget_4x_yellow.png.flat +net.micode.notes.app-main-7\:/drawable/new_note.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable_new_note.xml.flat +net.micode.notes.app-main-7\:/drawable/splash.png=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\drawable_splash.png.flat +net.micode.notes.app-main-7\:/menu/call_note_edit.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\menu_call_note_edit.xml.flat +net.micode.notes.app-main-7\:/menu/call_record_folder.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\menu_call_record_folder.xml.flat +net.micode.notes.app-main-7\:/menu/note_edit.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\menu_note_edit.xml.flat +net.micode.notes.app-main-7\:/menu/note_list.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\menu_note_list.xml.flat +net.micode.notes.app-main-7\:/menu/note_list_dropdown.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\menu_note_list_dropdown.xml.flat +net.micode.notes.app-main-7\:/menu/note_list_options.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\menu_note_list_options.xml.flat +net.micode.notes.app-main-7\:/menu/sub_folder.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\menu_sub_folder.xml.flat +net.micode.notes.app-main-7\:/raw-zh-rCN/introduction=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\raw-zh-rCN_introduction.flat +net.micode.notes.app-main-7\:/raw/introduction=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\raw_introduction.flat +net.micode.notes.app-main-7\:/xml/preferences.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\xml_preferences.xml.flat +net.micode.notes.app-main-7\:/xml/searchable.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\xml_searchable.xml.flat +net.micode.notes.app-main-7\:/xml/widget_2x_info.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\xml_widget_2x_info.xml.flat +net.micode.notes.app-main-7\:/xml/widget_4x_info.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\xml_widget_4x_info.xml.flat +net.micode.notes.app-mergeDebugResources-4\:/layout/account_dialog_title.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_account_dialog_title.xml.flat +net.micode.notes.app-mergeDebugResources-4\:/layout/activity_splash.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_activity_splash.xml.flat +net.micode.notes.app-mergeDebugResources-4\:/layout/add_account_text.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_add_account_text.xml.flat +net.micode.notes.app-mergeDebugResources-4\:/layout/datetime_picker.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_datetime_picker.xml.flat +net.micode.notes.app-mergeDebugResources-4\:/layout/dialog_edit_text.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_dialog_edit_text.xml.flat +net.micode.notes.app-mergeDebugResources-4\:/layout/folder_list_item.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_folder_list_item.xml.flat +net.micode.notes.app-mergeDebugResources-4\:/layout/note_edit.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_note_edit.xml.flat +net.micode.notes.app-mergeDebugResources-4\:/layout/note_edit_list_item.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_note_edit_list_item.xml.flat +net.micode.notes.app-mergeDebugResources-4\:/layout/note_item.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_note_item.xml.flat +net.micode.notes.app-mergeDebugResources-4\:/layout/note_list.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_note_list.xml.flat +net.micode.notes.app-mergeDebugResources-4\:/layout/note_list_dropdown_menu.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_note_list_dropdown_menu.xml.flat +net.micode.notes.app-mergeDebugResources-4\:/layout/note_list_footer.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_note_list_footer.xml.flat +net.micode.notes.app-mergeDebugResources-4\:/layout/settings_header.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_settings_header.xml.flat +net.micode.notes.app-mergeDebugResources-4\:/layout/widget_2x.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_widget_2x.xml.flat +net.micode.notes.app-mergeDebugResources-4\:/layout/widget_4x.xml=C\:\\Users\\huigenb\\Desktop\\Git\\ghnb\\src\\app\\build\\intermediates\\merged_res\\debug\\layout_widget_4x.xml.flat diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-af/values-af.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-af/values-af.xml new file mode 100644 index 00000000..84812a8e --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-af/values-af.xml @@ -0,0 +1,16 @@ + + + "Navigeer tuis" + "Navigeer op" + "Nog opsies" + "Klaar" + "Sien alles" + "Kies \'n program" + "Vee navraag uit" + "Soeknavraag" + "Soek" + "Dien navraag in" + "Stemsoektog" + "Deel met" + "Deel met %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-am/values-am.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-am/values-am.xml new file mode 100644 index 00000000..6d8ce8e5 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-am/values-am.xml @@ -0,0 +1,16 @@ + + + "ወደ መነሻ ይዳስሱ" + "ወደ ላይ ይዳስሱ" + "ተጨማሪ አማራጮች" + "ተከናውኗል" + "ሁሉንም ይመልከቱ" + "መተግበሪያ ይምረጡ" + "መጠይቅ አጽዳ" + "የፍለጋ ጥያቄ" + "ፍለጋ" + "መጠይቅ ያስረክቡ" + "የድምፅ ፍለጋ" + "ከሚከተለው ጋር ያጋሩ" + "ከ%s ጋር ያጋሩ" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ar/values-ar.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ar/values-ar.xml new file mode 100644 index 00000000..6ee5951b --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ar/values-ar.xml @@ -0,0 +1,16 @@ + + + "التنقل إلى الشاشة الرئيسية" + "التنقل إلى أعلى" + "خيارات إضافية" + "تم" + "عرض الكل" + "اختيار تطبيق" + "محو طلب البحث" + "طلب البحث" + "بحث" + "إرسال طلب البحث" + "البحث الصوتي" + "مشاركة مع" + "‏مشاركة مع %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bg/values-bg.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bg/values-bg.xml new file mode 100644 index 00000000..aa7ff35a --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bg/values-bg.xml @@ -0,0 +1,16 @@ + + + "Придвижване към „Начало“" + "Придвижване нагоре" + "Още опции" + "Готово" + "Вижте всички" + "Изберете приложение" + "Изчистване на заявката" + "Заявка за търсене" + "Търсене" + "Изпращане на заявката" + "Гласово търсене" + "Споделяне със:" + "Споделяне със: %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml new file mode 100644 index 00000000..3ce5f3ee --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-bn-rBD/values-bn-rBD.xml @@ -0,0 +1,16 @@ + + + "হোম এ নেভিগেট করুন" + "উপরের দিকে নেভিগেট করুন" + "আরো বিকল্প" + "সম্পন্ন হয়েছে" + "সবগুলো দেখুন" + "একটি অ্যাপ্লিকেশান চয়ন করুন" + "ক্যোয়ারী সাফ করুন" + "ক্যোয়ারী অনুসন্ধান করুন" + "অনুসন্ধান করুন" + "ক্যোয়ারী জমা দিন" + "ভয়েস অনুসন্ধান" + "এর সাথে ভাগ করুন" + "%s এর সাথে ভাগ করুন" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ca/values-ca.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ca/values-ca.xml new file mode 100644 index 00000000..80dd170d --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ca/values-ca.xml @@ -0,0 +1,16 @@ + + + "Navega a la pàgina d\'inici" + "Navega cap a dalt" + "Més opcions" + "Fet" + "Mostra\'ls tots" + "Selecciona una aplicació" + "Esborra la consulta" + "Consulta de cerca" + "Cerca" + "Envia la consulta" + "Cerca per veu" + "Comparteix amb" + "Comparteix amb %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-cs/values-cs.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-cs/values-cs.xml new file mode 100644 index 00000000..a862180a --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-cs/values-cs.xml @@ -0,0 +1,16 @@ + + + "Přejít na plochu" + "Přejít nahoru" + "Více možností" + "Hotovo" + "Zobrazit vše" + "Vybrat aplikaci" + "Smazat dotaz" + "Vyhledávací dotaz" + "Hledat" + "Odeslat dotaz" + "Hlasové vyhledávání" + "Sdílet pomocí" + "Sdílet pomocí %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-da/values-da.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-da/values-da.xml new file mode 100644 index 00000000..91f5306b --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-da/values-da.xml @@ -0,0 +1,16 @@ + + + "Naviger hjem" + "Naviger op" + "Flere muligheder" + "Luk" + "Se alle" + "Vælg en app" + "Ryd forespørgslen" + "Søgeforespørgsel" + "Søg" + "Indsend forespørgslen" + "Stemmesøgning" + "Del med" + "Del med %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-de/values-de.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-de/values-de.xml new file mode 100644 index 00000000..b6912f6b --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-de/values-de.xml @@ -0,0 +1,16 @@ + + + "Zur Startseite" + "Nach oben" + "Weitere Optionen" + "Fertig" + "Alle ansehen" + "App auswählen" + "Suchanfrage löschen" + "Suchanfrage" + "Suchen" + "Suchanfrage senden" + "Sprachsuche" + "Freigeben für" + "Freigeben für %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-el/values-el.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-el/values-el.xml new file mode 100644 index 00000000..ad57bc33 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-el/values-el.xml @@ -0,0 +1,16 @@ + + + "Πλοήγηση στην αρχική σελίδα" + "Πλοήγηση προς τα επάνω" + "Περισσότερες επιλογές" + "Τέλος" + "Προβολή όλων" + "Επιλέξτε κάποια εφαρμογή" + "Διαγραφή ερωτήματος" + "Ερώτημα αναζήτησης" + "Αναζήτηση" + "Υποβολή ερωτήματος" + "Φωνητική αναζήτηση" + "Κοινή χρήση με" + "Κοινή χρήση με %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml new file mode 100644 index 00000000..dec9a30f --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml @@ -0,0 +1,16 @@ + + + "Navigate home" + "Navigate up" + "More options" + "Finished" + "See all" + "Choose an app" + "Clear query" + "Search query" + "Search" + "Submit query" + "Voice search" + "Share with" + "Share with %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml new file mode 100644 index 00000000..dec9a30f --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml @@ -0,0 +1,16 @@ + + + "Navigate home" + "Navigate up" + "More options" + "Finished" + "See all" + "Choose an app" + "Clear query" + "Search query" + "Search" + "Submit query" + "Voice search" + "Share with" + "Share with %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml new file mode 100644 index 00000000..7e84c580 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml @@ -0,0 +1,16 @@ + + + "Navegar a la página principal" + "Navegar hacia arriba" + "Más opciones" + "Listo" + "Ver todo" + "Elige una aplicación." + "Eliminar la consulta" + "Consulta de búsqueda" + "Búsqueda" + "Enviar consulta" + "Búsqueda por voz" + "Compartir con" + "Compartir con %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es/values-es.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es/values-es.xml new file mode 100644 index 00000000..b05af8fe --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-es/values-es.xml @@ -0,0 +1,16 @@ + + + "Ir a la pantalla de inicio" + "Desplazarse hacia arriba" + "Más opciones" + "Listo" + "Ver todo" + "Seleccionar una aplicación" + "Borrar consulta" + "Consulta" + "Buscar" + "Enviar consulta" + "Búsqueda por voz" + "Compartir con" + "Compartir con %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml new file mode 100644 index 00000000..90b6d81a --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-et-rEE/values-et-rEE.xml @@ -0,0 +1,16 @@ + + + "Navigeerimine avaekraanile" + "Navigeerimine üles" + "Rohkem valikuid" + "Valmis" + "Kuva kõik" + "Valige rakendus" + "Päringu tühistamine" + "Otsingupäring" + "Otsing" + "Päringu esitamine" + "Häälotsing" + "Jagamine:" + "Jagamine kasutajaga %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml new file mode 100644 index 00000000..653ccd97 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-eu-rES/values-eu-rES.xml @@ -0,0 +1,16 @@ + + + "Joan orri nagusira" + "Joan gora" + "Aukera gehiago" + "Eginda" + "Ikusi guztiak" + "Aukeratu aplikazio bat" + "Garbitu kontsulta" + "Bilaketa-kontsulta" + "Bilatu" + "Bidali kontsulta" + "Ahots bidezko bilaketa" + "Partekatu hauekin" + "Partekatu %s erabiltzailearekin" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fa/values-fa.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fa/values-fa.xml new file mode 100644 index 00000000..04db10a5 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fa/values-fa.xml @@ -0,0 +1,16 @@ + + + "پیمایش به صفحه اصلی" + "پیمایش به بالا" + "گزینه‌های بیشتر" + "انجام شد" + "مشاهده همه" + "انتخاب برنامه" + "پاک کردن عبارت جستجو" + "عبارت جستجو" + "جستجو" + "ارسال عبارت جستجو" + "جستجوی شفاهی" + "اشتراک‌گذاری با" + "‏اشتراک‌گذاری با %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fi/values-fi.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fi/values-fi.xml new file mode 100644 index 00000000..883e8f4e --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fi/values-fi.xml @@ -0,0 +1,16 @@ + + + "Siirry etusivulle" + "Siirry ylös" + "Lisää" + "Valmis" + "Näytä kaikki" + "Valitse sovellus" + "Tyhjennä kysely" + "Hakulauseke" + "Haku" + "Lähetä kysely" + "Puhehaku" + "Jakaminen:" + "Jakaminen: %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml new file mode 100644 index 00000000..bb824264 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml @@ -0,0 +1,16 @@ + + + "Revenir à l\'accueil" + "Revenir en haut de la page" + "Plus d\'options" + "Terminé" + "Voir toutes les chaînes" + "Sélectionnez une application" + "Effacer la requête" + "Requête de recherche" + "Rechercher" + "Envoyer la requête" + "Recherche vocale" + "Partager avec" + "Partager avec %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr/values-fr.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr/values-fr.xml new file mode 100644 index 00000000..a73a2b33 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-fr/values-fr.xml @@ -0,0 +1,16 @@ + + + "Revenir à l\'accueil" + "Revenir en haut de la page" + "Plus d\'options" + "OK" + "Tout afficher" + "Sélectionner une application" + "Effacer la requête" + "Requête de recherche" + "Rechercher" + "Envoyer la requête" + "Recherche vocale" + "Partager avec" + "Partager avec %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml new file mode 100644 index 00000000..d5ca5e2a --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-gl-rES/values-gl-rES.xml @@ -0,0 +1,16 @@ + + + "Ir á páxina de inicio" + "Desprazarse cara arriba" + "Máis opcións" + "Feito" + "Ver todas" + "Escoller unha aplicación" + "Borrar consulta" + "Consulta de busca" + "Buscar" + "Enviar consulta" + "Busca de voz" + "Compartir con" + "Compartir con %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml new file mode 100644 index 00000000..e38bb90b --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml @@ -0,0 +1,4 @@ + + + 54dip + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml new file mode 100644 index 00000000..56a5d476 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml @@ -0,0 +1,8 @@ + + + + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hi/values-hi.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hi/values-hi.xml new file mode 100644 index 00000000..c3f81b63 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hi/values-hi.xml @@ -0,0 +1,16 @@ + + + "मुखपृष्ठ पर नेविगेट करें" + "ऊपर नेविगेट करें" + "अधिक विकल्प" + "पूर्ण" + "सभी देखें" + "कोई एप्‍लिकेशन चुनें" + "क्‍वेरी साफ़ करें" + "खोज क्वेरी" + "खोजें" + "क्वेरी सबमिट करें" + "ध्वनि खोज" + "इसके द्वारा साझा करें" + "%s के साथ साझा करें" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hr/values-hr.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hr/values-hr.xml new file mode 100644 index 00000000..4eefcd30 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hr/values-hr.xml @@ -0,0 +1,16 @@ + + + "Idi na početnu" + "Idi gore" + "Dodatne opcije" + "Gotovo" + "Prikaži sve" + "Odabir aplikacije" + "Izbriši upit" + "Upit za pretraživanje" + "Pretraživanje" + "Pošalji upit" + "Glasovno pretraživanje" + "Dijeljenje sa" + "Dijeljenje sa: %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hu/values-hu.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hu/values-hu.xml new file mode 100644 index 00000000..7a92ebe5 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hu/values-hu.xml @@ -0,0 +1,16 @@ + + + "Ugrás a főoldalra" + "Felfelé mozgatás" + "További lehetőségek" + "Kész" + "Összes megtekintése" + "Válasszon ki egy alkalmazást" + "Lekérdezés törlése" + "Keresési lekérdezés" + "Keresés" + "Lekérdezés küldése" + "Hangalapú keresés" + "Megosztás a következővel:" + "Megosztás a következővel: %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml new file mode 100644 index 00000000..9eaf5bba --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-hy-rAM/values-hy-rAM.xml @@ -0,0 +1,16 @@ + + + "Ուղղվել տուն" + "Ուղղվել վերև" + "Այլ ընտրանքներ" + "Կատարված է" + "Տեսնել բոլորը" + "Ընտրել ծրագիր" + "Մաքրել հարցումը" + "Որոնման հարցում" + "Որոնել" + "Ուղարկել հարցումը" + "Ձայնային որոնում" + "Տարածել" + "Տարածել ըստ %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-in/values-in.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-in/values-in.xml new file mode 100644 index 00000000..ca27a16a --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-in/values-in.xml @@ -0,0 +1,16 @@ + + + "Navigasi ke beranda" + "Navigasi naik" + "Opsi lain" + "Selesai" + "Lihat semua" + "Pilih aplikasi" + "Hapus kueri" + "Kueri penelusuran" + "Telusuri" + "Kirim kueri" + "Penelusuran suara" + "Bagikan dengan" + "Bagikan dengan %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml new file mode 100644 index 00000000..a43b8296 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-is-rIS/values-is-rIS.xml @@ -0,0 +1,16 @@ + + + "Fara heim" + "Fara upp" + "Fleiri valkostir" + "Lokið" + "Sjá allt" + "Veldu forrit" + "Hreinsa fyrirspurn" + "Leitarfyrirspurn" + "Leita" + "Senda fyrirspurn" + "Raddleit" + "Deila með" + "Deila með %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-it/values-it.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-it/values-it.xml new file mode 100644 index 00000000..5afc3976 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-it/values-it.xml @@ -0,0 +1,16 @@ + + + "Vai alla home page" + "Vai in alto" + "Altre opzioni" + "Fine" + "Visualizza tutte" + "Scegli un\'applicazione" + "Cancella query" + "Query di ricerca" + "Cerca" + "Invia query" + "Ricerca vocale" + "Condividi con" + "Condividi con %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-iw/values-iw.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-iw/values-iw.xml new file mode 100644 index 00000000..8d76e348 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-iw/values-iw.xml @@ -0,0 +1,16 @@ + + + "נווט לדף הבית" + "נווט למעלה" + "עוד אפשרויות" + "בוצע" + "ראה הכול" + "בחר אפליקציה" + "מחק שאילתה" + "שאילתת חיפוש" + "חפש" + "שלח שאילתה" + "חיפוש קולי" + "שתף עם" + "‏שתף עם %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ja/values-ja.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ja/values-ja.xml new file mode 100644 index 00000000..d638b592 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ja/values-ja.xml @@ -0,0 +1,16 @@ + + + "ホームへ移動" + "上へ移動" + "その他のオプション" + "完了" + "すべて表示" + "アプリの選択" + "検索キーワードを削除" + "検索キーワード" + "検索" + "検索キーワードを送信" + "音声検索" + "共有" + "%sと共有" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml new file mode 100644 index 00000000..269ffd01 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ka-rGE/values-ka-rGE.xml @@ -0,0 +1,16 @@ + + + "მთავარზე ნავიგაცია" + "ზემოთ ნავიგაცია" + "მეტი ვარიანტები" + "დასრულდა" + "ყველას ნახვა" + "აპის არჩევა" + "მოთხოვნის გასუფთავება" + "ძიების მოთხოვნა" + "ძიება" + "მოთხოვნის გადაგზავნა" + "ხმოვანი ძიება" + "გაზიარება:" + "%s-თან გაზიარება" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml new file mode 100644 index 00000000..87d0ff34 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kk-rKZ/values-kk-rKZ.xml @@ -0,0 +1,16 @@ + + + "Негізгі бетте қозғалу" + "Жоғары қозғалу" + "Басқа опциялар" + "Орындалды" + "Барлығын көру" + "Қолданбаны таңдау" + "Сұрақты жою" + "Сұрақты іздеу" + "Іздеу" + "Сұрақты жіберу" + "Дауыс арқылы іздеу" + "Бөлісу" + "%s бөлісу" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-km-rKH/values-km-rKH.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-km-rKH/values-km-rKH.xml new file mode 100644 index 00000000..14bcf76e --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-km-rKH/values-km-rKH.xml @@ -0,0 +1,16 @@ + + + "រកមើល​ទៅ​ដើម" + "រកមើល​ឡើងលើ" + "ជម្រើស​ច្រើន​ទៀត" + "រួចរាល់" + "មើល​ទាំងអស់" + "ជ្រើស​កម្មវិធី​​" + "សម្អាត​សំណួរ" + "ស្វែងរក​សំណួរ" + "ស្វែងរក" + "ដាក់​​​ស្នើ​សំណួរ" + "ការស្វែងរក​សំឡេង" + "ចែករំលែក​ជាមួយ" + "ចែករំលែក​ជាមួយ %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kn-rIN/values-kn-rIN.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kn-rIN/values-kn-rIN.xml new file mode 100644 index 00000000..52464af0 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-kn-rIN/values-kn-rIN.xml @@ -0,0 +1,16 @@ + + + "ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" + "ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ" + "ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು" + "ಮುಗಿದಿದೆ" + "ಎಲ್ಲವನ್ನೂ ನೋಡಿ" + "ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ" + "ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು" + "ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ" + "ಹುಡುಕು" + "ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು" + "ಧ್ವನಿ ಹುಡುಕಾಟ" + "ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ" + "%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ko/values-ko.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ko/values-ko.xml new file mode 100644 index 00000000..60a62613 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ko/values-ko.xml @@ -0,0 +1,16 @@ + + + "홈 탐색" + "위로 탐색" + "옵션 더보기" + "완료" + "전체 보기" + "앱 선택" + "검색어 삭제" + "검색어" + "검색" + "검색어 보내기" + "음성 검색" + "공유 대상" + "%s와(과) 공유" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ky-rKG/values-ky-rKG.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ky-rKG/values-ky-rKG.xml new file mode 100644 index 00000000..6d6999bb --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ky-rKG/values-ky-rKG.xml @@ -0,0 +1,16 @@ + + + "Үйгө багыттоо" + "Жогору" + "Көбүрөөк мүмкүнчүлүктөр" + "Даяр" + "Бардыгын көрүү" + "Колдонмо тандоо" + "Талаптарды тазалоо" + "Издөө талаптары" + "Издөө" + "Талап жөнөтүү" + "Үн аркылуу издөө" + "Бөлүшүү" + "%s аркылуу бөлүшүү" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-land/values-land.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-land/values-land.xml new file mode 100644 index 00000000..fabf9eb2 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-land/values-land.xml @@ -0,0 +1,10 @@ + + + true + true + 48dp + 0dp + 32dp + 12dp + 14dp + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml new file mode 100644 index 00000000..55aba508 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml @@ -0,0 +1,14 @@ + + + true + true + 440dp + 192dip + 60% + 90% + 60% + 90% + 4 + + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-nl/values-nl.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-nl/values-nl.xml new file mode 100644 index 00000000..2efd0aa6 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-nl/values-nl.xml @@ -0,0 +1,16 @@ + + + "Navigeren naar startpositie" + "Omhoog navigeren" + "Meer opties" + "Gereed" + "Alles weergeven" + "Een app selecteren" + "Zoekopdracht wissen" + "Zoekopdracht" + "Zoeken" + "Zoekopdracht verzenden" + "Gesproken zoekopdracht" + "Delen met" + "Delen met %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pl/values-pl.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pl/values-pl.xml new file mode 100644 index 00000000..a01797de --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pl/values-pl.xml @@ -0,0 +1,16 @@ + + + "Przejdź do strony głównej" + "Przejdź wyżej" + "Więcej opcji" + "Gotowe" + "Zobacz wszystkie" + "Wybierz aplikację" + "Wyczyść zapytanie" + "Wyszukiwane hasło" + "Szukaj" + "Wyślij zapytanie" + "Wyszukiwanie głosowe" + "Udostępnij dla" + "Udostępnij dla %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-port/values-port.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-port/values-port.xml new file mode 100644 index 00000000..7a925dc7 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-port/values-port.xml @@ -0,0 +1,4 @@ + + + false + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml new file mode 100644 index 00000000..04c8392d --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml @@ -0,0 +1,16 @@ + + + "Navegar para a página inicial" + "Navegar para cima" + "Mais opções" + "Concluído" + "Ver tudo" + "Escolher uma aplicação" + "Limpar consulta" + "Consulta de pesquisa" + "Pesquisar" + "Enviar consulta" + "Pesquisa por voz" + "Partilhar com" + "Partilhar com %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pt/values-pt.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pt/values-pt.xml new file mode 100644 index 00000000..b18ecb72 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-pt/values-pt.xml @@ -0,0 +1,16 @@ + + + "Navegar para a página inicial" + "Navegar para cima" + "Mais opções" + "Concluído" + "Ver tudo" + "Selecione um aplicativo" + "Limpar consulta" + "Consulta de pesquisa" + "Pesquisar" + "Enviar consulta" + "Pesquisa por voz" + "Compartilhar com" + "Compartilhar com %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ro/values-ro.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ro/values-ro.xml new file mode 100644 index 00000000..e4747858 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ro/values-ro.xml @@ -0,0 +1,16 @@ + + + "Navigați la ecranul de pornire" + "Navigați în sus" + "Mai multe opțiuni" + "Terminat" + "Afișați-le pe toate" + "Alegeți o aplicaţie" + "Ștergeți interogarea" + "Interogare de căutare" + "Căutați" + "Trimiteți interogarea" + "Căutare vocală" + "Trimiteți la" + "Trimiteți la %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ru/values-ru.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ru/values-ru.xml new file mode 100644 index 00000000..ac7bee01 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ru/values-ru.xml @@ -0,0 +1,16 @@ + + + "Перейти на главный экран" + "Перейти вверх" + "Другие параметры" + "Готово" + "Показать все" + "Выбрать приложение" + "Удалить запрос" + "Поисковый запрос" + "Поиск" + "Отправить запрос" + "Голосовой поиск" + "Открыть доступ" + "Открыть доступ пользователю %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-si-rLK/values-si-rLK.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-si-rLK/values-si-rLK.xml new file mode 100644 index 00000000..57bf17c5 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-si-rLK/values-si-rLK.xml @@ -0,0 +1,16 @@ + + + "ගෙදරට සංචාලනය කරන්න" + "ඉහලට සංචාලනය කරන්න" + "තවත් විකල්ප" + "අවසාන වූ" + "සියල්ල බලන්න" + "යෙදුමක් තෝරන්න" + "විමසුම හිස් කරන්න" + "සෙවුම් විමසුම" + "සෙවීම" + "විමසුම යොමු කරන්න" + "හඬ සෙවීම" + "සමඟ බෙදාගන්න" + "%s සමඟ බෙදාගන්න" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sk/values-sk.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sk/values-sk.xml new file mode 100644 index 00000000..803a8509 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sk/values-sk.xml @@ -0,0 +1,16 @@ + + + "Prejsť na plochu" + "Prejsť hore" + "Ďalšie možnosti" + "Hotovo" + "Zobraziť všetko" + "Zvoľte aplikáciu" + "Vymazať dopyt" + "Vyhľadávací dopyt" + "Hľadať" + "Odoslať dopyt" + "Hlasové vyhľadávanie" + "Zdieľať pomocou" + "Zdieľať pomocou %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sl/values-sl.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sl/values-sl.xml new file mode 100644 index 00000000..fedbf1b4 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sl/values-sl.xml @@ -0,0 +1,16 @@ + + + "Krmarjenje domov" + "Krmarjenje navzgor" + "Več možnosti" + "Končano" + "Pokaži vse" + "Izbira aplikacije" + "Izbris poizvedbe" + "Iskalna poizvedba" + "Iskanje" + "Pošiljanje poizvedbe" + "Glasovno iskanje" + "Deljenje z" + "Deljenje z:" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sr/values-sr.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sr/values-sr.xml new file mode 100644 index 00000000..473792fd --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sr/values-sr.xml @@ -0,0 +1,16 @@ + + + "Одлазак на Почетну" + "Кретање нагоре" + "Још опција" + "Готово" + "Прикажи све" + "Избор апликације" + "Брисање упита" + "Упит за претрагу" + "Претрага" + "Слање упита" + "Гласовна претрага" + "Дели са" + "Дели са апликацијом %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sv/values-sv.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sv/values-sv.xml new file mode 100644 index 00000000..8376337e --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sv/values-sv.xml @@ -0,0 +1,16 @@ + + + "Visa startsidan" + "Navigera uppåt" + "Fler alternativ" + "Klart" + "Visa alla" + "Välj en app" + "Ta bort frågan" + "Sökfråga" + "Sök" + "Skicka fråga" + "Röstsökning" + "Dela med" + "Dela med %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sw/values-sw.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sw/values-sw.xml new file mode 100644 index 00000000..3c123274 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sw/values-sw.xml @@ -0,0 +1,16 @@ + + + "Nenda mwanzo" + "Nenda juu" + "Chaguo zaidi" + "Nimemaliza" + "Angalia zote" + "Chagua programu" + "Futa hoja" + "Hoja ya utafutaji" + "Tafuta" + "Wasilisha hoja" + "Tafuta kwa kutamka" + "Shiriki na:" + "Shiriki na %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml new file mode 100644 index 00000000..4defbcd1 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml @@ -0,0 +1,12 @@ + + + 24dp + 64dp + 4dp + 8dp + 18dp + 580dp + 16dp + 20dp + 5 + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ta-rIN/values-ta-rIN.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ta-rIN/values-ta-rIN.xml new file mode 100644 index 00000000..433fd076 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ta-rIN/values-ta-rIN.xml @@ -0,0 +1,16 @@ + + + "முகப்பிற்கு வழிசெலுத்து" + "மேலே வழிசெலுத்து" + "மேலும் விருப்பங்கள்" + "முடிந்தது" + "எல்லாம் காட்டு" + "பயன்பாட்டைத் தேர்வுசெய்க" + "வினவலை அழி" + "தேடல் வினவல்" + "தேடு" + "வினவலைச் சமர்ப்பி" + "குரல் தேடல்" + "இதனுடன் பகிர்" + "%s உடன் பகிர்" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-te-rIN/values-te-rIN.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-te-rIN/values-te-rIN.xml new file mode 100644 index 00000000..2140213f --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-te-rIN/values-te-rIN.xml @@ -0,0 +1,16 @@ + + + "హోమ్‌కు నావిగేట్ చేయండి" + "పైకి నావిగేట్ చేయండి" + "మరిన్ని ఎంపికలు" + "పూర్తయింది" + "అన్నీ చూడండి" + "అనువర్తనాన్ని ఎంచుకోండి" + "ప్రశ్నను క్లియర్ చేయి" + "ప్రశ్న శోధించండి" + "శోధించు" + "ప్రశ్నని సమర్పించు" + "వాయిస్ శోధన" + "వీరితో భాగస్వామ్యం చేయి" + "%sతో భాగస్వామ్యం చేయి" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-th/values-th.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-th/values-th.xml new file mode 100644 index 00000000..dbd3724c --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-th/values-th.xml @@ -0,0 +1,16 @@ + + + "นำทางไปหน้าแรก" + "นำทางขึ้น" + "ตัวเลือกอื่น" + "เสร็จสิ้น" + "ดูทั้งหมด" + "เลือกแอป" + "ล้างข้อความค้นหา" + "ข้อความค้นหา" + "ค้นหา" + "ส่งข้อความค้นหา" + "ค้นหาด้วยเสียง" + "แชร์กับ" + "แชร์กับ %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-tl/values-tl.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-tl/values-tl.xml new file mode 100644 index 00000000..55a0f6c8 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-tl/values-tl.xml @@ -0,0 +1,16 @@ + + + "Mag-navigate patungo sa home" + "Mag-navigate pataas" + "Higit pang mga opsyon" + "Tapos na" + "Tingnan lahat" + "Pumili ng isang app" + "I-clear ang query" + "Query sa paghahanap" + "Maghanap" + "Isumite ang query" + "Paghahanap gamit ang boses" + "Ibahagi sa/kay" + "Ibahagi sa/kay %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-tr/values-tr.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-tr/values-tr.xml new file mode 100644 index 00000000..2c227a35 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-tr/values-tr.xml @@ -0,0 +1,16 @@ + + + "Ana ekrana git" + "Yukarı git" + "Diğer seçenekler" + "Tamamlandı" + "Tümünü göster" + "Bir uygulama seçin" + "Sorguyu temizle" + "Arama sorgusu" + "Ara" + "Sorguyu gönder" + "Sesli arama" + "Şununla paylaş" + "%s ile paylaş" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-uk/values-uk.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-uk/values-uk.xml new file mode 100644 index 00000000..0bf05dae --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-uk/values-uk.xml @@ -0,0 +1,16 @@ + + + "Перейти на головний" + "Перейти вгору" + "Інші опції" + "Готово" + "Переглянути всі" + "Вибрати програму" + "Очистити запит" + "Пошуковий запит" + "Пошук" + "Надіслати запит" + "Голосовий пошук" + "Надіслати через" + "Надіслати через %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ur-rPK/values-ur-rPK.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ur-rPK/values-ur-rPK.xml new file mode 100644 index 00000000..f4197592 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-ur-rPK/values-ur-rPK.xml @@ -0,0 +1,16 @@ + + + "ہوم پر نیویگیٹ کریں" + "اوپر نیویگیٹ کریں" + "مزید اختیارات" + "ہو گیا" + "سبھی دیکھیں" + "ایک ایپ منتخب کریں" + "استفسار صاف کریں" + "استفسار تلاش کریں" + "تلاش کریں" + "استفسار جمع کرائیں" + "صوتی تلاش" + "اشتراک کریں مع" + "‏%s کے ساتھ اشتراک کریں" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-uz-rUZ/values-uz-rUZ.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-uz-rUZ/values-uz-rUZ.xml new file mode 100644 index 00000000..15933f1c --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-uz-rUZ/values-uz-rUZ.xml @@ -0,0 +1,15 @@ + + + "Boshiga o‘tish" + "Yuqoriga o‘tish" + "Qo‘shimcha sozlamalar" + "Tayyor" + "Barchasini ko‘rish" + "Dastur tanlang" + "So‘rovni tozalash" + "So‘rovni izlash" + "Izlash" + "So‘rov yaratish" + "Ovozli qidiruv" + "Bo‘lishish:" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v11/values-v11.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v11/values-v11.xml new file mode 100644 index 00000000..4b2c585f --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v11/values-v11.xml @@ -0,0 +1,165 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v12/values-v12.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v12/values-v12.xml new file mode 100644 index 00000000..aa0db6fb --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v12/values-v12.xml @@ -0,0 +1,11 @@ + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v18/values-v18.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v18/values-v18.xml new file mode 100644 index 00000000..7dad77f9 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v18/values-v18.xml @@ -0,0 +1,4 @@ + + + 0px + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v21/values-v21.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v21/values-v21.xml new file mode 100644 index 00000000..a7e34015 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-v21/values-v21.xml @@ -0,0 +1,256 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-vi/values-vi.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-vi/values-vi.xml new file mode 100644 index 00000000..73045f9a --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-vi/values-vi.xml @@ -0,0 +1,16 @@ + + + "Điều hướng về trang chủ" + "Điều hướng lên trên" + "Thêm tùy chọn" + "Xong" + "Xem tất cả" + "Chọn một ứng dụng" + "Xóa truy vấn" + "Tìm kiếm truy vấn" + "Tìm kiếm" + "Gửi truy vấn" + "Tìm kiếm bằng giọng nói" + "Chia sẻ với" + "Chia sẻ với %s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml new file mode 100644 index 00000000..fd9dac9b --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w360dp-v13/values-w360dp-v13.xml @@ -0,0 +1,4 @@ + + + 3 + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml new file mode 100644 index 00000000..5b7dcf65 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w480dp-v13/values-w480dp-v13.xml @@ -0,0 +1,5 @@ + + + true + true + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml new file mode 100644 index 00000000..dcd19ee3 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w500dp-v13/values-w500dp-v13.xml @@ -0,0 +1,4 @@ + + + 4 + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml new file mode 100644 index 00000000..4c058c26 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w600dp-v13/values-w600dp-v13.xml @@ -0,0 +1,5 @@ + + + 192dip + 5 + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml new file mode 100644 index 00000000..966aafb2 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-w720dp-v13/values-w720dp-v13.xml @@ -0,0 +1,4 @@ + + + false + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml new file mode 100644 index 00000000..98b3f8c2 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-xlarge-land-v4/values-xlarge-land-v4.xml @@ -0,0 +1,4 @@ + + + 256dip + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml new file mode 100644 index 00000000..ba8d9dae --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml @@ -0,0 +1,10 @@ + + + false + 192dip + 60% + 90% + 50% + 70% + 5 + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml new file mode 100644 index 00000000..0c285368 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rCN/values-zh-rCN.xml @@ -0,0 +1,121 @@ + + + + 短信 + 邮件 + + + %1$s 条符合“%2$s”的搜索结果 + + "转到主屏幕" + "转到上一层级" + "更多选项" + "完成" + "查看全部" + "选择应用" + "清除查询" + "搜索查询" + "搜索" + "提交查询" + "语音搜索" + "分享方式" + "通过%s分享" + 确认删除文件夹及所包含的便签吗? + 确认要删除该条便签吗? + 确认要删除所选的 %d 条便签吗? + 删除 + 便签 + 便签2x2 + 便签4x4 + 删除 + 通话便签 + 取消 + 设置 + 成功删除提醒 + 不能为空便签设置闹钟提醒 + 不能将空便签发送到桌面 + 要查看的便签不存在 + 导出文本时发生错误,请检查SD卡 + SD卡被占用,不能操作 + 同步已取消 + 同步失败,发生内部错误 + 同步失败,请检查网络和帐号设置 + 导出失败 + 文件夹 %1$s 已存在,请重新命名 + yyyyMMdd + MM月dd日 kk:mm + 已将文本文件(%1$s)输出至SD卡(%2$s)目录 + 已将所选 %1$d 条便签移到 %2$s 文件夹 + 请输入名称 + 已添加到桌面 + 提醒我 + 新建文件夹 + 删除 + 取消全选 + 导出文本 + 修改文件夹名称 + 刪除文件夹 + 查看文件夹 + + 正常 + 文字大小 + + 超大 + 进入清单模式 + 移动到文件夹 + 上一级文件夹 + 退出清单模式 + 删除提醒 + 搜索 + 全选 + 没有选中项,操作无效 + 选中了 %d 项 + 发送到桌面 + 设置 + 分享 + 同步 + 取消同步 + 选择文件夹 + 已过期 + 发送邮件 + 打开地图 + 呼叫电话 + 浏览网页 + 查看 + 知道了 + 新建便签 + ... + 与google task同步便签记录 + 同步账号 + 添加账号 + 新建便签背景颜色随机 + 取消同步 + 立即同步 + 当前帐号 %1$s + 如更换同步帐号,过去的帐号同步信息将被清空,再次切换的同时可能会造成数据重复 + 请选择google帐号,便签将与该帐号的google task内容同步。 + 同步便签 + 上次同步于 %1$s + 取消 + 更换账号 + 删除账号 + 设置 + 正在同步中,不能修改同步帐号 + 同步帐号已设置为%1$s + 便签 + 搜索便签 + 正在搜索便签 + 便签中的文字 + 创建提醒 + 导出成功 + 与%1$s同步成功 + 正在获取服务器便签列表... + 登录%1$s... + 正在同步本地便签... + 同步已取消 + 同步失败 + 同步成功 + 同步便签... + 没有关联内容,点击新建便签。 + 访客模式下,便签内容不可见 + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml new file mode 100644 index 00000000..462f2b36 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rHK/values-zh-rHK.xml @@ -0,0 +1,16 @@ + + + "瀏覽主頁" + "向上瀏覽" + "更多選項" + "完成" + "顯示全部" + "選擇應用程式" + "清除查詢" + "搜尋查詢" + "搜尋" + "提交查詢" + "語音搜尋" + "分享對象" + "與「%s」分享" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml new file mode 100644 index 00000000..794f7fd5 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zh-rTW/values-zh-rTW.xml @@ -0,0 +1,121 @@ + + + + 短信 + 郵件 + + + %1$s 條符合”%2$s“的搜尋結果 + + "瀏覽首頁" + "向上瀏覽" + "更多選項" + "完成" + "查看全部" + "選擇應用程式" + "清除查詢" + "搜尋查詢" + "搜尋" + "提交查詢" + "語音搜尋" + "選擇分享對象" + "與「%s」分享" + 確認刪除檔夾及所包含的便簽嗎? + 确认要删除該條便籤嗎? + 确认要刪除所選的 %d 條便籤嗎? + 刪除 + 便簽 + 便簽2x2 + 便簽4x4 + 刪除 + 通話便籤 + 取消 + 設置 + 成功刪除提醒 + 不能爲空便籤設置鬧鐘提醒 + 不能將空便籤發送到桌面 + 要查看的便籤不存在 + 導出TXT時發生錯誤,請檢查SD卡 + SD卡被佔用,不能操作 + 同步已取消 + 同步失敗,發生內部錯誤 + 同步失敗,請檢查網絡和帳號設置 + 導出失敗 + 文件夾 %1$s 已存在,請重新命名 + yyyyMMdd + MM月dd日 kk:mm + 已將文本文件(%1$s)導出至SD(%2$s)目錄 + 已將所選 %1$d 便籤移到 %2$s 文件夾 + 請輸入名稱 + 已添加到桌面 + 提醒我 + 新建文件夾 + 刪除 + 取消全選 + 導出文本 + 修改文件夾名稱 + 刪除文件夾 + 查看文件夾 + + 正常 + 文字大小 + + 超大 + 進入清單模式 + 移動到文件夾 + 上一級文件夾 + 退出清單模式 + 刪除提醒 + 搜尋 + 全選 + 沒有選中項,操作無效 + 選中了 %d 項 + 發送到桌面 + 設置 + 分享 + 同步 + 取消同步 + 選擇文件夾 + 已過期 + 發送郵件 + 打開地圖 + 呼叫電話 + 浏覽網頁 + 查看 + 知道了 + 新建便簽 + ... + 与google task同步便簽記錄 + 同步賬號 + 添加賬號 + 新建便籤背景顏色隨機 + 取消同步 + 立即同步 + 當前帳號 %1$s + 如更換同步帳號,過去的帳號同步信息將被清空,再次切換的同時可能會造成數據重復 + 請選擇google帳號,便簽將與該帳號的google task內容同步。 + 同步便簽 + 上次同步于 %1$s + 取消 + 更換賬號 + 刪除賬號 + 設置 + 正在同步中,不能修改同步帳號 + 同步帳號已設置為%1$s + 便籤 + 搜索便籤 + 正在搜索便籤 + 便籤中的文字 + 創建提醒 + 導出成功 + 與%1$s同步成功 + 正在獲取服務器便籤列表... + 登陸%1$s... + 正在同步本地便籤... + 同步已取消 + 同步失敗 + 同步成功 + 同步便簽... + 沒有關聯內容,點擊新建便簽。 + 訪客模式下,便籤內容不可見 + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zu/values-zu.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zu/values-zu.xml new file mode 100644 index 00000000..d383c891 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values-zu/values-zu.xml @@ -0,0 +1,16 @@ + + + "Zulazulela ekhaya" + "Zulazulela phezulu" + "Izinketho eziningi" + "Kwenziwe" + "Buka konke" + "Khetha uhlelo lokusebenza" + "Sula inkinga" + "Umbuzo wosesho" + "Sesha" + "Hambisa umbuzo" + "Ukusesha ngezwi" + "Yabelana no-" + "Yabelana no-%s" + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values/values.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values/values.xml new file mode 100644 index 00000000..a29a44db --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merged.dir/values/values.xml @@ -0,0 +1,1629 @@ + + + + -%s + --%s + --%s + --%s + + + Messaging + Email + + + + + + true + false + true + true + false + true + false + @android:color/black + #7fa87f + @android:color/black + @android:color/black + @color/material_deep_teal_200 + @color/material_deep_teal_500 + #ff424242 + #ffeeeeee + #ff303030 + #ffeeeeee + #66000000 + #80ffffff + #80000000 + @color/bright_foreground_material_light + @color/bright_foreground_material_dark + @android:color/white + @android:color/black + #ff5a595b + #ffd6d7d7 + #80bebebe + #80323232 + #ffbebebe + #ff323232 + #6680cbc4 + #66009688 + @color/bright_foreground_disabled_material_dark + @color/bright_foreground_disabled_material_light + #FF039BE5 + #FF01579B + #FF40C4FF + #FF00B0FF + @color/material_deep_teal_200 + @color/material_deep_teal_500 + #ff37474f + #ff263238 + #ff21272b + #ff80cbc4 + #ff009688 + #ff000000 + #ff757575 + #ff212121 + #ffefefef + #ffffffff + #de000000 + #4Dffffff + #39000000 + #4dffffff + #1f000000 + #b3ffffff + #8a000000 + #36ffffff + #24000000 + #ff616161 + #ffbdbdbd + #ffbdbdbd + #fff1f1f1 + #335b5b5b + 16dp + 56dp + 4dp + 16dp + 0dp + 10dp + 6dp + 40dp + 48dp + 180dp + 5dp + -3dp + 48dp + 48dp + 36dp + 48dp + @dimen/abc_control_inset_material + 6dp + 8dp + @dimen/abc_control_padding_material + 320dp + 2dp + 4dp + 4dp + 8dp + 65% + 95% + 24dp + 18dp + 0.30 + 0.26 + 32dip + 8dip + 8dip + 7dp + 4dp + 10dp + 16dp + @dimen/abc_action_bar_content_inset_material + 296dp + 320dip + 160dip + 3dp + 14sp + 14sp + 14sp + 12sp + 34sp + 45sp + 56sp + 112sp + 24sp + 22sp + 18sp + 16sp + 14sp + 16sp + 16dp + 20sp + 20dp + 80% + 100% + 320dp + 320dp + 0.30 + 0.26 + 64dp + 64dp + 12dp + 26sp + 20sp + 17sp + 14sp + 33sp + #3333B5E5 + + + + + + + + + + 220 + 150 + 2 + 127 + 999 + + %1$s result for \"%2$s\" + + %1$s results for \"%2$s\" + + Navigate home + %1$s, %2$s + %1$s, %2$s, %3$s + Navigate up + More options + Done + See all + Choose an app + Search… + Clear query + Search query + Search + Submit query + Voice search + Share with + Share with %s + Collapse + Confirm to delete folder and its notes? + Confirm to delete this note? + Confirm to delete the selected %d notes? + Delete selected notes + Notes + Notes 2x2 + Notes 4x4 + Delete + Call notes + cancel + set + Delete reminder successfully + Dummy Button + 寒假快乐! + Sorry, can not set clock on empty note + Sorry, can not send and empty note to home + The note is not exist + Export failed, please check SD card + SD card busy, not available now + Sync is canceled + Sync failed, internal error occurs + Sync failed, please check network and account settings + Export fail + notes_%s.txt + /MIUI/notes/ + The folder %1$s exist, please rename + yyyyMMdd + MMMd kk:mm + Export text file (%1$s) to SD (%2$s) directory + (%d) + Have moved selected %1$d notes to %2$s folder + Input name + Note added to home + Remind me + New Folder + Delete + Deselect all + Export text + Change folder name + Delete folder + View folder + Large + Medium + Font size + Small + Super + Enter check list + Move to folder + Parent folder + Leave check list + Delete reminder + Search + Select all + Nothing selected, the operation is invalid + %d selected + Send to home + Settings + Share + Sync + Cancel syncing + Select folder + Expired + Send email + Open map + Call + Browse web + Take a look + Got it + Add note + ... + Sync notes with google task + Sync account + Add account + New note background color random + Cancel syncing + Sync immediately + Current account %1$s + All sync related information will be deleted, which may result in duplicated items sometime + Please select a google account. Local notes will be synced with google task. + Sync notes + Last sync time %1$s + yyyy-MM-dd hh:mm:ss + Cancel + Change sync account + Remove sync account + Settings + Cannot change the account because sync is in progress + %1$s has been set as the sync account + Notes + Search notes + Searching Notes + Text in your notes + Set reminder + 999+ + Export successful + Sync is successful with account %1$s + Getting remote note list... + Logging into %1$s... + Synchronize local notes with Google Task... + Sync is canceled + Sync is failed + Sync is successful + Syncing notes... + FullscreenActivity + SplashActivity + No associated note found, click to create associated note. + Privacy mode,can not see note content + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml new file mode 100644 index 00000000..724f96fd --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/merger.xml @@ -0,0 +1,1410 @@ + +truefalsetruetruefalsetruefalse@android:color/black#7fa87f@android:color/black@android:color/black@color/material_deep_teal_200@color/material_deep_teal_500#ff424242#ffeeeeee#ff303030#ffeeeeee#80ffffff#80000000@color/bright_foreground_material_light@color/bright_foreground_material_dark@android:color/white@android:color/black#ff5a595b#ffd6d7d7#80bebebe#80323232#ffbebebe#ff323232#6680cbc4#66009688@color/bright_foreground_disabled_material_dark@color/bright_foreground_disabled_material_light@color/material_deep_teal_200@color/material_deep_teal_500#ff37474f#ff263238#ff21272b#ff80cbc4#ff009688#ff000000#ff757575#ff212121#ffefefef#ffffffff#de000000#4Dffffff#39000000#4dffffff#1f000000#b3ffffff#8a000000#36ffffff#24000000#ff616161#ffbdbdbd#ffbdbdbd#fff1f1f116dp56dp4dp16dp0dp10dp6dp40dp48dp180dp5dp-3dp48dp48dp36dp48dp@dimen/abc_control_inset_material6dp8dp@dimen/abc_control_padding_material320dp2dp4dp4dp8dp65%95%24dp18dp0.300.2632dip8dip8dip7dp4dp10dp16dp@dimen/abc_action_bar_content_inset_material296dp320dip160dip3dp14sp14sp14sp12sp34sp45sp56sp112sp24sp22sp18sp16sp14sp16sp16dp20sp20dp80%100%320dp320dp0.300.2664dp64dp12dp#3333B5E52201502127999Navigate home%1$s, %2$s%1$s, %2$s, %3$sNavigate upMore optionsDoneSee allChoose an appSearch…Clear querySearch querySearchSubmit queryVoice searchShare withShare with %sCollapse999+"मुखपृष्ठ पर नेविगेट करें""ऊपर नेविगेट करें""अधिक विकल्प""पूर्ण""सभी देखें""कोई एप्‍लिकेशन चुनें""क्‍वेरी साफ़ करें""खोज क्वेरी""खोजें""क्वेरी सबमिट करें""ध्वनि खोज""इसके द्वारा साझा करें""%s के साथ साझा करें""Idi na početnu""Idi gore""Dodatne opcije""Gotovo""Prikaži sve""Odabir aplikacije""Izbriši upit""Upit za pretraživanje""Pretraživanje""Pošalji upit""Glasovno pretraživanje""Dijeljenje sa""Dijeljenje sa: %s""Ugrás a főoldalra""Felfelé mozgatás""További lehetőségek""Kész""Összes megtekintése""Válasszon ki egy alkalmazást""Lekérdezés törlése""Keresési lekérdezés""Keresés""Lekérdezés küldése""Hangalapú keresés""Megosztás a következővel:""Megosztás a következővel: %s""Ուղղվել տուն""Ուղղվել վերև""Այլ ընտրանքներ""Կատարված է""Տեսնել բոլորը""Ընտրել ծրագիր""Մաքրել հարցումը""Որոնման հարցում""Որոնել""Ուղարկել հարցումը""Ձայնային որոնում""Տարածել""Տարածել ըստ %s""Navigasi ke beranda""Navigasi naik""Opsi lain""Selesai""Lihat semua""Pilih aplikasi""Hapus kueri""Kueri penelusuran""Telusuri""Kirim kueri""Penelusuran suara""Bagikan dengan""Bagikan dengan %s""Fara heim""Fara upp""Fleiri valkostir""Lokið""Sjá allt""Veldu forrit""Hreinsa fyrirspurn""Leitarfyrirspurn""Leita""Senda fyrirspurn""Raddleit""Deila með""Deila með %s""Vai alla home page""Vai in alto""Altre opzioni""Fine""Visualizza tutte""Scegli un\'applicazione""Cancella query""Query di ricerca""Cerca""Invia query""Ricerca vocale""Condividi con""Condividi con %s""נווט לדף הבית""נווט למעלה""עוד אפשרויות""בוצע""ראה הכול""בחר אפליקציה""מחק שאילתה""שאילתת חיפוש""חפש""שלח שאילתה""חיפוש קולי""שתף עם""‏שתף עם %s""ホームへ移動""上へ移動""その他のオプション""完了""すべて表示""アプリの選択""検索キーワードを削除""検索キーワード""検索""検索キーワードを送信""音声検索""共有""%sと共有""მთავარზე ნავიგაცია""ზემოთ ნავიგაცია""მეტი ვარიანტები""დასრულდა""ყველას ნახვა""აპის არჩევა""მოთხოვნის გასუფთავება""ძიების მოთხოვნა""ძიება""მოთხოვნის გადაგზავნა""ხმოვანი ძიება""გაზიარება:""%s-თან გაზიარება""Негізгі бетте қозғалу""Жоғары қозғалу""Басқа опциялар""Орындалды""Барлығын көру""Қолданбаны таңдау""Сұрақты жою""Сұрақты іздеу""Іздеу""Сұрақты жіберу""Дауыс арқылы іздеу""Бөлісу""%s бөлісу""រកមើល​ទៅ​ដើម""រកមើល​ឡើងលើ""ជម្រើស​ច្រើន​ទៀត""រួចរាល់""មើល​ទាំងអស់""ជ្រើស​កម្មវិធី​​""សម្អាត​សំណួរ""ស្វែងរក​សំណួរ""ស្វែងរក""ដាក់​​​ស្នើ​សំណួរ""ការស្វែងរក​សំឡេង""ចែករំលែក​ជាមួយ""ចែករំលែក​ជាមួយ %s""ಮುಖಪುಟವನ್ನು ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""ಮೇಲಕ್ಕೆ ನ್ಯಾವಿಗೇಟ್ ಮಾಡಿ""ಇನ್ನಷ್ಟು ಆಯ್ಕೆಗಳು""ಮುಗಿದಿದೆ""ಎಲ್ಲವನ್ನೂ ನೋಡಿ""ಒಂದು ಅಪ್ಲಿಕೇಶನ್ ಆಯ್ಕೆಮಾಡಿ""ಪ್ರಶ್ನೆಯನ್ನು ತೆರವುಗೊಳಿಸು""ಪ್ರಶ್ನೆಯನ್ನು ಹುಡುಕಿ""ಹುಡುಕು""ಪ್ರಶ್ನೆಯನ್ನು ಸಲ್ಲಿಸು""ಧ್ವನಿ ಹುಡುಕಾಟ""ಇವರೊಂದಿಗೆ ಹಂಚಿಕೊಳ್ಳಿ""%s ಜೊತೆಗೆ ಹಂಚಿಕೊಳ್ಳಿ""홈 탐색""위로 탐색""옵션 더보기""완료""전체 보기""앱 선택""검색어 삭제""검색어""검색""검색어 보내기""음성 검색""공유 대상""%s와(과) 공유""Үйгө багыттоо""Жогору""Көбүрөөк мүмкүнчүлүктөр""Даяр""Бардыгын көрүү""Колдонмо тандоо""Талаптарды тазалоо""Издөө талаптары""Издөө""Талап жөнөтүү""Үн аркылуу издөө""Бөлүшүү""%s аркылуу бөлүшүү"truetrue48dp0dp32dp12dp14dptruetrue440dp192dip60%90%60%90%40px"Điều hướng về trang chủ""Điều hướng lên trên""Thêm tùy chọn""Xong""Xem tất cả""Chọn một ứng dụng""Xóa truy vấn""Tìm kiếm truy vấn""Tìm kiếm""Gửi truy vấn""Tìm kiếm bằng giọng nói""Chia sẻ với""Chia sẻ với %s"3truetrue4192dip5falsefalse192dip60%90%50%70%5256dip"转到主屏幕""转到上一层级""更多选项""完成""查看全部""选择应用""清除查询""搜索查询""搜索""提交查询""语音搜索""分享方式""通过%s分享""瀏覽主頁""向上瀏覽""更多選項""完成""顯示全部""選擇應用程式""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""分享對象""與「%s」分享""瀏覽首頁""向上瀏覽""更多選項""完成""查看全部""選擇應用程式""清除查詢""搜尋查詢""搜尋""提交查詢""語音搜尋""選擇分享對象""與「%s」分享""Zulazulela ekhaya""Zulazulela phezulu""Izinketho eziningi""Kwenziwe""Buka konke""Khetha uhlelo lokusebenza""Sula inkinga""Umbuzo wosesho""Sesha""Hambisa umbuzo""Ukusesha ngezwi""Yabelana no-""Yabelana no-%s" + -%s + --%s + --%s + --%s + + Messaging + Email + + + + #335b5b5b#FF039BE5#FF01579B#FF40C4FF#FF00B0FF#6600000033sp26sp20sp17sp14spNotesNotes 2x2Notes 4x4No associated note found, click to create associated note.Privacy mode,can not see note content...Add noteDelete reminder successfullySet reminderExpiredyyyyMMddMMMd kk:mmGot itTake a lookCallSend emailBrowse webOpen map/MIUI/notes/notes_%s.txt(%d)New FolderExport textSyncCancel syncingSettingsSearchDeleteMove to folder%d selectedNothing selected, the operation is invalidSelect allDeselect allFont sizeSmallMediumLargeSuperEnter check listLeave check listView folderDelete folderChange folder nameThe folder %1$s exist, please renameShareSend to homeRemind meDelete reminderSelect folderParent folderNote added to homeConfirm to delete folder and its notes?Delete selected notesConfirm to delete the selected %d notes?Confirm to delete this note?Have moved selected %1$d notes to %2$s folderSD card busy, not available nowExport failed, please check SD cardThe note is not existSorry, can not set clock on empty noteSorry, can not send and empty note to homeExport successfulExport failExport text file (%1$s) to SD (%2$s) directorySyncing notes...Sync is successfulSync is failedSync is canceledSync is successful with account %1$sSync failed, please check network and account settingsSync failed, internal error occursSync is canceledLogging into %1$s...Getting remote note list...Synchronize local notes with Google Task...SettingsSync accountSync notes with google taskLast sync time %1$syyyy-MM-dd hh:mm:ssAdd accountChange sync accountRemove sync accountCancelSync immediatelyCancel syncingCurrent account %1$sAll sync related information will be deleted, which may result in duplicated items sometimeSync notesPlease select a google account. Local notes will be synced with google task.Cannot change the account because sync is in progress%1$s has been set as the sync accountNew note background color randomDeleteCall notesInput nameSearching NotesSearch notesText in your notesNotessetcancel + %1$s result for \"%2$s\" + + %1$s results for \"%2$s\" + FullscreenActivitySplashActivityDummy Button寒假快乐! + 短信 + 邮件 + 便签便签2x2便签4x4没有关联内容,点击新建便签。访客模式下,便签内容不可见...新建便签成功删除提醒创建提醒已过期yyyyMMddMM月dd日 kk:mm知道了查看呼叫电话发送邮件浏览网页打开地图新建文件夹导出文本同步取消同步设置搜索删除移动到文件夹选中了 %d 项没有选中项,操作无效全选取消全选文字大小正常超大进入清单模式退出清单模式查看文件夹刪除文件夹修改文件夹名称文件夹 %1$s 已存在,请重新命名分享发送到桌面提醒我删除提醒选择文件夹上一级文件夹已添加到桌面删除确认要删除所选的 %d 条便签吗?确认要删除该条便签吗?确认删除文件夹及所包含的便签吗?已将所选 %1$d 条便签移到 %2$s 文件夹SD卡被占用,不能操作导出文本时发生错误,请检查SD卡要查看的便签不存在不能为空便签设置闹钟提醒不能将空便签发送到桌面导出成功导出失败已将文本文件(%1$s)输出至SD卡(%2$s)目录同步便签...同步成功同步失败同步已取消与%1$s同步成功同步失败,请检查网络和帐号设置同步失败,发生内部错误同步已取消登录%1$s...正在获取服务器便签列表...正在同步本地便签...设置同步账号与google task同步便签记录上次同步于 %1$s添加账号更换账号删除账号取消立即同步取消同步当前帐号 %1$s如更换同步帐号,过去的帐号同步信息将被清空,再次切换的同时可能会造成数据重复同步便签请选择google帐号,便签将与该帐号的google task内容同步。正在同步中,不能修改同步帐号同步帐号已设置为%1$s新建便签背景颜色随机删除通话便签请输入名称正在搜索便签搜索便签便签中的文字便签设置取消 + %1$s 条符合“%2$s”的搜索结果 + + 短信 + 郵件 + 便簽便簽2x2便簽4x4沒有關聯內容,點擊新建便簽。訪客模式下,便籤內容不可見...新建便簽成功刪除提醒創建提醒已過期yyyyMMddMM月dd日 kk:mm知道了查看呼叫電話發送郵件浏覽網頁打開地圖已將所選 %1$d 便籤移到 %2$s 文件夾新建文件夾導出文本同步取消同步設置搜尋刪除移動到文件夾選中了 %d 項沒有選中項,操作無效全選取消全選文字大小正常超大進入清單模式退出清單模式查看文件夾刪除文件夾修改文件夾名稱文件夾 %1$s 已存在,請重新命名分享發送到桌面提醒我刪除提醒選擇文件夾上一級文件夾已添加到桌面刪除确认要刪除所選的 %d 條便籤嗎?确认要删除該條便籤嗎?確認刪除檔夾及所包含的便簽嗎?SD卡被佔用,不能操作導出TXT時發生錯誤,請檢查SD卡要查看的便籤不存在不能爲空便籤設置鬧鐘提醒不能將空便籤發送到桌面導出成功導出失敗已將文本文件(%1$s)導出至SD(%2$s)目錄同步便簽...同步成功同步失敗同步已取消與%1$s同步成功同步失敗,請檢查網絡和帳號設置同步失敗,發生內部錯誤同步已取消登陸%1$s...正在獲取服務器便籤列表...正在同步本地便籤...設置同步賬號与google task同步便簽記錄上次同步于 %1$s添加賬號更換賬號刪除賬號取消立即同步取消同步當前帳號 %1$s如更換同步帳號,過去的帳號同步信息將被清空,再次切換的同時可能會造成數據重復同步便簽請選擇google帳號,便簽將與該帳號的google task內容同步。正在同步中,不能修改同步帳號同步帳號已設置為%1$s新建便籤背景顏色隨機刪除通話便籤請輸入名稱正在搜索便籤搜索便籤便籤中的文字便籤設置取消 + %1$s 條符合”%2$s“的搜尋結果 + + + + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/account_dialog_title.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/account_dialog_title.xml new file mode 100644 index 00000000..77171121 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/account_dialog_title.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/activity_splash.xml b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/activity_splash.xml new file mode 100644 index 00000000..19e9d979 --- /dev/null +++ b/src/app/build/intermediates/incremental/debug/mergeDebugResources/stripped.dir/layout/activity_splash.xml @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + +